:root {
    --primary: #087b6c;
    --primary-dark: #04594e;
    --secondary: #f6a800;
    --dark: #111827;
    --dark-2: #17202a;
    --light: #f5f7fa;
    --white: #ffffff;
    --muted: #64748b;
    --border: #e5e7eb;
    --success: #16a34a;
    --danger: #dc2626;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--light);
    color: var(--dark);
}

a {
    text-decoration: none;
}

.top-strip {
    background: #063f38;
    color: #fff;
    font-size: 13px;
    padding: 7px 0;
}

.main-header {
    background: linear-gradient(135deg, #9b5a00, #b87300);
    padding: 12px 0;
}

.logo {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
}

.logo span {
    color: #00c8ff;
    text-shadow: 2px 2px 0 #004c66;
}

.header-btn {
    border-radius: 4px;
    padding: 10px 20px;
    font-weight: 700;
}

.btn-register {
    background: var(--primary);
    color: #fff;
}

.btn-login {
    background: #fff;
    color: var(--dark);
}

.main-nav {
    background: #006b60;
}

.main-nav .nav-link {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 14px 13px !important;
}

.main-nav .nav-link:hover {
    background: #005349;
}

.hero {
    background:
        linear-gradient(90deg, rgba(0,0,0,.85), rgba(0,0,0,.35)),
        url('/assets/images/hero.jpg') center/cover no-repeat;
    min-height: 470px;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-content {
    max-width: 720px;
}

.hero h1 {
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 900;
    line-height: 1;
}

.hero h1 span {
    color: var(--secondary);
}

.hero p {
    font-size: 19px;
    line-height: 1.7;
    color: #e5e7eb;
}

.hero-buttons .btn {
    padding: 13px 28px;
    font-weight: 800;
    border-radius: 5px;
}

.section-title {
    font-weight: 900;
    margin-bottom: 8px;
}

.section-subtitle {
    color: var(--muted);
    max-width: 700px;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    height: 100%;
    transition: .3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #e6f7f4;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin-bottom: 18px;
}

.sport-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    min-height: 180px;
    background: #111;
    color: #fff;
}

.sport-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    opacity: .75;
    transition: .4s;
}

.sport-card:hover img {
    transform: scale(1.08);
    opacity: .55;
}

.sport-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,.9));
}

.sport-overlay h3 {
    margin: 0;
    font-weight: 800;
}

.info-section {
    background: #fff;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 20px;
}

.process-number {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    font-size: 20px;
}

.support-box {
    background: linear-gradient(135deg, #075f55, #0b8978);
    color: #fff;
    border-radius: 15px;
    padding: 45px;
}

.support-box .btn {
    background: #fff;
    color: var(--primary);
    font-weight: 800;
}

.faq .accordion-button {
    font-weight: 700;
}

.notice-box {
    background: #fff7df;
    border-left: 5px solid var(--secondary);
    padding: 20px;
}

.footer {
    background: #10201e;
    color: #b8c7c4;
}

.footer h5 {
    color: #fff;
    font-weight: 800;
}

.footer a {
    color: #b8c7c4;
    display: block;
    margin-bottom: 8px;
}

.footer a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 18px 0;
}

.floating-support {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
}

.floating-support a {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #20c997;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    box-shadow: 0 5px 20px rgba(0,0,0,.25);
}

@media(max-width:767px) {

    .logo {
        font-size: 25px;
    }

    .main-nav {
        max-height: 70vh;
        overflow-y: auto;
    }

    .hero {
        min-height: 520px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 16px;
    }

    .support-box {
        padding: 30px 20px;
    }
}



/* ======================================================
   POPULAR CRICKET SERIES
====================================================== */

.series-section {
    background: #f5f7fa;
    padding: 50px 0;
}

.series-title {
    margin-bottom: 25px;
}

.series-title h2 {
    font-size: 30px;
    font-weight: 900;
    color: #17202a;
    margin-bottom: 5px;
}

.series-title p {
    color: #64748b;
}


/* ======================================================
   SERIES CARD
====================================================== */

.series-card {
    position: relative;
    display: block;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;

    background-image: url('https://cricbet9999.com/uploads/images/2026/08/6a8d9cc6e034a.png');
    background-repeat: no-repeat;

    background-size: 600% 100%;

    border: 1px solid rgba(255,255,255,.2);

    box-shadow:
        0 8px 20px rgba(0,0,0,.15);

    transition: .35s ease;

    text-decoration: none;
}

.series-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 14px 30px rgba(0,0,0,.25);
}


/* ======================================================
   IMAGE POSITION
====================================================== */

/* 1 - IPL */

.series-ipl {
    background-position: 0% center;
}


/* 2 - T20 */

