:root {
            --primary-spice: #d35400;
            --secondary-turmeric: #f39c12;
            --accent-cardamom: #27ae60;
            --background-saffron: #fff9e6;
            --text-masala: #2c3e50;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: var(--text-masala);
            background: linear-gradient(135deg, var(--background-saffron) 0%, #ffffff 100%);
        }
        .logo-brand {
            font-family: 'Georgia', serif;
            font-weight: bold;
            font-size: 1.8rem;
            color: var(--primary-spice);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .nav-link {
            font-weight: 500;
            transition: all 0.3s ease;
            color: var(--text-masala) !important;
        }
        .nav-link:hover {
            color: var(--primary-spice) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .content-section {
            padding: 60px 0;
        }
        .section-title {
            color: var(--primary-spice);
            border-left: 5px solid var(--secondary-turmeric);
            padding-left: 15px;
            margin-bottom: 30px;
            font-weight: 700;
        }
        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid var(--secondary-turmeric);
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        .spice-icon {
            font-size: 2.5rem;
            color: var(--primary-spice);
            margin-bottom: 15px;
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            margin-bottom: 20px;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .highlight-text {
            background: linear-gradient(120deg, var(--secondary-turmeric) 0%, var(--secondary-turmeric) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.3em;
            background-position: 0 88%;
            font-weight: 700;
        }
        .key-point {
            background-color: #f8f9fa;
            border-left: 4px solid var(--accent-cardamom);
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        footer {
            background-color: var(--text-masala);
            color: white;
            padding: 40px 0 20px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .logo-brand {
                font-size: 1.4rem;
            }
        }
