* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0c1a2d;
            --primary-gold: #d4af37;
            --secondary-blue: #1a365d;
            --accent-red: #c53030;
            --text-light: #f7fafc;
            --text-gray: #a0aec0;
            --card-bg: #1e293b;
            --transition: all 0.3s ease;
            --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-blue) 100%);
            padding: 1rem 0;
            border-bottom: 3px solid var(--primary-gold);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #d4af37, #ffd700);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .logo span {
            color: #c53030;
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background-color: rgba(212, 175, 55, 0.1);
            text-decoration: none;
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--primary-gold);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--secondary-blue);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(26, 54, 93, 0.5);
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin: 0 10px;
            color: var(--text-gray);
        }
        .search-section {
            background-color: var(--card-bg);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
            box-shadow: var(--shadow);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 1rem auto 0;
        }
        .search-input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid var(--primary-gold);
            border-radius: 5px 0 0 5px;
            background-color: rgba(255,255,255,0.1);
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-btn {
            background-color: var(--primary-gold);
            color: var(--primary-dark);
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 5px 5px 0;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #ffd700;
        }
        main {
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid var(--primary-gold);
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            line-height: 1.2;
            color: var(--primary-gold);
        }
        .article-meta {
            color: var(--text-gray);
            font-style: italic;
            margin-top: 1rem;
        }
        .content-section {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-section {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            font-size: 1.1rem;
        }
        .article-content h2 {
            color: var(--primary-gold);
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
            font-size: 2rem;
        }
        .article-content h3 {
            color: #63b3ed;
            margin: 2rem 0 1rem;
            font-size: 1.6rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-content emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .highlight-box {
            background-color: rgba(26, 54, 93, 0.5);
            border-left: 4px solid var(--accent-red);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .champion-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .champion-card {
            background-color: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        .champion-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 20px -5px rgba(0, 0, 0, 0.4);
        }
        .champion-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 3px solid var(--primary-gold);
        }
        .champion-info {
            padding: 1.2rem;
        }
        .champion-rarity {
            display: inline-block;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
        }
        .legendary {
            background: linear-gradient(135deg, #f6e05e, #d69e2e);
            color: #000;
        }
        .epic {
            background: linear-gradient(135deg, #9f7aea, #6b46c1);
            color: white;
        }
        .champion-name {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            color: var(--text-light);
        }
        .champion-role {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        .sidebar {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        }
        .tier-list {
            list-style: none;
        }
        .tier-list li {
            padding: 0.8rem;
            margin-bottom: 0.8rem;
            background-color: rgba(255,255,255,0.05);
            border-radius: 5px;
            border-left: 3px solid var(--primary-gold);
        }
        .user-interaction {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 2rem;
            margin: 3rem 0;
            box-shadow: var(--shadow);
        }
        .user-interaction h2 {
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .rating-section, .comment-section {
            margin-bottom: 2.5rem;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
        }
        .star-rating i {
            cursor: pointer;
            color: #4a5568;
            transition: var(--transition);
        }
        .star-rating i.active,
        .star-rating i:hover {
            color: #f6e05e;
        }
        .comment-form, .rating-form {
            max-width: 600px;
            margin: 0 auto;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border-radius: 5px;
            border: 1px solid #4a5568;
            background-color: rgba(255,255,255,0.1);
            color: var(--text-light);
            font-size: 1rem;
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--primary-gold);
            color: var(--primary-dark);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 5px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            display: block;
            margin: 0 auto;
        }
        .submit-btn:hover {
            background-color: #ffd700;
        }
        .long-tail-links {
            background-color: var(--secondary-blue);
            padding: 2rem;
            margin: 3rem 0;
            border-radius: 10px;
        }
        .long-tail-links h3 {
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background-color: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: 5px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(212, 175, 55, 0.1);
        }
        footer {
            background-color: #0a1128;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 3px solid var(--primary-gold);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--primary-gold);
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .champion-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .article-header h1 {
                font-size: 1.8rem;
            }
            .article-content h2 {
                font-size: 1.6rem;
            }
            .champion-grid {
                grid-template-columns: 1fr;
            }
        }
