:root {
            --primary: #0d47a1;
            --secondary: #b71c1c;
            --accent: #ff9800;
            --dark: #121212;
            --light: #f5f5f5;
            --gray: #424242;
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        * {
            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.7;
            color: #333;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);
            color: var(--light);
            overflow-x: hidden;
        }
        .header {
            background: rgba(13, 13, 13, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--accent);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 2rem;
        }
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--light);
            text-decoration: none;
            letter-spacing: 1px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            transition: var(--transition);
        }
        .logo:hover {
            transform: scale(1.05);
            text-shadow: 0 0 15px rgba(255, 152, 0, 0.3);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-link {
            color: #ccc;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
            position: relative;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--accent);
            background: rgba(255, 152, 0, 0.1);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
        }
        .nav-link:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            width: 100%;
            flex-direction: column;
            background: rgba(30, 30, 40, 0.98);
            border-radius: 8px;
            padding: 1rem;
            margin-top: 1rem;
            animation: slideDown 0.4s ease;
        }
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .breadcrumb {
            max-width: 1400px;
            margin: 1rem auto 2rem;
            padding: 0 2rem;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: var(--accent);
            text-decoration: none;
        }
        .search-container {
            max-width: 800px;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-input {
            flex: 1;
            padding: 1.2rem 2rem;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            color: var(--light);
            font-size: 1.1rem;
            outline: none;
        }
        .search-input::placeholder {
            color: #aaa;
        }
        .search-btn {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 0 2.5rem;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: linear-gradient(90deg, var(--secondary), var(--primary));
            letter-spacing: 1px;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        .main-content {
            background: rgba(25, 25, 35, 0.8);
            border-radius: 12px;
            padding: 3rem;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .sidebar {
            background: rgba(25, 25, 35, 0.8);
            border-radius: 12px;
            padding: 2rem;
            height: fit-content;
            position: sticky;
            top: 120px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.95rem;
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(90deg, #fff, var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        h2 {
            font-size: 2.2rem;
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary);
            color: #fff;
        }
        h3 {
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
            color: #eee;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.1rem;
            color: #ccc;
        }
        .highlight {
            background: rgba(255, 152, 0, 0.1);
            border-left: 4px solid var(--accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight p {
            margin-bottom: 0;
            color: #fff;
        }
        .game-timeline {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            margin: 3rem 0;
        }
        .timeline-item {
            background: rgba(40, 40, 50, 0.6);
            border-radius: 12px;
            padding: 2.5rem;
            border-left: 6px solid var(--primary);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .timeline-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            border-left-color: var(--accent);
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), transparent);
        }
        .release-date {
            display: inline-block;
            background: var(--secondary);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        .game-image {
            width: 100%;
            border-radius: 8px;
            margin: 1.5rem 0;
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }
        .game-image:hover {
            transform: scale(1.02);
            border-color: var(--accent);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            transition: var(--transition);
        }
        .stat-card:hover {
            background: rgba(255, 152, 0, 0.1);
            transform: translateY(-3px);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }
        .stat-label {
            font-size: 1rem;
            color: #aaa;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .interactive-section {
            background: linear-gradient(135deg, rgba(13, 71, 161, 0.1), rgba(183, 28, 28, 0.1));
            border-radius: 12px;
            padding: 2.5rem;
            margin: 3rem 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            font-size: 1.1rem;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            letter-spacing: 1px;
        }
        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        .btn-secondary:hover {
            background: rgba(255, 152, 0, 0.2);
        }
        .user-interaction {
            margin: 4rem 0;
            padding-top: 3rem;
            border-top: 2px solid rgba(255, 255, 255, 0.1);
        }
        .rating-form, .comment-form {
            background: rgba(30, 30, 40, 0.8);
            padding: 2.5rem;
            border-radius: 12px;
            margin-bottom: 2rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0 2rem;
        }
        .star {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover, .star.active {
            color: #ffc107;
            transform: scale(1.2);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            color: #eee;
            font-weight: 600;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            color: white;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.12);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .footer-links {
            max-width: 1400px;
            margin: 4rem auto 2rem;
            padding: 0 2rem;
        }
        .web-link {
            display: inline-block;
            background: rgba(255, 255, 255, 0.05);
            margin: 0.5rem;
            padding: 1rem 1.5rem;
            border-radius: 6px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255, 152, 0, 0.2);
            transform: translateX(5px);
        }
        .web-link a {
            color: #ddd;
            text-decoration: none;
            font-weight: 500;
        }
        .web-link a:hover {
            color: var(--accent);
        }
        .footer {
            background: rgba(10, 10, 15, 0.95);
            padding: 3rem 2rem;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 4rem;
        }
        .copyright {
            color: #888;
            font-size: 0.9rem;
            margin-top: 2rem;
        }
        @media (max-width: 1100px) {
            .container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .sidebar {
                position: static;
                order: -1;
            }
            h1 {
                font-size: 2.8rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 2rem;
            }
            .mobile-nav.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .main-content {
                padding: 2rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: 12px;
            }
            .search-input, .search-btn {
                width: 100%;
                border-radius: 0;
                padding: 1.5rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .header, .container, .breadcrumb, .footer-links {
                padding: 1rem;
            }
            .main-content {
                padding: 1.5rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            .timeline-item {
                padding: 1.5rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(255, 152, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 152, 0, 0); }
        }
        .text-center { text-align: center; }
        .text-accent { color: var(--accent); }
        .text-primary { color: var(--primary); }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-3 { margin-top: 3rem; }
        .flex { display: flex; }
        .flex-wrap { flex-wrap: wrap; }
        .justify-between { justify-content: space-between; }
        .items-center { align-items: center; }
