:root {
            --saffron: #FF9933;
            --white: #FFFFFF;
            --green: #138808;
            --navy: #000080;
            --gold: #FFD700;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--saffron) !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(--saffron) !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');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .game-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
        }
        .btn-primary {
            background: linear-gradient(45deg, var(--saffron), var(--gold));
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
        }
        .btn-outline-light {
            border: 2px solid white;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-outline-light:hover {
            background: white;
            color: var(--saffron);
            transform: translateY(-3px);
        }
        .section-title {
            color: var(--navy);
            font-weight: 700;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 10px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(45deg, var(--saffron), var(--gold));
            border-radius: 2px;
        }
        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
            border-left: 5px solid var(--saffron);
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--saffron);
            line-height: 1;
        }
        .review-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 20px;
            border-top: 4px solid var(--green);
        }
        .tag {
            display: inline-block;
            background: linear-gradient(45deg, var(--saffron), var(--gold));
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin: 5px;
            transition: all 0.3s ease;
        }
        .tag:hover {
            transform: scale(1.05);
            text-decoration: none;
            color: white;
        }
        .game-type {
            display: inline-block;
            background: var(--navy);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            margin: 5px;
            transition: all 0.3s ease;
        }
        .game-type:hover {
            background: var(--saffron);
            color: white;
            text-decoration: none;
            transform: translateY(-2px);
        }
        footer {
            background: linear-gradient(135deg, var(--navy) 0%, #000050 100%);
            color: white;
            padding: 50px 0 20px;
        }
        .footer-links a {
            color: #ccc;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .footer-links a:hover {
            color: var(--saffron);
        }
        .content-section {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }
        .content-img {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 20px 0;
            width: 100%;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255,153,51,0.2) 0%, rgba(255,153,51,0) 100%);
            border-left: 4px solid var(--saffron);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        @media (max-width: 768px) {
            .game-title {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 60px 0;
            }
            .content-section {
                padding: 25px;
            }
        }
