        :root {
            --bg-dark: #0b0e11;
            --header-bg: #1a1a1a;
            --yellow: #ffb80c;
            --red: #d0021b;
            --blue-light: #50e3c2;
            --blue-dark: #4a90e2;
            --text-white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: #f2ede4;
            /* Screenshot wala light background */
            color: white;
            overflow-x: hidden;
        }

        /* --- Header Section --- */
        header {
            background: linear-gradient(to bottom, #222, #000);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            border-bottom: 2px solid #333;
        }

        .logo img {
            height: 45px;
            display: block;
        }

        .auth-buttons {
            display: flex;
            gap: 10px;
        }

        .btn {
            padding: 8px 18px;
            border: none;
            border-radius: 4px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            text-transform: uppercase;
            font-size: 13px;
        }

        .btn-signup {
            background-color: var(--yellow);
            color: black;
        }

        .btn-login {
            background-color: var(--red);
            color: white;
        }

        /* --- News Ticker --- */
        .news-bar {
            background: #0b0e11;
            display: flex;
            align-items: stretch;
            height: 45px;
        }

        .news-label {
            background: #1a232d;
            padding: 0 25px 0 15px;
            display: flex;
            align-items: center;
            font-weight: 700;
            font-style: italic;
            position: relative;
            z-index: 2;
            clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
            min-width: 120px;
        }

        .date-badge {
            background: #4a90e2;
            padding: 0 12px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            font-size: 11px;
            font-weight: 600;
            margin-left: 2px;
        }

        .ticker-text {
            flex: 1;
            white-space: nowrap;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding-left: 15px;
            color: #4a90e2;
            font-size: 14px;
        }

        .marquee-content {
            display: inline-block;
            animation: marquee 25s linear infinite;
        }

        @keyframes marquee {
            0% {
                transform: translateX(100%);
            }

            100% {
                transform: translateX(-100%);
            }
        }

        /* --- Carousel --- */
        .carousel-container {
            position: relative;
            width: 100%;
            aspect-ratio: 31/9;
            overflow: hidden;
            background: #000;
        }

        .carousel-slide {
            display: none;
            width: 100%;
            height: 100%;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .active-slide {
            display: block;
        }

        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            color: white;
            border: none;
            padding: 20px 10px;
            cursor: pointer;
            z-index: 10;
            font-size: 24px;
        }

        .prev {
            left: 10px;
        }

        .next {
            right: 10px;
        }

        /* --- NEW: Game Cards Grid --- */
        .games-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            padding: 10px;
        }

        .full-card {
            grid-column: span 2;
        }

        .card {
            position: relative;
            background: #000;
            border-radius: 5px;
            overflow: hidden;
            height: 190px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }

        /* Live Sports Inner Layout */
        .live-sports-flex {
            display: flex;
            height: 100%;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        }

        .live-left {
            flex: 1.5;
            background: url('img/live-1.jpg') center/cover;
            position: relative;
        }

        .live-right {
            flex: 1;
            background: rgba(10, 20, 40, 0.8);
            padding: 10px;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        /* LIVE Badge */
        .live-status {
            background: white;
            padding: 2px 8px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .live-status i {
            color: red;
            margin-right: 5px;
            font-size: 14px;
        }

        .live-status span {
            background: red;
            color: white;
            padding: 0 5px;
            font-weight: bold;
            font-size: 12px;
            border-radius: 2px;
        }

        .stat-list {
            width: 100%;
            list-style: none;
        }

        .stat-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 0;
            font-size: 14px;
            font-weight: 600;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .count-num {
            background: white;
            color: black;
            padding: 0 6px;
            border-radius: 3px;
            font-size: 12px;
            font-weight: 800;
        }

        /* Card Overlay Title and Button */
        .card-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30px;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            padding-left: 4px;
            font-weight: 600;
            font-size: 14px;
        }

        .play-now {
            position: absolute;
            right: 0;
            bottom: 0;
            background: var(--yellow);
            color: black;
            height: 30px;
            display: flex;
            align-items: center;
            padding: 0 14px;
            font-weight: 700;
            font-size: 13px;
            clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
        }

        .card-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .close-btn {
            position: absolute;
            right: 110px;
            bottom: 8px;
            color: #ccc;
            font-size: 20px;
            cursor: pointer;
        }

        .site-footer {
            background-color: #1a2b3c;
            /* Exact dark navy color */
            padding: 40px 10px;
            text-align: center;
            color: white;
        }

        /* Top Logos Section */
        .footer-top-logos {
            display: flex;
            justify-content: space-around;
            align-items: center;
            max-width: 600px;
            margin: 0 auto 30px;
        }

        .support-box {
            background-color: #3197d6;
            /* Light blue support button */
            padding: 5px 15px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: bold;
            box-shadow: 0 4px #1a5e8a;
        }

        /* Join Now Header */
        .join-now-header h3 {
            color: #9ab4c7;
            font-weight: 500;
            margin-bottom: 30px;
            font-size: 20px;
        }

        /* Features Grid */
        .features-grid {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 25px;
        }

        .second-row {
            margin-bottom: 40px;
        }

        .feature-item {
            flex: 1;
            max-width: 140px;
        }

        .feature-item i {
            color: #f3c44a;
            /* Golden-yellow color for icons */
            font-size: 32px;
            margin-bottom: 10px;
        }

        .feature-item p {
            font-size: 12px;
            line-height: 1.4;
            color: #d1d9e0;
        }

        /* Footer Links */
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px 25px;
            max-width: 800px;
            margin: 0 auto 40px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
        }

        /* Social Icons Section */
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .social-circle {
            background-color: white;
            color: #1a2b3c;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 20px;
            transition: transform 0.3s;
        }

        .social-circle:hover {
            transform: scale(1.1);
        }

        /* Responsive adjustments */
        @media (max-width: 600px) {
            .footer-top-logos {
                flex-direction: row;
            }

            .footer-links {
                flex-direction: column;
                gap: 10px;
            }

            .features-grid {
                flex-wrap: wrap;
            }
        }
                .mobile-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background-color: #0b1622;
            /* Dark background behind the tabs */
            display: flex;
            justify-content: space-around;
            align-items: flex-end;
            z-index: 9999;
            padding: 0 5px;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
        }

        .nav-item {
            flex: 1;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            height: 55px;
            /* Height of the curved tab */
            background: linear-gradient(to bottom, #2b4b69, #162a3d);
            /* Dark blue gradient from image */
            border-radius: 20px 20px 0 0;
            /* Curvy top corners */
            margin: 0 2px;
            transition: all 0.3s ease;
        }

        /* Active tab style (Home button typically looks slightly bigger or different) */
        .nav-item.active {
            background: linear-gradient(to bottom, #3a638a, #1a344d);
            height: 60px;
            /* Thoda uncha as per image */
        }

        .nav-icon {
            font-size: 18px;
            margin-bottom: 2px;
        }

        .nav-item span {
            font-size: 11px;
            font-weight: 700;
            text-transform: capitalize;
        }

        /* Hover effect */
        .nav-item:hover {
            background: linear-gradient(to bottom, #3a638a, #1a344d);
        }

        /* Desktop par chhupane ke liye (Optional) */
        @media (min-width: 768px) {
            /* .mobile-nav { display: none; } */
        }
                    .brand-marquee {
                width: 100%;
                overflow: hidden;
                background: transparent;
                /* Dark background matches your theme */
                padding: 15px 0;
                border-top: 1px solid #222;
                border-bottom: 1px solid #222;
                margin: 10px 0;
            }

            /* The moving track */
            .marquee-content {
                display: flex;
                width: calc(200px * 12);
                /* Image width * Total images (6x2) */
                animation: fastScroll 10s linear infinite;
                /* Speed 10s = Fast, Increase for slower */
            }

            /* Individual Image Styling */
            .brand-item {
                width: 150px;
                /* Sabhi images ki ek jaisi width */
                flex-shrink: 0;
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 0 20px;
                border: 1px solid #333;
            }

            .brand-item img {
                width: 100%;
                height: auto;
                max-height: 50px;
                /* Logo ki height fix rakhi hai */
                object-fit: contain;
                opacity: 0.6;
                transition: 0.3s;
            }

            /* Hover karne par image color aur bright ho jaye */
            .brand-item:hover img {
                filter: grayscale(0%);
                opacity: 1;
                transform: scale(1.1);
            }

            /* CSS Animation for Scrolling */
            @keyframes fastScroll {
                0% {
                    transform: translateX(0);
                }

                100% {
                    transform: translateX(calc(-150px * 6 - 40px * 6));
                    /* (width*6 + padding*6) half distance move karega */
                }
            }

            /* Mobile ke liye responsive speed */
            @media (max-width: 600px) {
                .marquee-content {
                    animation: fastScroll 6s linear infinite;
                    /* Mobile par thoda aur fast lagega */
                }
            }