.series-t20 {
    background-position: 20% center;
}


/* 3 - ODI */

.series-odi {
    background-position: 40% center;
}


/* 4 - TEST */

.series-test {
    background-position: 60% center;
}


/* 5 - DOMESTIC */

.series-domestic {
    background-position: 80% center;
}


/* 6 - INTERNATIONAL */

.series-international {
    background-position: 100% center;
}


/* ======================================================
   DARK OVERLAY
====================================================== */

.series-card::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.85),
            rgba(0,0,0,.05) 65%
        );

    z-index: 1;
}


/* ======================================================
   CARD CONTENT
====================================================== */

.series-card-content {
    position: absolute;

    left: 18px;
    right: 18px;
    bottom: 16px;

    z-index: 2;

    color: #fff;
}

.series-card-content .badge {
    display: inline-block;

    background: #f6a800;
    color: #111;

    padding: 5px 9px;

    border-radius: 4px;

    font-size: 11px;
    font-weight: 900;

    margin-bottom: 7px;
}

.series-card-content h3 {
    margin: 0;

    font-size: 20px;
    font-weight: 900;

    text-shadow:
        0 2px 5px rgba(0,0,0,.8);
}

.series-card-content p {
    margin: 4px 0 0;

    font-size: 12px;

    color: #eee;
}


/* ======================================================
   MOBILE
====================================================== */

@media (max-width: 767px) {

    .series-section {
        padding: 35px 0;
    }

    .series-title h2 {
        font-size: 25px;
    }

    .series-card {
        height: 170px;
    }

    .series-card-content h3 {
        font-size: 17px;
    }

}


/* ======================================================
   BOTTOM CTA
====================================================== */

.bottom-cta {
    padding: 20px 0 55px;
    background: #f4f7f8;
}

.bottom-cta-box {
    position: relative;
    overflow: hidden;

    border-radius: 16px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(246, 168, 0, .18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #063f38 0%,
            #075f55 55%,
            #087b6c 100%
        );

    box-shadow:
        0 12px 35px rgba(0, 50, 45, .22);

    color: #fff;
}


/* Decorative circles */

.bottom-cta-box::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -70px;
    top: -100px;

    border: 2px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.bottom-cta-box::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -120px;
    top: -140px;

    border: 2px solid rgba(246,168,0,.08);
    border-radius: 50%;
}


.bottom-cta-content {
    position: relative;
    z-index: 2;

    padding: 38px 42px;
}


/* Small label */

.bottom-cta-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    background: #f6a800;
    color: #111;

    padding: 6px 11px;

    border-radius: 5px;

    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;

    margin-bottom: 12px;
}


/* Heading */

.bottom-cta h2 {
    margin: 0 0 8px;

    font-size: 32px;
    font-weight: 900;

    letter-spacing: -.5px;
}

.bottom-cta h2 span {
    color: #f6a800;
}


/* Description */

.bottom-cta p {
    margin: 0;

    max-width: 650px;

    color: #d8eeeb;

    font-size: 15px;
    line-height: 1.7;
}


/* Buttons */

.bottom-cta-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;

    gap: 10px;

    flex-wrap: wrap;
}

.bottom-cta-buttons .btn {
    min-width: 125px;

    padding: 12px 20px;

    border-radius: 6px;

    font-weight: 800;

    transition: .25s ease;
}


/* Register */

.btn-cta-register {
    background: #f6a800;
    color: #111;
    border: 2px solid #f6a800;
}

.btn-cta-register:hover {
    background: #ffbc20;
    border-color: #ffbc20;
    color: #111;

    transform: translateY(-2px);
}


/* Login */

.btn-cta-login {
    background: #fff;
    color: #075f55;
    border: 2px solid #fff;
}

.btn-cta-login:hover {
    background: #edf8f6;
    color: #075f55;

    transform: translateY(-2px);
}


/* WhatsApp */

.btn-cta-whatsapp {
    background: #20c997;
    color: #fff;
    border: 2px solid #20c997;
}

.btn-cta-whatsapp:hover {
    background: #25d9a4;
    border-color: #25d9a4;
    color: #fff;

    transform: translateY(-2px);
}


/* Mobile */

@media (max-width: 991px) {

    .bottom-cta-buttons {
        justify-content: flex-start;
        margin-top: 25px;
    }

}


@media (max-width: 767px) {

    .bottom-cta {
        padding: 10px 0 40px;
    }

    .bottom-cta-content {
        padding: 30px 22px;
    }

    .bottom-cta h2 {
        font-size: 26px;
    }

    .bottom-cta-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .bottom-cta-buttons .btn {
        width: 100%;
        min-width: 0;
    }

    .btn-cta-whatsapp {
        grid-column: 1 / -1;
    }

}