        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.8;
            color: #333;
            background-color: #f9f5f0;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #0f4c81, #ff6b00);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
            display: inline-block;
            letter-spacing: 1px;
        }
        .logo span {
            color: #ffdd00;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
            font-size: 1rem;
        }
        .nav-links a:hover {
            color: #ffdd00;
        }
        .btn {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        .btn-download {
            background-color: #ffdd00;
            color: #0f4c81;
            margin-right: 10px;
        }
        .btn-download:hover {
            background-color: #ffc800;
            transform: translateY(-2px);
        }
        .btn-login {
            background-color: #ffffff;
            color: #0f4c81;
        }
        .btn-login:hover {
            background-color: #f0f0f0;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .hero {
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f0e6d6"/><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" font-size="12" fill="%230f4c81">Mumbai Ball Frenzy Champion') no-repeat center center;
            background-size: cover;
            padding: 80px 0;
            text-align: center;
            color: #0f4c81;
            margin-bottom: 40px;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #0f4c81;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #333;
            line-height: 1.8;
        }
        .content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }
        .section {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .section h2 {
            color: #0f4c81;
            margin-bottom: 25px;
            font-size: 2rem;
            border-bottom: 3px solid #ff6b00;
            padding-bottom: 10px;
            display: inline-block;
        }
        .section h3 {
            color: #ff6b00;
            margin: 20px 0 15px;
            font-size: 1.5rem;
        }
        .section p {
            margin-bottom: 15px;
            font-size: 1.05rem;
            color: #444;
        }
        .section ul {
            margin-left: 25px;
            margin-bottom: 20px;
        }
        .section li {
            margin-bottom: 10px;
            font-size: 1.05rem;
            color: #444;
        }
        .highlight {
            background-color: #fff3e0;
            padding: 15px;
            border-left: 4px solid #ff6b00;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        .highlight strong {
            color: #0f4c81;
        }
        .feature-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .feature-card {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            border-top: 3px solid #0f4c81;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        .feature-card h4 {
            color: #0f4c81;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        .feature-card p {
            font-size: 1rem;
            color: #555;
        }
        .image-placeholder {
            width: 100%;
            height: 300px;
            background-color: #f0e6d6;
            border-radius: 10px;
            margin: 20px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0f4c81;
            font-weight: 500;
            border: 1px dashed #0f4c81;
        }
        footer {
            background-color: #0f4c81;
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
            border-radius: 20px 20px 0 0;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-column h3 {
            color: #ffdd00;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-column ul {
            list-style: none;
        }
        .footer-column ul li {
            margin-bottom: 10px;
        }
        .footer-column a {
            color: #f0f0f0;
            text-decoration: none;
            transition: 0.3s;
        }
        .footer-column a:hover {
            color: #ffdd00;
        }
        .recommendation {
            background-color: #1a5b99;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        .recommendation h3 {
            color: #ffdd00;
            margin-bottom: 10px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2c7dc0;
            font-size: 0.9rem;
            color: #d0d0d0;
        }
        @media (max-width: 900px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #0f4c81;
                padding: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .section h2 {
                font-size: 1.7rem;
            }
            .section h3 {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 600px) {
            .btn {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
            .hero {
                padding: 50px 0;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .section {
                padding: 20px;
            }
            .feature-box {
                grid-template-columns: 1fr;
            }
        }
