:root {
            --primary-gold: #FFD700;
            --deep-saffron: #FF9933;
            --indian-green: #138808;
            --royal-blue: #000080;
            --rich-purple: #8A2BE2;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .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;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .game-logo {
            font-family: 'Georgia', serif;
            font-size: 3.5rem;
            font-weight: bold;
            color: var(--primary-gold);
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
            margin-bottom: 1rem;
        }
        .nav-brand {
            font-family: 'Georgia', serif;
            font-weight: bold;
            color: var(--primary-gold) !important;
            font-size: 1.8rem;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 40px;
            margin: -50px auto 30px;
            position: relative;
        }
        h1, h2, h3 {
            color: var(--royal-blue);
            margin-bottom: 1.5rem;
        }
        h1 {
            border-bottom: 3px solid var(--primary-gold);
            padding-bottom: 10px;
        }
        .highlight-box {
            background: linear-gradient(135deg, var(--primary-gold), var(--deep-saffron));
            color: white;
            padding: 25px;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .btn-download {
            background: linear-gradient(135deg, var(--indian-green), #0a6b0a);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: bold;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(10, 107, 10, 0.3);
        }
        .btn-download:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(10, 107, 10, 0.4);
        }
        .btn-login {
            background: linear-gradient(135deg, var(--royal-blue), #0000cc);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: bold;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 128, 0.3);
        }
        .btn-login:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(0, 0, 128, 0.4);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--deep-saffron);
            margin-bottom: 15px;
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 20px 0;
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag-badge {
            background: linear-gradient(135deg, var(--rich-purple), #6a0dad);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 5px;
            display: inline-block;
            transition: all 0.3s ease;
        }
        .tag-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            text-decoration: none;
            color: white;
        }
        .rating-stars {
            color: var(--primary-gold);
            font-size: 1.2rem;
        }
        footer {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-links a {
            color: #ecf0f1;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--primary-gold);
        }
        @media (max-width: 768px) {
            .game-logo {
                font-size: 2.5rem;
            }
            .content-section {
                padding: 25px;
                margin: -30px auto 20px;
            }
            .hero-section {
                padding: 70px 0;
            }
        }
