        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-dark: #1a1a2e;
            --secondary-dark: #16213e;
            --accent-gold: #ffd700;
            --accent-red: #e94560;
            --accent-blue: #0f3460;
            --text-light: #f1f1f1;
            --text-gray: #b8b8b8;
            --border-color: #2d3748;
            --gradient-dark: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
            --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
            --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
            --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-light);
            background: var(--gradient-dark);
            min-height: 100vh;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1.5rem;
            color: var(--accent-gold);
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        h2 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            border-left: 5px solid var(--accent-red);
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: var(--text-light);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--text-gray);
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .header {
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--accent-red);
            box-shadow: var(--shadow-lg);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-decoration: none;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
        }
        .logo:hover {
            transform: scale(1.05);
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        }
        .logo i {
            color: var(--accent-red);
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--accent-gold);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
            transition: var(--transition);
        }
        .menu-toggle:hover {
            color: var(--accent-red);
        }
        .nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-link {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            transition: var(--transition);
            position: relative;
        }
        .nav-link:hover {
            color: var(--accent-gold);
            background: rgba(233, 69, 96, 0.1);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: var(--transition);
        }
        .nav-link:hover::after {
            width: 80%;
        }
        .breadcrumb {
            background: rgba(15, 52, 96, 0.3);
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb-list {
            display: flex;
            list-style: none;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .breadcrumb-item {
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        .breadcrumb-item a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb-item a:hover {
            text-decoration: underline;
        }
        .breadcrumb-item:not(:last-child)::after {
            content: '›';
            margin-left: 0.8rem;
            color: var(--accent-red);
        }
        .search-container {
            position: relative;
            margin-left: 1rem;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
        }
        .search-input {
            padding: 0.8rem 1.2rem;
            border: 2px solid var(--border-color);
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            font-size: 1rem;
            min-width: 250px;
            transition: var(--transition);
        }
        .search-input:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
        }
        .search-button {
            background: var(--gradient-gold);
            border: none;
            border-radius: 50%;
            width: 48px;
            height: 48px;
            color: var(--primary-dark);
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .search-button:hover {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
        }
        .main-content {
            padding: 3rem 0;
        }
        .article-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        .article-content {
            background: rgba(22, 33, 62, 0.7);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-color);
        }
        .hero {
            text-align: center;
            margin-bottom: 4rem;
            padding-bottom: 3rem;
            border-bottom: 2px solid var(--accent-red);
        }
        .hero-subtitle {
            font-size: 1.4rem;
            color: var(--text-gray);
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }
        .stat-item {
            text-align: center;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--accent-gold);
            display: block;
            line-height: 1;
        }
        .stat-label {
            font-size: 0.9rem;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .tier-section {
            background: rgba(15, 52, 96, 0.2);
            border-radius: 15px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }
        .tier-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
        }
        .tier-table th {
            background: var(--accent-blue);
            color: var(--accent-gold);
            padding: 1.2rem;
            text-align: left;
            font-size: 1.2rem;
            border-bottom: 3px solid var(--accent-red);
        }
        .tier-table td {
            padding: 1rem;
            border-bottom: 1px solid var(--border-color);
            vertical-align: middle;
        }
        .tier-table tr:hover {
            background: rgba(255, 215, 0, 0.05);
        }
        .tier-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .tier-sss { background: linear-gradient(135deg, #ff00ff 0%, #800080 100%); color: white; }
        .tier-ss { background: linear-gradient(135deg, #ff0000 0%, #990000 100%); color: white; }
        .tier-s { background: linear-gradient(135deg, #ff9900 0%, #cc6600 100%); color: white; }
        .tier-a { background: linear-gradient(135deg, #00ff00 0%, #009900 100%); color: white; }
        .tier-b { background: linear-gradient(135deg, #0066ff 0%, #003399 100%); color: white; }
        .champion-name {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .champion-icon {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            object-fit: cover;
            border: 2px solid var(--accent-gold);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: rgba(22, 33, 62, 0.7);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-md);
        }
        .widget-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--accent-gold);
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .widget-title i {
            color: var(--accent-red);
        }
        .rating-widget {
            text-align: center;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1.5rem 0;
        }
        .rating-star {
            font-size: 2rem;
            color: var(--border-color);
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-star:hover,
        .rating-star.active {
            color: var(--accent-gold);
            transform: scale(1.2);
        }
        .rating-form {
            margin-top: 1.5rem;
        }
        .rating-submit {
            background: var(--gradient-gold);
            color: var(--primary-dark);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
        }
        .rating-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        }
        .comments-section {
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 2px solid var(--accent-red);
        }
        .comment-form {
            background: rgba(15, 52, 96, 0.2);
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 3rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--accent-gold);
            font-weight: 600;
        }
        .form-input,
        .form-textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid var(--border-color);
            border-radius: 10px;
            color: var(--text-light);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            background: var(--gradient-gold);
            color: var(--primary-dark);
            border: none;
            padding: 1rem 3rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin: 0 auto;
        }
        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
        }
        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .comment-item {
            background: rgba(22, 33, 62, 0.5);
            padding: 1.5rem;
            border-radius: 15px;
            border-left: 4px solid var(--accent-gold);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .comment-author {
            font-weight: 700;
            color: var(--accent-gold);
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .comment-date {
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .comment-rating {
            color: var(--accent-gold);
            font-size: 0.9rem;
        }
        .featured-image {
            margin: 3rem 0;
            text-align: center;
        }
        .featured-image img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: var(--shadow-lg);
            border: 3px solid var(--accent-gold);
            transition: var(--transition);
        }
        .featured-image img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            margin-top: 1rem;
            color: var(--text-gray);
            font-style: italic;
            font-size: 0.95rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
            border-left: 5px solid var(--accent-red);
            padding: 2rem;
            border-radius: 0 15px 15px 0;
            margin: 2rem 0;
        }
        .tip-box {
            background: rgba(15, 52, 96, 0.3);
            border: 2px dashed var(--accent-gold);
            padding: 1.5rem;
            border-radius: 15px;
            margin: 2rem 0;
        }
        .tip-box i {
            color: var(--accent-gold);
            margin-right: 0.8rem;
            font-size: 1.2rem;
        }
        .key-points {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .key-point {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 10px;
            border-top: 4px solid var(--accent-gold);
            transition: var(--transition);
        }
        .key-point:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
        }
        .key-point i {
            color: var(--accent-gold);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 4rem 0;
            padding: 3rem 0;
            border-top: 2px solid var(--border-color);
            border-bottom: 2px solid var(--border-color);
        }
        .web-link {
            background: rgba(15, 52, 96, 0.2);
            padding: 1.5rem;
            border-radius: 10px;
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(15, 52, 96, 0.4);
            box-shadow: var(--shadow-md);
        }
        .web-link a {
            color: var(--accent-gold);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
            transition: var(--transition);
        }
        .web-link a:hover {
            color: var(--text-light);
            text-decoration: underline;
        }
        .footer {
            background: rgba(10, 15, 30, 0.95);
            padding: 4rem 0 2rem;
            margin-top: 4rem;
            border-top: 3px solid var(--accent-red);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-section h3 {
            color: var(--accent-gold);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 0.5rem;
        }
        .footer-links i {
            color: var(--accent-red);
            width: 20px;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .copyright a {
            color: var(--accent-gold);
            text-decoration: none;
        }
        .copyright a:hover {
            text-decoration: underline;
        }
        @media (max-width: 1024px) {
            .article-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .menu-toggle {
                display: block;
            }
            .nav {
                width: 100%;
                order: 3;
                margin-top: 1rem;
                display: none;
            }
            .nav.active {
                display: block;
                animation: slideDown 0.3s ease;
            }
            .nav-list {
                flex-direction: column;
                gap: 0.5rem;
            }
            .search-form {
                margin-top: 1rem;
                width: 100%;
            }
            .search-input {
                min-width: unset;
                flex: 1;
            }
            .hero-stats {
                gap: 1.5rem;
            }
            .article-content {
                padding: 2rem;
            }
            .tier-table {
                display: block;
                overflow-x: auto;
            }
            .key-points {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .comment-header {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        .fade-in {
            animation: fadeIn 0.8s ease;
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--primary-dark);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--accent-gold);
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent-red);
        }
