:root {
            --primary-color: #1e40af;
            --secondary-color: #dc2626;
            --accent-color: #f59e0b;
            --text-color: #1f2937;
            --light-bg: #f8fafc;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: var(--light-bg);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color), #1e3a8a);
            color: white;
            padding: 4rem 0;
            margin-bottom: 3rem;
        }
        .game-feature {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .game-feature:hover {
            transform: translateY(-5px);
        }
        .btn-download {
            background: linear-gradient(45deg, var(--secondary-color), #ef4444);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .btn-download:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 12px rgba(220, 38, 38, 0.3);
        }
        .btn-login {
            background: var(--primary-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .btn-login:hover {
            background: #1e3a8a;
            transform: scale(1.05);
        }
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .tag {
            background: #e5e7eb;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            transition: all 0.2s ease;
        }
        .tag:hover {
            background: var(--primary-color);
            color: white;
        }
        .game-image {
            border-radius: 12px;
            overflow: hidden;
            margin: 2rem 0;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .indian-highlight {
            border-left: 4px solid var(--accent-color);
            padding-left: 1rem;
            background: #fef3c7;
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
        }
        footer {
            background: #1f2937;
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .content-section {
            margin-bottom: 3rem;
        }
        h1, h2, h3 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.5rem;
            font-weight: 800;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid var(--accent-color);
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--secondary-color);
        }
        .key-feature {
            display: flex;
            align-items: center;
            margin: 1rem 0;
        }
        .key-feature i {
            color: var(--accent-color);
            margin-right: 1rem;
            font-size: 1.2rem;
        }
        .stat-highlight {
            background: var(--primary-color);
            color: white;
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            margin: 1.5rem 0;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            display: block;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .hero-section {
                padding: 2.5rem 0;
            }
        }
