        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #FF4500;
            --secondary: #0052CC;
            --dark: #0A1628;
            --accent: #FFD700;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--dark);
            color: #fff;
            overflow-x: hidden;
        }

        .bebas {
            font-family: 'Bebas Neue', sans-serif;
        }

        .oswald {
            font-family: 'Oswald', sans-serif;
        }

        /* Animated gradient background */
        .gradient-bg {
            background: linear-gradient(135deg, #0A1628 0%, #1a2744 50%, #0A1628 100%);
            background-size: 200% 200%;
            animation: gradientShift 15s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        /* Hero section animations */
        .hero-title {
            animation: slideInDown 1s ease-out;
        }

        .hero-subtitle {
            animation: slideInUp 1s ease-out 0.3s both;
        }

        .hero-cta {
            animation: fadeInScale 1s ease-out 0.6s both;
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Card hover effects */
        .card-hover {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .card-hover::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 69, 0, 0.2), transparent);
            transition: left 0.5s;
        }

        .card-hover:hover::before {
            left: 100%;
        }

        .card-hover:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(255, 69, 0, 0.3);
        }

        /* Navigation */
        nav {
            backdrop-filter: blur(10px);
            background: rgba(10, 22, 40, 0.9);
            border-bottom: 2px solid var(--primary);
        }

        /* Section reveal animation */
        .section-reveal {
            opacity: 0;
            transform: translateY(30px);
            animation: reveal 0.8s ease-out forwards;
        }

        @keyframes reveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Trophy icon */
        .trophy-glow {
            filter: drop-shadow(0 0 20px var(--accent));
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Team flag circles */
        .flag-circle {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 4px solid var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 3.5rem;
            transition: all 0.4s;
            cursor: pointer;
            background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,69,0,0.1));
        }

        .flag-circle:hover {
            transform: rotate(360deg) scale(1.15);
            box-shadow: 0 0 40px var(--accent);
            border-width: 5px;
        }

        /* Team popup modal */
        .team-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            animation: fadeIn 0.3s;
        }

        .team-modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .team-modal-content {
            background: linear-gradient(135deg, #1a2744, #0A1628);
            padding: 40px;
            border-radius: 20px;
            max-width: 500px;
            width: 90%;
            border: 3px solid var(--accent);
            animation: slideInUp 0.4s;
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 35px;
            font-weight: bold;
            color: #fff;
            cursor: pointer;
            transition: all 0.3s;
        }

        .close-modal:hover {
            color: var(--primary);
            transform: rotate(90deg);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Match schedule card */
        .match-card {
            background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(0, 82, 204, 0.1));
            border-left: 4px solid var(--primary);
            transition: all 0.3s;
        }

        .match-card:hover {
            border-left-width: 8px;
            background: linear-gradient(135deg, rgba(255, 69, 0, 0.2), rgba(0, 82, 204, 0.2));
        }

        /* Venue cards */
        .venue-card {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #1a2744, #0A1628);
        }

        .venue-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .venue-card:hover::after {
            transform: scaleX(1);
        }

        /* Stats counter animation */
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Decorative elements */
        .cricket-ball {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, #ff6b6b, #c92a2a);
            position: absolute;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        /* Tabs */
        .tab-button {
            transition: all 0.3s;
        }

        .tab-button.active {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        .schedule-btn {
            transition: all 0.3s;
            cursor: pointer;
        }

        .schedule-btn.active {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        .schedule-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
        }

        .schedule-section {
            animation: fadeInUp 0.5s ease-out;
        }

        /* Scroll indicator */
        .scroll-indicator {
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }