* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #000;
    color: #fff;
}

/* HEADER */
/* --- HEADER DESKTOP --- */
/* --- HEADER SECTION --- */
.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 60px;
    background: #000;
    position: relative;
    z-index: 1000;
}

/* Desktop par toggle hidden rehna chahiye */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #ffcc00;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.3s;
}

/* --- HERO / BANNER SECTION --- */
.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* Hero text container */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

/* --- RESPONSIVE FIXES (Mobile & Tablet) --- */
@media (max-width: 991px) {
    .main-header {
        padding: 12px 20px;
    }

    /* Toggle button ab sirf mobile par dikhega */
    .menu-toggle {
        display: block;
        order: 2;
        /* Logo ke baad dikhne ke liye */
    }

    .logo {
        order: 1;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        padding: 30px 0;
        gap: 20px;
        border-bottom: 2px solid #ffcc00;
    }

    .nav-menu.active {
        display: flex;
    }

    /* --- DESKTOP ICONS --- */
    .social-icons.desktop-only {
        display: flex;
        gap: 35px;
        /* Desktop par icons ke beech ka space */
        align-items: center;
    }

    .social-icons i {
        font-size: 22px;
        color: #fff;
        cursor: pointer;
        transition: 0.3s;
    }

    /* Mobile socials default hide rahenge (desktop par) */
    .mobile-socials {
        display: none;
    }

    /* --- MOBILE VIEW (991px se niche) --- */
    @media (max-width: 991px) {

        /* 1. Desktop wale icons ko header se hide karo */
        .desktop-only {
            display: none !important;
        }

        /* 2. Menu Toggle Button ko dikhao */
        .menu-toggle {
            display: block;
        }

        /* 3. Navigation Menu Styling */
        .nav-menu {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #000;
            padding: 40px 0;
            gap: 25px;
            text-align: center;
            z-index: 1000;
            border-bottom: 2px solid #ffcc00;
        }

        .nav-menu.active {
            display: flex;
        }

        /* 4. Menu ke andar wale icons ko show karo */
        .mobile-socials {
            display: flex;
            justify-content: center;
            gap: 30px;
            /* Menu ke andar icons ke beech space */
            margin-top: 20px;
            border-top: 1px solid #333;
            padding-top: 20px;
        }

        .mobile-socials i {
            font-size: 24px;
            color: #ffcc00;
            /* Menu ke andar yellow icons ache lagenge */
        }
    }

}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem !important;
        /* Aur choti screen ke liye */
    }
}

.hero {
    width: 100%;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    /* image cut nahi hogi */
}

/* Mobile view */
@media (max-width: 768px) {
    .hero-img {
        max-height: 60vh;
        /* mobile me zyada lambi na ho */
        object-fit: contain;
    }
}



/* about */
/* SECTION */
.about-section {
    background: #000;
    /* padding: 120px 0; */
    color: #fff;
}

/* IMAGE */
.about-image {
    position: relative;
    max-width: 520px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
}

/* PLAY BUTTON */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: #f5c400;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
}

/* RIGHT CONTENT */
.content-wrapper {
    padding-left: 70px;
    max-width: 520px;
}

.about-tag {
    color: #f5c400;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-text {
    font-size: 15px;
    line-height: 1.8;
    color: #cfcfcf;
    margin-bottom: 30px;
}

/* LIST */
.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.about-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.about-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #f5c400;
}

/* PLAY NOW BUTTON */
.play-now-btn {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid #f5c400;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 40px;
    transition: 0.3s;
}

.play-now-btn:hover {
    background: #f5c400;
    color: #000;
}

/* MOBILE FIX */
@media (max-width: 991px) {
    .content-wrapper {
        padding-left: 0;
        margin-top: 40px;
    }

    .about-image {
        margin: auto;
    }
}


/* criket section css */
/* Background image area */
.top-stadium-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)),
        url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    border-bottom: 1px solid #222;
}

.custom-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Row (Bootstrap Row ki tarah) */
.stats-row {
    display: flex;
    flex-wrap: wrap;
    /* Isse cards wrap honge */
    margin: 0 -10px;
}

/* Column (col-md-3 logic: 100/4 = 25%) */
.stats-col {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 10px;
    /* Card ke beech ka margin gap */
}

/* Card Style */
.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    padding: 20px 40px;
    /* Slanted shape */
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    border-bottom: 2px solid #ffcc00;
}

