* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Arial Unicode MS', Arial, sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding-bottom: 40px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            color: white;
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .logo span {
            color: #ffeb3b;
        }
        nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        nav a {
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 25px;
            background: rgba(255,255,255,0.2);
            transition: all 0.3s ease;
            font-weight: 600;
        }
        nav a:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            padding: 10px 15px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 16px;
        }
        main {
            margin-top: 30px;
        }
        h1, h2, h3 {
            color: #ff6b35;
            margin-bottom: 20px;
            font-weight: bold;
        }
        h1 {
            font-size: 36px;
            text-align: center;
            margin: 30px 0;
            color: #d32f2f;
        }
        h2 {
            font-size: 28px;
            border-left: 5px solid #ff6b35;
            padding-left: 15px;
            margin: 40px 0 20px;
        }
        h3 {
            font-size: 22px;
            margin: 30px 0 15px;
            color: #f57c00;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
            padding: 20px;
            border-radius: 10px;
            margin: 25px 0;
            border-left: 5px solid #ff9800;
        }
        .stats-box {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 30px 0;
            gap: 20px;
        }
        .stat-item {
            background: white;
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            flex: 1;
            min-width: 200px;
        }
        .stat-number {
            font-size: 36px;
            font-weight: bold;
            color: #ff6b35;
            margin-bottom: 10px;
        }
        .stat-label {
            color: #666;
            font-weight: 600;
        }
        .download-section {
            text-align: center;
            margin: 40px 0;
            padding: 30px;
            background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
            border-radius: 15px;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            margin: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
        }
        .btn-login {
            background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
            box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
        }
        .btn-login:hover {
            box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
        }
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .gallery-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .gallery-img:hover {
            transform: scale(1.05);
        }
        .review-box {
            background: white;
            padding: 25px;
            border-radius: 15px;
            margin: 20px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-left: 5px solid #2196f3;
        }
        .reviewer {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #ff6b35;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 15px;
        }
        .stars {
            color: #ffeb3b;
            margin: 10px 0;
        }
        .tips-list {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 15px;
            margin: 25px 0;
        }
        .tips-list ul {
            list-style: none;
        }
        .tips-list li {
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
        }
        .tips-list li:before {
            content: "⚽";
            position: absolute;
            left: 0;
        }
        footer {
            background: #2c3e50;
            color: white;
            padding: 40px 0;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .footer-section h4 {
            color: #ff6b35;
            margin-bottom: 20px;
            font-size: 18px;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 12px;
        }
        .footer-section a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-section a:hover {
            color: #ff6b35;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }
        .tag {
            background: #34495e;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #34495e;
            font-size: 14px;
            color: #bdc3c7;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
                margin: 0 auto 15px;
            }
            nav {
                display: none;
                flex-direction: column;
                align-items: center;
            }
            nav.active {
                display: flex;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            .stat-item {
                min-width: 150px;
            }
            .stat-number {
                font-size: 28px;
            }
        }
        .indian-flag {
            display: inline-block;
            width: 20px;
            height: 15px;
            background: linear-gradient(to bottom, #ff9933 33%, #ffffff 33%, #ffffff 66%, #138808 66%);
            border-radius: 3px;
            margin-right: 8px;
        }
        .goa-badge {
            background: linear-gradient(135deg, #0099cc 0%, #66ffff 100%);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            margin: 5px;
            display: inline-block;
        }
