:root {
            --primary-mustard: #FFDB58;
            --spicy-red: #DC143C;
            --deep-yellow: #FFA500;
            --dark-spice: #8B4513;
            --light-turmeric: #F4D03F;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-weight: bold;
            font-size: 2.2rem;
            color: var(--dark-spice);
            text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.3);
            transition: all 0.3s ease;
        }
        .logo-text:hover {
            color: var(--spicy-red);
            transform: scale(1.05);
        }
        .nav-custom {
            background: linear-gradient(90deg, var(--dark-spice) 0%, var(--deep-yellow) 100%);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .nav-link {
            color: white !important;
            font-weight: 600;
            padding: 10px 20px !important;
            transition: all 0.3s ease;
            border-radius: 5px;
        }
        .nav-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        h1, h2, h3 {
            color: var(--dark-spice);
            margin-bottom: 1.2rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--primary-mustard);
            padding-bottom: 0.5rem;
            text-align: center;
            margin-top: 2rem;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--spicy-red);
            padding-left: 15px;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--deep-yellow);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, var(--light-turmeric) 0%, var(--primary-mustard) 100%);
            border-left: 5px solid var(--spicy-red);
            padding: 25px;
            border-radius: 8px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .keyword-bold {
            font-weight: 800;
            color: var(--dark-spice);
            background-color: rgba(255, 219, 88, 0.3);
            padding: 2px 6px;
            border-radius: 3px;
        }
        .game-image {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: transform 0.4s ease;
            margin: 25px 0;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .icon-feature {
            font-size: 2.5rem;
            color: var(--spicy-red);
            margin-bottom: 15px;
        }
        .feature-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            border-top: 4px solid var(--primary-mustard);
        }
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }
        .footer-custom {
            background: linear-gradient(90deg, var(--dark-spice) 0%, #5D4037 100%);
            color: white;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--spicy-red);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            background: var(--deep-yellow);
            transform: translateY(-5px);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .logo-text {
                font-size: 1.8rem;
            }
        }
        .content-section {
            margin-bottom: 3rem;
        }
        .emoji-divider {
            text-align: center;
            font-size: 2rem;
            margin: 2rem 0;
            color: var(--deep-yellow);
        }
