:root {
            --primary-gold: #FFD700;
            --secondary-red: #FF5733;
            --accent-green: #28A745;
            --dark-blue: #1E3A8A;
            --light-cream: #FFF8E1;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, var(--light-cream) 0%, #ffffff 100%);
            color: #333;
            line-height: 1.7;
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-weight: bold;
            color: var(--primary-gold);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-size: 2.2rem;
        }
        .nav-custom {
            background: linear-gradient(90deg, var(--dark-blue) 0%, #2D46B9 100%);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(30, 58, 138, 0.8), rgba(255, 215, 0, 0.8)), url('https://via.placeholder.com/1200x600') center/cover;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            margin: 30px 0;
            padding: 40px;
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        h1, h2, h3 {
            color: var(--dark-blue);
            margin-bottom: 1.5rem;
        }
        h1 {
            border-bottom: 3px solid var(--primary-gold);
            padding-bottom: 15px;
            font-size: 2.8rem;
        }
        h2 {
            border-left: 5px solid var(--secondary-red);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            color: var(--accent-green);
            margin-top: 2rem;
        }
        .key-feature {
            background: #f8f9fa;
            border-left: 4px solid var(--primary-gold);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .img-container {
            text-align: center;
            margin: 30px 0;
        }
        .game-image {
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
            max-width: 100%;
            height: auto;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .highlight-text {
            background: linear-gradient(120deg, var(--primary-gold) 0%, var(--primary-gold) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            font-weight: bold;
        }
        .nav-toc {
            position: sticky;
            top: 20px;
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .nav-toc a {
            color: var(--dark-blue);
            text-decoration: none;
            display: block;
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
        }
        .nav-toc a:hover {
            color: var(--secondary-red);
            padding-left: 10px;
        }
        .footer-custom {
            background: var(--dark-blue);
            color: white;
            padding: 40px 0;
            margin-top: 50px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            .content-section {
                padding: 25px;
            }
        }
        .fact-box {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            border-left: 5px solid var(--dark-blue);
        }
        .quote-section {
            font-style: italic;
            border-left: 4px solid var(--primary-gold);
            padding-left: 20px;
            margin: 25px 0;
            color: #555;
        }
