:root {
            --primary-color: #ff6b35;
            --secondary-color: #f7931e;
            --accent-color: #4caf50;
            --text-dark: #2c3e50;
            --text-light: #7f8c8d;
            --bg-light: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: #ffffff;
        }
        .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), var(--secondary-color));
            color: white;
            padding: 4rem 0;
            margin-bottom: 2rem;
            border-radius: 0 0 20px 20px;
        }
        .game-feature {
            background-color: var(--bg-light);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .game-feature:hover {
            transform: translateY(-5px);
        }
        .download-stats {
            background: linear-gradient(45deg, #4caf50, #8bc34a);
            color: white;
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 0;
        }
        .btn-primary-custom {
            background-color: var(--primary-color);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            background-color: #e55a2b;
            transform: scale(1.05);
        }
        .btn-secondary-custom {
            background-color: var(--accent-color);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-secondary-custom:hover {
            background-color: #3d8c40;
            transform: scale(1.05);
        }
        .tag {
            display: inline-block;
            background-color: #e9ecef;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            margin: 0.2rem;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: var(--primary-color);
            color: white;
            cursor: pointer;
        }
        .section-title {
            position: relative;
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: var(--primary-color);
            border-radius: 2px;
        }
        .player-review {
            border-left: 4px solid var(--primary-color);
            padding-left: 1rem;
            margin: 1.5rem 0;
            font-style: italic;
        }
        .game-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 1.5rem 0;
        }
        footer {
            background-color: var(--text-dark);
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 3rem;
        }
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: white;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
            }
            .navbar-collapse {
                background-color: white;
                padding: 1rem;
                border-radius: 10px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                margin-top: 1rem;
            }
        }
        p {
            margin-bottom: 1.5rem;
        }
        h2, h3 {
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        .indian-pattern {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path fill="%23ff6b35" fill-opacity="0.1" d="M3,1 L5,1 L5,3 L3,3 L3,1 Z M9,1 L11,1 L11,3 L9,3 L9,1 Z M15,1 L17,1 L17,3 L15,3 L15,1 Z M1,5 L3,5 L3,7 L1,7 L1,5 Z M7,5 L9,5 L9,7 L7,7 L7,5 Z M13,5 L15,5 L15,7 L13,7 L13,5 Z M19,5 L21,5 L21,7 L19,7 L19,5 Z M3,9 L5,9 L5,11 L3,11 L3,9 Z M9,9 L11,9 L11,11 L9,11 L9,9 Z M15,9 L17,9 L17,11 L15,11 L15,9 Z M1,13 L3,13 L3,15 L1,15 L1,13 Z M7,13 L9,13 L9,15 L7,15 L7,13 Z M13,13 L15,13 L15,15 L13,15 L13,13 Z M19,13 L21,13 L21,15 L19,15 L19,13 Z M3,17 L5,17 L5,19 L3,19 L3,17 Z M9,17 L11,17 L11,19 L9,19 L9,17 Z M15,17 L17,17 L17,19 L15,19 L15,17 Z"/>');
            height: 10px;
            margin: 2rem 0;
        }