/* Icon Silhouette */
.icon-wrap i {
    font-size: 50px;
    color: #000;
    margin-right: 15px;
    filter: drop-shadow(1px 1px 1px rgba(255, 255, 255, 0.2));
}

.stat-info h3 {
    margin: 0;
    color: #ffcc00;
    font-size: 1.5rem;
}

.stat-info p {
    margin: 0;
    color: #fff;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Main Heading Area */
.main-content {
    text-align: center;
    padding: 60px 20px;
    color: white;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 5px;
}

.gold-text {
    color: #ffcc00;
}

.brush-line {
    width: 200px;
    height: 4px;
    background: #ffcc00;
    margin: 15px auto 40px;
    box-shadow: 0px 0px 20px #ffcc00;
    border-radius: 50%;
}

/* --- Responsive View --- */

/* Tablet view (2 cards per row) */
@media (max-width: 992px) {
    .stats-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Mobile view (1 card per row) */
@media (max-width: 576px) {
    .stats-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .stat-card {
        clip-path: none;
        /* Mobile par seedha card readability badhata hai */
        border-radius: 8px;
    }
}


.intro-text {
    font-size: 20px;

}

/* why choose us card css */
/* Section Base */
.why-choose-us {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* Grid Row */
.cards-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

/* Column (33.33% for 3 cards) */
.card-col {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 15px;
}

/* Feature Card Styling */
.feature-card {
    background: #111;
    /* Dark grey background */
    border: 3px solid #ffcc00;
    /* Yellow/Gold border */
    border-radius: 20px;
    padding: 30px 25px;
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 0px 20px rgba(255, 204, 0, 0.3);
}

/* Card Header (Icon + Title) */
.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border: 4px solid #ffcc00;
    /* Border inside card */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.icon-circle i {
    font-size: 35px;
    color: #ffcc00;
}

.feature-card h3 {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.2;
    color: #fff;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* --- Responsive Adjustments --- */

/* Tablets (2 cards or full width) */
@media (max-width: 992px) {
    .card-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Mobile (Full width) */
@media (max-width: 600px) {
    .card-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .section-title {
        text-align: center;
    }
}

/* games section */
.games-section {
    background-color: #000;
    padding: 80px 20px;
    color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: bold;
}

/* Grid Logic */
.games-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.game-col {
    flex: 0 0 25%;
    /* 4 cards per row */
    max-width: 25%;
    padding: 10px;
}

/* Card Styling */
.game-card {
    background: transparent;
    cursor: pointer;
    transition: transform 0.3s ease;
    height: 100%;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    display: block;
    transition: 0.3s;
}

/* Hover par Card aur Image effect */
.game-card:hover {
    transform: translateY(-5px);
}

.game-card:hover img {
    filter: brightness(1.1);
}

/* --- DYNAMIC HOVER BACKGROUND --- */
.game-info {
    padding: 25px 15px;
    text-align: left;
    background-color: transparent;
    /* Default dark background */
    transition: all 0.3s ease;
    /* Smooth hover transition */
}

/* Jab bhi kisi card par mouse jaye, info box yellow ho jaye */
.game-card:hover .game-info {
    background-color: #ffcc00;
    /* Yellow background */
}

/* Hover par text black ho jaye taki yellow par saaf dikhe */
.game-card:hover .game-info h3,
.game-card:hover .game-info p {
    color: #000 !important;
    /* Black text on hover */
}

.game-info h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #fff;
}

.game-info p {
    color: #aaa;
    line-height: 1.4;
}

/* Badge Styling */
.badge-new {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #ffcc00;
    color: #000;
    padding: 4px 15px;
    font-weight: 900;
    font-size: 0.8rem;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}



/* Responsive View */
@media (max-width: 992px) {
    .game-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .game-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* betting site css  */

.trusted-exchange-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)),
        url('assets/img/stadium-dark.jpg');
    /* Stadium background */
    background-size: cover;
    background-position: center;

    text-align: center;
    overflow: hidden;
    /* Bahar nikalte logos ko chupane ke liye */
}

.section-heading {
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.gold-text {
    color: #ffcc00;
}

.brush-line-center {
    width: 150px;
    height: 4px;
    background: #ffcc00;
    margin: 0 auto 50px;
    border-radius: 50%;
    box-shadow: 0 0 15px #ffcc00;
}

/* Marquee Logic */
.logo-marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.05);
    /* Light transparent strip */
}

.logo-track {
    display: flex;
    width: calc(250px * 10);
    /* Total width of all logos */
    animation: scrollLogos 20s linear infinite;
    /* Animation name, speed, loop */
}

.logo-item {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}

.logo-item img {
    max-width: 100%;
    height: 80px;
    /* Logos ki height ek jaisi rakhein */
    object-fit: contain;
    filter: brightness(0.9);
    transition: 0.3s;
}

.logo-item img:hover {
    filter: brightness(1.2);
    transform: scale(1.1);
}

/* Keyframes for sliding effect */
@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 3));
    }

    /* Jitne original logos hain unki width tak slide karein */
}

