:root {
            --primary-dark: #0a0a16;
            --primary-blue: #0066ff;
            --neon-cyan: #00f3ff;
            --neon-purple: #b967ff;
            --text-primary: #e0e0ff;
            --text-secondary: #a0a0c0;
            --card-bg: rgba(20, 25, 60, 0.7);
            --border-glow: rgba(0, 102, 255, 0.4);
            --transition-speed: 0.3s;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-primary);
            line-height: 1.7;
            background-image:
                radial-gradient(circle at 15% 50%, rgba(0, 102, 255, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 85% 30%, rgba(185, 103, 255, 0.05) 0%, transparent 20%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--neon-cyan);
            text-decoration: none;
            transition: color var(--transition-speed);
        }
        a:hover {
            color: var(--neon-purple);
            text-shadow: 0 0 8px currentColor;
        }
        .site-header {
            background-color: rgba(10, 10, 22, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-glow);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 2rem;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: -1px;
            background: linear-gradient(90deg, var(--neon-cyan), var(--primary-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            font-family: 'Arial Black', sans-serif;
        }
        .logo a:hover {
            text-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--neon-cyan);
            transition: width var(--transition-speed);
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-primary);
            cursor: pointer;
        }
        .breadcrumb {
            max-width: 1400px;
            margin: 1rem auto 0;
            padding: 0 2rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--neon-cyan);
        }
        .main-content {
            flex: 1;
            max-width: 1400px;
            width: 100%;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--border-glow);
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, #fff, var(--neon-cyan));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            color: var(--text-secondary);
            font-size: 0.95rem;
            flex-wrap: wrap;
        }
        .last-updated {
            color: var(--neon-purple);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        .article-body {
            font-size: 1.1rem;
        }
        .article-body h2 {
            font-size: 2.2rem;
            margin: 2.5rem 0 1.2rem;
            color: var(--neon-cyan);
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(0, 243, 255, 0.3);
        }
        .article-body h3 {
            font-size: 1.7rem;
            margin: 2rem 0 1rem;
            color: var(--neon-purple);
        }
        .article-body h4 {
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
            color: var(--primary-blue);
        }
        .article-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .intro-highlight {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--neon-cyan);
            border-left: 4px solid var(--primary-blue);
            padding-left: 1.5rem;
            margin: 2.5rem 0;
        }
        .game-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 8px;
            border: 2px solid var(--border-glow);
            box-shadow: 0 0 25px rgba(0, 102, 255, 0.3);
            margin: 2rem 0;
            transition: transform var(--transition-speed), box-shadow var(--transition-speed);
        }
        .game-image:hover {
            transform: scale(1.01);
            box-shadow: 0 0 35px rgba(0, 102, 255, 0.5);
        }
        .feature-box {
            background: var(--card-bg);
            border: 1px solid var(--border-glow);
            border-radius: 10px;
            padding: 1.8rem;
            margin: 2rem 0;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .feature-box h3 {
            margin-top: 0;
        }
        .interactive-section {
            background: linear-gradient(145deg, rgba(20, 25, 60, 0.9), rgba(10, 15, 40, 0.9));
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid transparent;
            border-image: linear-gradient(45deg, var(--primary-blue), var(--neon-purple)) 1;
        }
        .interactive-section h2 {
            text-align: center;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 0.9rem;
            background: rgba(0, 0, 30, 0.6);
            border: 1px solid var(--border-glow);
            border-radius: 6px;
            color: var(--text-primary);
            font-size: 1rem;
            transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--neon-cyan);
            box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
        }
        .btn {
            display: inline-block;
            padding: 0.9rem 2rem;
            background: linear-gradient(90deg, var(--primary-blue), var(--neon-purple));
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all var(--transition-speed);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(185, 103, 255, 0.4);
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: gold;
            cursor: pointer;
        }
        .star:hover,
        .star.active {
            color: gold;
            text-shadow: 0 0 10px gold;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: var(--card-bg);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid var(--border-glow);
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            color: var(--neon-cyan);
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(0, 243, 255, 0.2);
        }
        .quick-links ul {
            list-style: none;
        }
        .quick-links li {
            margin-bottom: 0.8rem;
            padding-left: 1.2rem;
            position: relative;
        }
        .quick-links li::before {
            content: '➤';
            position: absolute;
            left: 0;
            color: var(--primary-blue);
        }
        .platform-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .platform-tag {
            background: rgba(0, 102, 255, 0.2);
            border: 1px solid var(--primary-blue);
            border-radius: 20px;
            padding: 0.5rem 1.2rem;
            font-size: 0.9rem;
            font-weight: 600;
        }
        .platform-tag:hover {
            background: rgba(0, 102, 255, 0.4);
        }
        .site-footer {
            background-color: rgba(5, 5, 15, 0.98);
            border-top: 1px solid var(--border-glow);
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }
        .friend-links-section {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
        }
        friend-link {
            display: inline-block;
            padding: 0.7rem 1.5rem;
            background: rgba(30, 35, 70, 0.5);
            border-radius: 6px;
            border: 1px solid rgba(0, 102, 255, 0.3);
            transition: all var(--transition-speed);
        }
        friend-link:hover {
            background: rgba(0, 102, 255, 0.2);
            border-color: var(--primary-blue);
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            color: var(--text-secondary);
            font-size: 0.9rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        @media (max-width: 1100px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .site-header {
                padding: 1rem;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(10, 10, 22, 0.98);
                padding: 1rem;
                border-top: 1px solid var(--border-glow);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .main-content {
                padding: 0 1rem;
            }
            h1 {
                font-size: 2.5rem;
            }
            .article-body h2 {
                font-size: 1.9rem;
            }
            .article-body h3 {
                font-size: 1.5rem;
            }
            .header-container, .breadcrumb {
                padding: 0 1rem;
            }
            .interactive-section {
                padding: 1.5rem;
            }
        }
