:root {
            --primary-choco: #8B4513;
            --secondary-pixel: #4A90E2;
            --accent-gold: #FFD700;
            --background-cream: #FFF8E7;
            --text-dark: #2C1810;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background-color: var(--background-cream);
            color: var(--text-dark);
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-choco) !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .nav-link {
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-choco) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-choco) 0%, #A0522D 100%);
            color: white;
            padding: 4rem 0;
            border-radius: 0 0 30px 30px;
            margin-bottom: 3rem;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        h1, h2, h3 {
            color: var(--primary-choco);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--accent-gold);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--secondary-pixel);
            margin-top: 2rem;
        }
        .keyword-highlight {
            background: linear-gradient(120deg, var(--accent-gold) 0%, var(--accent-gold) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.3em;
            background-position: 0 88%;
            font-weight: 700;
            padding: 0.1rem 0.3rem;
        }
        .feature-icon {
            font-size: 2rem;
            color: var(--primary-choco);
            margin-right: 1rem;
        }
        .game-image {
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: transform 0.4s ease;
            margin: 2rem 0;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .fact-box {
            background: linear-gradient(135deg, #FFF0E0 0%, #FFE4C4 100%);
            border-left: 4px solid var(--accent-gold);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        .rating-stars {
            color: var(--accent-gold);
            font-size: 1.2rem;
        }
        footer {
            background: var(--primary-choco);
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2.5rem 0;
                border-radius: 0 0 20px 20px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