/* Responsive */
@media (max-width: 768px) {
    .section-heading {
        font-size: 1.5rem;
    }

    .logo-item {
        width: 180px;
    }
}

/* faq section*/
.faq-section {
    background-color: #000;
    color: #fff;

}

.brush-top {
    margin-bottom: 20px;
}

.faq-heading {
    font-size: 1.8rem;

    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 30px;
}

.faq-intro-text p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Accordion Customization */
.accordion-item {
    background-color: transparent !important;
    border: none;
    border-bottom: 1px solid #333 !important;
    /* Bottom line like image */
    margin-bottom: 10px;
}

.accordion-button {
    background-color: transparent !important;
    color: #fff !important;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 20px 0;
    box-shadow: none !important;
}

/* Custom + Icon Logic */
.accordion-button::after {
    background-image: none !important;
    content: '+';
    font-size: 1.5rem;
    color: #fff;
    transform: none !important;
}

.accordion-button:not(.collapsed)::after {
    content: '-';
    color: #ffcc00;
}

.accordion-body {
    color: #aaa;
    padding: 0 0 20px 0;
    font-size: 0.95rem;
}

/* Tablet & Mobile adjustment */
@media (max-width: 991px) {
    .faq-heading {
        font-size: 1.5rem;
    }
}

/* footer */
.main-footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0 30px;
    border-top: 1px solid #222;
}

.footer-logo img {
    max-width: 250px;
    /* Adjust according to your logo size */
}

.disclaimer-text {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 400px;
}

.footer-title {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.yellow-dash {
    width: 40px;
    height: 3px;
    background-color: #ffcc00;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1.1rem;
}

.footer-links li a:hover {
    color: #ffcc00;
    padding-left: 5px;
}

/* Social Media Boxes */
.social-wrapper {
    display: flex;
    gap: 15px;
}

.social-box {
    width: 45px;
    height: 45px;
    background-color: #ffcc00;
    /* Yellow background */
    color: #000;
    /* Black icon */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    /* Slightly rounded corners */
    font-size: 1.2rem;
    transition: 0.3s;
    text-decoration: none;
}

.social-box:hover {
    transform: translateY(-5px);
    background-color: #fff;
}

.footer-divider {
    border-color: #333;
    margin: 40px 0 20px;
}

.copyright-text {
    color: #777;
    font-size: 0.9rem;
}

.gold-text {
    color: #ffcc00;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .main-footer {
        text-align: left;
    }

    .social-wrapper {
        justify-content: flex-start;
    }
}


/* blog section */
.blog-section {
    background-color: #000;
    color: #fff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-subtitle {
    color: #aaa;
    margin-bottom: 50px;
}

/* Blog Card Styling */
.blog-card {
    background: transparent;
    border: 1px solid #222;
    /* Light border for dark mode */
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.5s;
}

.blog-info {
    padding: 20px;
    background-color: transparent;
    /* Default state */
    transition: all 0.3s ease;
}

.blog-info h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffcc00;
    /* Default title color */
}

.blog-info p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 20px;
}

.read-more {
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
}

/* --- DYNAMIC HOVER EFFECT --- */
.blog-card:hover {
    transform: translateY(-10px);
    border-color: #ffcc00;
}

/* Info box turns Yellow on hover */
.blog-card:hover .blog-info {
    background-color: #ffcc00;
}

/* Text turns Black on hover */
.blog-card:hover .blog-info h3,
.blog-card:hover .blog-info p,
.blog-card:hover .read-more {
    color: #000 !important;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

/* Hide element if the viewport width is 600px or less */
@media screen and (max-width: 600px) {
    .hero {
        width: 100%;
        overflow: hidden;
        height: 161px;
    }
}


/* whastapp css*/
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px; /* Right mein chahiye to 'right: 40px' kar dein */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
}