:root {
            --primary-blue: #1a5276;
            --deep-blue: #154360;
            --accent-orange: #e67e22;
            --light-blue: #3498db;
            --dark-bg: #0c2461;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .navbar {
            background: linear-gradient(90deg, var(--dark-bg) 0%, var(--primary-blue) 100%);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            padding: 15px 0;
        }
        .logo-text {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--accent-orange) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(13, 71, 161, 0.8), rgba(21, 67, 96, 0.9)), url('https://via.placeholder.com/1600x900') center/cover;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 50px;
        }
        .game-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
        }
        .btn-download {
            background: linear-gradient(45deg, var(--accent-orange), #d35400);
            border: none;
            padding: 12px 30px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            margin: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
        }
        .btn-download:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(230, 126, 34, 0.6);
        }
        .btn-login {
            background: transparent;
            border: 2px solid white;
            color: white;
            padding: 12px 30px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            margin: 10px;
            transition: all 0.3s ease;
        }
        .btn-login:hover {
            background: white;
            color: var(--primary-blue);
        }
        .content-section {
            background: white;
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
        }
        h1, h2, h3 {
            color: var(--primary-blue);
            margin-bottom: 25px;
        }
        h1 {
            border-bottom: 3px solid var(--accent-orange);
            padding-bottom: 15px;
        }
        h2 {
            border-left: 5px solid var(--accent-orange);
            padding-left: 15px;
            margin-top: 40px;
        }
        .key-feature {
            background: #e8f4fc;
            border-radius: 10px;
            padding: 25px;
            margin: 20px 0;
            border-left: 4px solid var(--light-blue);
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 25px 0;
            width: 100%;
        }
        .tag {
            display: inline-block;
            background: #e0e0e0;
            padding: 5px 15px;
            border-radius: 20px;
            margin: 5px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: var(--light-blue);
            color: white;
            transform: translateY(-2px);
        }
        .footer {
            background: var(--dark-bg);
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .game-type-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        .game-type-link {
            color: var(--light-blue);
            text-decoration: none;
            padding: 5px 15px;
            border: 1px solid var(--light-blue);
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        .game-type-link:hover {
            background: var(--light-blue);
            color: white;
        }
        .rating-stars {
            color: #f1c40f;
            font-size: 1.2rem;
        }
        .indian-player-review {
            background: #fff9e6;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            border-left: 4px solid #f1c40f;
        }
        @media (max-width: 768px) {
            .game-title {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 60px 0;
            }
            .content-section {
                padding: 25px;
            }
        }
