:root {
            --primary-dark: #0a0e17;
            --primary-blue: #1a3a5f;
            --accent-gold: #d4af37;
            --accent-red: #c41e3a;
            --text-light: #f0f8ff;
            --text-gray: #b0b8c5;
            --bg-section: #111827;
            --border-color: #2d3748;
            --card-bg: #1e293b;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-light);
            background-color: var(--primary-dark);
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #ffd700;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to bottom, rgba(10, 14, 23, 0.95), rgba(10, 14, 23, 0.8));
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--accent-red);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-family: 'Cinzel', serif;
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(to right, #d4af37, #ffd700);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .logo span {
            color: var(--accent-red);
        }
        .search-form {
            display: flex;
            width: 300px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid var(--border-color);
            border-radius: 4px 0 0 4px;
            background: var(--card-bg);
            color: var(--text-light);
        }
        .search-form button {
            background: var(--accent-red);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #e63c3c;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
        }
        nav {
            background-color: var(--primary-blue);
            padding: 0;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .main-nav {
            display: flex;
            list-style: none;
        }
        .main-nav li {
            position: relative;
        }
        .main-nav a {
            display: block;
            padding: 15px 20px;
            color: var(--text-light);
            font-weight: 500;
            transition: all 0.3s;
        }
        .main-nav a:hover {
            background-color: rgba(255,255,255,0.1);
            color: var(--accent-gold);
        }
        .breadcrumb {
            padding: 10px 0;
            font-size: 0.9rem;
            color: var(--text-gray);
            background-color: rgba(26, 58, 95, 0.3);
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .hero {
            background: linear-gradient(rgba(10,14,23,0.8), rgba(10,14,23,0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            text-align: center;
            border-bottom: 3px solid var(--accent-red);
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--text-light);
            text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: var(--text-gray);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        article {
            background-color: var(--card-bg);
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .article-header {
            border-bottom: 2px solid var(--accent-red);
            padding-bottom: 20px;
            margin-bottom: 30px;
        }
        .article-header h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: var(--accent-gold);
        }
        .meta-info {
            display: flex;
            gap: 20px;
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .meta-info span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        section {
            margin-bottom: 40px;
        }
        h2 {
            font-size: 1.8rem;
            color: var(--accent-gold);
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        h3 {
            font-size: 1.4rem;
            color: var(--text-light);
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 20px;
            color: var(--text-gray);
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.1);
            border-left: 4px solid var(--accent-gold);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 4px 4px 0;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            background-color: rgba(30, 41, 59, 0.7);
        }
        .stats-table th, .stats-table td {
            border: 1px solid var(--border-color);
            padding: 12px 15px;
            text-align: left;
        }
        .stats-table th {
            background-color: var(--primary-blue);
            color: var(--accent-gold);
            font-weight: 600;
        }
        .stats-table tr:nth-child(even) {
            background-color: rgba(45, 55, 72, 0.3);
        }
        .stats-table tr:hover {
            background-color: rgba(212, 175, 55, 0.1);
        }
        .gear-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 8px;
            border: 2px solid var(--accent-gold);
            margin: 25px auto;
            display: block;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .image-caption {
            text-align: center;
            color: var(--text-gray);
            font-style: italic;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .rating-section {
            background-color: rgba(30, 41, 59, 0.7);
            padding: 25px;
            border-radius: 8px;
            margin: 40px 0;
            border: 1px solid var(--border-color);
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 15px 0;
        }
        .star {
            color: var(--text-gray);
            font-size: 1.8rem;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover, .star.active {
            color: var(--accent-gold);
        }
        .user-interaction {
            background-color: var(--card-bg);
            padding: 30px;
            border-radius: 8px;
            margin-top: 40px;
        }
        .comment-form, .score-form {
            margin-bottom: 30px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--text-light);
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            background-color: rgba(45, 55, 72, 0.5);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            color: var(--text-light);
            transition: border 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: var(--accent-gold);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--accent-red), #e63c3c);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(198, 30, 58, 0.4);
        }
        aside {
            background-color: var(--card-bg);
            border-radius: 8px;
            padding: 25px;
            height: fit-content;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .sidebar-section {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
        }
        .sidebar-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }
        .sidebar-section h3 {
            font-size: 1.3rem;
            color: var(--accent-gold);
            margin-bottom: 15px;
        }
        .sidebar-list {
            list-style: none;
        }
        .sidebar-list li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }
        .sidebar-list li:before {
            content: "▶";
            position: absolute;
            left: 0;
            color: var(--accent-red);
            font-size: 0.8rem;
        }
        .champion-card {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background-color: rgba(45, 55, 72, 0.5);
            border-radius: 6px;
            margin-bottom: 15px;
            transition: transform 0.3s;
        }
        .champion-card:hover {
            transform: translateX(5px);
            background-color: rgba(212, 175, 55, 0.1);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
            padding: 40px 0;
            background-color: var(--bg-section);
        }
        .web-link {
            background-color: var(--card-bg);
            padding: 15px;
            border-radius: 6px;
            text-align: center;
            transition: all 0.3s;
        }
        .web-link:hover {
            background-color: rgba(212, 175, 55, 0.1);
            transform: translateY(-5px);
        }
        footer {
            background-color: var(--primary-blue);
            padding: 40px 0 20px;
            border-top: 3px solid var(--accent-red);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-column h3 {
            color: var(--accent-gold);
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--primary-blue);
                flex-direction: column;
                padding: 20px;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s;
                z-index: 999;
            }
            .main-nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            .search-form {
                width: 200px;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            .article-header h2 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
            .search-form {
                display: none;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease-out;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .keyword {
            background-color: rgba(212, 175, 55, 0.2);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
            color: var(--accent-gold);
        }
        .tip {
            background-color: rgba(26, 58, 95, 0.3);
            border-left: 4px solid var(--primary-blue);
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 4px 4px 0;
        }
