:root {
            --primary-color: #f97316; 
            --secondary-color: #1e40af; 
            --accent-color: #fbbf24; 
            --dark-bg: #0f172a; 
            --light-bg: #f8fafc; 
            --text-dark: #1e293b;
            --text-light: #cbd5e1;
            --success-color: #10b981; 
            --border-radius: 8px;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--light-bg);
            padding-top: 80px; 
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
        }
        a:hover {
            text-decoration: underline;
            color: var(--secondary-color);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--border-radius);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--dark-bg);
            color: white;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 20px;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--accent-color);
            text-decoration: none;
            letter-spacing: 1px;
        }
        .logo a:hover {
            color: white;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover {
            color: white;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger-menu span {
            height: 3px;
            width: 25px;
            background-color: white;
            border-radius: 2px;
        }
        .breadcrumb {
            background-color: #e2e8f0;
            padding: 0.75rem 20px;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            display: inline;
        }
        .breadcrumb li+li::before {
            content: ">";
            padding: 0 8px;
            color: #64748b;
        }
        .hero {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 4rem 0;
            text-align: center;
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--text-light);
        }
        .content-section {
            background: white;
            border-radius: var(--border-radius);
            padding: 2.5rem;
            margin-bottom: 3rem;
            box-shadow: var(--shadow);
        }
        .content-section h2 {
            color: var(--secondary-color);
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 3px solid var(--accent-color);
        }
        .content-section h3 {
            color: var(--primary-color);
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        .content-section h4 {
            color: var(--dark-bg);
            font-size: 1.3rem;
            margin: 1.5rem 0 0.75rem;
        }
        .content-section p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
        }
        .highlight-box {
            background-color: #f0f9ff;
            border-left: 4px solid var(--primary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: linear-gradient(to bottom right, #e0f2fe, #f0f9ff);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            text-align: center;
            border: 1px solid #bae6fd;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            display: block;
            line-height: 1;
        }
        .stat-label {
            font-size: 1rem;
            color: var(--text-dark);
            margin-top: 0.5rem;
        }
        .interview-quote {
            font-style: italic;
            font-size: 1.2rem;
            color: var(--secondary-color);
            padding: 2rem;
            background-color: #fefce8;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            border-left: 5px solid var(--accent-color);
        }
        .synergy-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .synergy-table th, .synergy-table td {
            border: 1px solid #e2e8f0;
            padding: 1rem;
            text-align: left;
        }
        .synergy-table th {
            background-color: var(--secondary-color);
            color: white;
            font-weight: 600;
        }
        .synergy-table tr:nth-child(even) {
            background-color: #f8fafc;
        }
        .featured-image {
            margin: 2.5rem auto;
            max-width: 900px;
        }
        .featured-image img {
            box-shadow: var(--shadow);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #64748b;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .site-footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h4 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-color);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
            transition: var(--transition);
        }
        .game-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 1rem;
        }
        .tag {
            background-color: #334155;
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            text-decoration: none;
        }
        .tag:hover {
            background-color: var(--primary-color);
            text-decoration: none;
        }
        .friend-link {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #475569;
        }
        .friend-link a {
            color: var(--accent-color);
            font-weight: bold;
            font-size: 1.1rem;
        }
        .recommendation {
            text-align: center;
            font-size: 1.1rem;
            color: #cbd5e1;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #475569;
        }
        .recommendation a {
            color: var(--accent-color);
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #475569;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .content-section {
                padding: 1.8rem;
            }
            .content-section h2 {
                font-size: 1.8rem;
            }
            .content-section h3 {
                font-size: 1.4rem;
            }
            .main-nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--dark-bg);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                gap: 1.5rem;
                transform: translateY(-150%);
                transition: var(--transition);
                box-shadow: var(--shadow);
                z-index: 999;
            }
            .main-nav.active ul {
                transform: translateY(0);
            }
            .hamburger-menu {
                display: flex;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .synergy-table {
                font-size: 0.9rem;
            }
            .synergy-table th, .synergy-table td {
                padding: 0.75rem 0.5rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            .content-section {
                padding: 1.5rem;
            }
            .stat-number {
                font-size: 2rem;
            }
        }
