:root {
            --primary-color: #FF4D00;
            --secondary-color: #00A8FF;
            --dark-bg: #0F1419;
            --medium-bg: #1A2029;
            --light-bg: #2D3748;
            --text-primary: #F7FAFC;
            --text-secondary: #CBD5E0;
            --accent-yellow: #FFD166;
            --border-radius: 8px;
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-primary);
            background-color: var(--dark-bg);
            overflow-x: hidden;
        }
        a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-color);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(15, 20, 25, 0.95);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--primary-color);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a {
            background: none;
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 16px;
            border-radius: var(--border-radius);
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 50%;
            background-color: var(--primary-color);
            transition: var(--transition);
        }
        .desktop-nav a:hover::after {
            width: 100%;
            left: 0;
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--medium-bg);
            padding: 20px;
            border-top: 2px solid var(--light-bg);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 15px;
            border-bottom: 1px solid var(--light-bg);
            font-weight: 600;
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: var(--medium-bg);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        .search-section {
            background: linear-gradient(135deg, var(--medium-bg) 0%, var(--dark-bg) 100%);
            padding: 40px 20px;
            text-align: center;
        }
        .search-container {
            max-width: 600px;
            margin: 0 auto;
        }
        .search-box {
            display: flex;
            background: var(--light-bg);
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid transparent;
            transition: var(--transition);
        }
        .search-box:focus-within {
            border-color: var(--primary-color);
            box-shadow: 0 0 15px rgba(255, 77, 0, 0.3);
        }
        .search-box input {
            flex: 1;
            padding: 18px 25px;
            background: transparent;
            border: none;
            color: var(--text-primary);
            font-size: 1.1rem;
        }
        .search-box input:focus {
            outline: none;
        }
        .search-box button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #FF6A2A;
        }
        main {
            padding: 40px 0;
        }
        article {
            background-color: var(--medium-bg);
            border-radius: var(--border-radius);
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        h1, h2, h3 {
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 3.2rem;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 2rem;
            text-align: center;
        }
        h2 {
            font-size: 2.4rem;
            color: var(--accent-yellow);
            border-left: 5px solid var(--primary-color);
            padding-left: 15px;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-top: 2.5rem;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.1rem;
            color: var(--text-secondary);
        }
        .highlight {
            background: rgba(255, 77, 0, 0.1);
            border-left: 4px solid var(--primary-color);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .highlight p {
            color: var(--text-primary);
            font-size: 1.2rem;
            margin-bottom: 0;
        }
        .game-image {
            margin: 40px auto;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            max-width: 900px;
            border: 3px solid var(--light-bg);
        }
        .game-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .game-image:hover img {
            transform: scale(1.03);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: var(--text-secondary);
            padding: 10px;
            background-color: rgba(0, 0, 0, 0.5);
        }
        .interactive-section {
            background: var(--light-bg);
            border-radius: var(--border-radius);
            padding: 30px;
            margin: 40px 0;
        }
        .rating-section, .comment-section {
            margin-bottom: 40px;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin: 20px 0;
        }
        .star {
            font-size: 2.5rem;
            color: #4A5568;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--accent-yellow);
        }
        form {
            display: grid;
            gap: 20px;
            margin-top: 20px;
        }
        input, textarea, select {
            padding: 15px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 2px solid #4A5568;
            border-radius: var(--border-radius);
            color: var(--text-primary);
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 10px rgba(255, 77, 0, 0.2);
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        button[type="submit"] {
            background: linear-gradient(90deg, var(--primary-color), #FF6A2A);
            color: white;
            border: none;
            padding: 18px;
            border-radius: var(--border-radius);
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
        }
        button[type="submit"]:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 77, 0, 0.3);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            padding: 40px 20px;
            background-color: var(--medium-bg);
        }
        .web-link {
            background-color: var(--light-bg);
            padding: 20px;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255, 77, 0, 0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: var(--text-primary);
            font-weight: 600;
            display: block;
        }
        footer {
            background-color: #0A0E13;
            padding: 40px 20px;
            text-align: center;
        }
        .copyright {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--light-bg);
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            h2 {
                font-size: 2.2rem;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            article {
                padding: 30px 20px;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .search-box button {
                padding: 0 20px;
            }
            .footer-links {
                grid-template-columns: 1fr;
            }
            .header-container {
                padding: 15px;
            }
        }
        @media (max-width: 480px) {
            html {
                font-size: 14px;
            }
            h1 {
                font-size: 2rem;
            }
            .search-box {
                flex-direction: column;
                border-radius: var(--border-radius);
            }
            .search-box input, .search-box button {
                width: 100%;
                border-radius: 0;
            }
            .search-box button {
                padding: 15px;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .strong {
            color: var(--primary-color);
            font-weight: 800;
        }
        .term {
            background-color: rgba(0, 168, 255, 0.1);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
