html,
body {
    overflow-x: hidden;
    /* allow normal vertical scroll */
    margin: 0;
    padding: 0;
}

/* Navbar Gradient */
.navbar-custom {
    background: linear-gradient(90deg, #8a210c, #de140a);
    padding: 1rem 2rem !important; /* vertical aur horizontal padding badha di */
}

/* Navbar Links */
.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 8px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.dropdown-menu a:hover {
    color: #ffd700 !important;
}

/* Buttons */
.btn-login {
    background: hwb(346 1% 89%);
    color: #fff !important;
    font-weight: 600;
    border-radius: 30px;
    padding: 12px 28px; /* 👈 button height aur width dono badh gayi */
    margin-right: 8px;
    font-size: 1.05rem; /* 👈 text thoda bada */
    transition: 0.3s;
    cursor: pointer;
}

.btn-login:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    /* white glow */
    transform: scale(1.05);
    /* zoom */
    color: #fff;
}

.overlay-col h3 {
    color: #fff;
}

.btn-register {
    background: hwb(346 1% 89%);
    color: #fff !important;
    font-weight: 600;
    border-radius: 30px;
    padding: 12px 28px; /* 👈 button height aur width dono badh gayi */
    margin-right: 8px;
    font-size: 1.05rem; /* 👈 text thoda bada */
    transition: 0.3s;
    cursor: pointer;
}

.btn-register:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    /* white glow */
    transform: scale(1.05);
    /* zoom */
    color: #fff;
}

/* Logo */
.navbar-brand img {
    height: 40px;
}

/* Fade Slider */
.fade-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.fade-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.fade-slide.active {
    opacity: 1;
}

.fade-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

/* Slide Content */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
}

.slide-content p {
    font-size: 1.2rem;
    margin: 15px 0;
    color: #f1f1f1;
}
.fade-slider {
    position: relative;
    height: 100vh;
    /* Full screen */
    width: 100%;
    overflow: hidden;
}

.fade-slider .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 👈 maintain aspect ratio & cover */
    object-position: center;
    /* 👈 keep center focus */
    z-index: 0;
}

.fade-slider .slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 15px;
    /* padding for small screens */
}

.fade-slider::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* dark overlay */
    z-index: 1;
}
@media (max-width: 768px) {
    .fade-slider {
        height: 60vh;
        /* reduce height for mobiles */
    }

    .fade-slider .slide-content h1 {
        font-size: 1.8rem;
        /* smaller text */
    }

    .fade-slider .slide-content p {
        font-size: 1rem;
    }
}
.btn-slider {
    background: linear-gradient(45deg, #ff1a1a, #b30000);
    color: #fff;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-slider:hover {
    background: #ffc107;
    color: #fff;
}

/* Stats Section Styling */
.stats-section {
    background: linear-gradient(90deg, #000000, #0c0100);
    color: #fff;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.stat-card .icon {
    font-size: 40px;
    color: #ffd700;
    /* gold accent */
    margin-bottom: 15px;
}

.stat-card .num {
    font-size: 32px;
    font-weight: bold;
    color: #ff8c42;
    /* orange accent */
}

.stat-card h6 {
    margin-top: 10px;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ddd;
}

.about-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    /* main theme color */
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.btn-custom {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    border-radius: 30px;
    background: linear-gradient(45deg, #2e3f6e, #465a9f);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-custom:hover {
    background: linear-gradient(45deg, #465a9f, #2e3f6e);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.get-involved {
    background: linear-gradient(
        135deg,
        rgb(17 0 0),
        rgb(22 4 1) 30%,
        rgb(0 0 0) 70%,
        rgb(3 1 0)
    );

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6); /* shadow around */
}

.get-involved h2 {
    font-weight: 700;
    font-size: 35px;
}
h2,
h3 {
    font-size: 35px !important;
}
.btn-theme {
    background: linear-gradient(45deg, #ff8c42, #ffd700);
    color: #222;
    border-radius: 30px;
    font-weight: 600;
    padding: 8px 25px;
    transition: 0.3s;
}

.btn-theme:hover {
    background: linear-gradient(45deg, #ffd700, #ff8c42);
    color: #000;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.involved-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.involved-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.involved-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.involved-card .card-body {
    padding: 20px;
}

.involved-card h5 {
    font-weight: 700;
    color: #2e3f6e;
    margin-bottom: 10px;
}

.involved-card p {
    color: #555;
}

/* Navigation Buttons */
.listing-carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: linear-gradient(180deg, #ff2a2a, rgba(255, 42, 42, 0));
    color: #fff;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 20px;
}

.listing-carousel-button-prev {
    left: -40px;
}

.listing-carousel-button-next {
    right: -40px;
}

/* Image Style */
.testi-item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
    /* No rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    transition: transform 0.3s ease;
}

.testi-item img:hover {
    transform: scale(1.05);
}

/* Force flex gap between slides */
#athletesGlide .glide__slides {
    display: flex;
    gap: 40px;
    /* spacing between slides */
}
.athlete-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
}

.athlete-card p {
    font-size: 0.9rem;
    color: #666;
    /* subtle grey */
}
#athletesGlide .glide__slide {
    flex-shrink: 0;
    /* prevent squishing */
}
/* lete Athcard */
.athlete-card {
    width: 200px;
    /* increase card width */
    margin: 0 auto;
    /* center card */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.athlete-card img {
    display: block;
    width: 100%;
    height: 220px;
    /* make image taller */
    object-fit: cover;
    /* crop nicely */
}

.athlete-card:hover {
    transform: scale(1.05);
}

/* Adjust slide padding (reduce gap) */
.glide__slide {
    padding: 0 6px;
    /* tighten space between slides */
}

/* Default slides (small + faded) */
#sec5 .swiper-slide {
    transition: transform 0.6s ease, opacity 0.6s ease;
    transform: scale(0.8);
    opacity: 0.5;
}

#sec5 .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    z-index: 3;
}

#sec5 .swiper-slide img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* Title (Battle name) */
#sec5 .battle-title {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: linear-gradient(45deg, #ff1a1a, #b30000);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 6px 14px;
    border-radius: 6px;
    z-index: 10;
}
.news-card img {
    height: 220px;
    object-fit: cover;
}

.news-card .btn:hover {
    background-color: #1f2a4d;
}

.auth-modal {
    border: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* Gradient header matches your theme (#2e3f6e → #24c6dc → #5433ff) */
.auth-header {
    background: linear-gradient(90deg, #8a210c, #de140a);
    color: #fff;
    padding: 18px 18px 0 18px;
}

.auth-header i {
    font-size: 20px;
}

.auth-header h5 {
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #fff;
}

/* Tabs */
.auth-tabs {
    display: flex;
    gap: 8px;
    padding: 12px 0 0 0;
}

.auth-tab {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 0;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.25s;
}

.auth-tab.active,
.auth-tab:hover {
    background: #ffd700;
    color: #2e3f6e;
}

/* Inputs with icons */
.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.input-with-icon .form-control {
    padding-left: 40px;
    height: 46px;
    border-radius: 10px;
}

.input-with-icon .form-control:focus {
    border-color: #2e3f6e;
    box-shadow: 0 0 0 0.2rem rgba(46, 63, 110, 0.15);
}

/* Theme button */
.btn-theme {
    background: #2e3f6e;
    border: 0;
    color: #fff;
    font-weight: 700;
    height: 46px;
    border-radius: 12px;
    transition: 0.2s;
}

.btn-theme:hover {
    filter: brightness(1.05);
}

.link-forgot,
.link-switch {
    color: #2e3f6e;
    text-decoration: none;
}

.link-forgot:hover,
.link-switch:hover {
    text-decoration: underline;
}

/* === FULLSCREEN OVERLAY NAV === */
/* CLOSED state */
.overlay-nav {
    position: fixed;
    inset: 0;
    background: #000;
    color: #fff;
    z-index: 1055;
    width: 100%;

    height: 0;
    opacity: 0;
    overflow: hidden;
    /* hide when closed */
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, height 0.25s ease;
}

#overlayNav {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

#overlayNav.open {
    opacity: 1;
    transform: translateY(0);
    height: 100dvh;
}

/* keep height fixed while open */

/* OPEN state */
.overlay-nav.open {
    height: 100dvh;
    /* full device viewport height */
    opacity: 1;
    transform: translateY(0);

    overflow-y: auto;
    /* ✅ allow scrolling */
    -webkit-overflow-scrolling: touch;
    /* ✅ smooth iOS scrolling */
}

.overlay-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.overlay-close {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 34px;
    line-height: 1;
    color: #fff;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.overlay-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 24px 32px;
}

@media (min-width: 768px) {
    .overlay-content {
        grid-template-columns: 1fr 1fr 1fr;
        padding: 100px 48px 40px;
    }
}

.overlay-col h3 {
    font-size: 42px;
    text-transform: uppercase;
    font-weight: 800;
    margin: 0 0 18px;
    letter-spacing: 0.5px;
}

.overlay-links a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    margin: 9px 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.overlay-links a:hover {
    color: #ff2a2a;
    transform: translateX(2px);
}

/* Thin red glow line on the right (optional) */
.overlay-nav::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    background: linear-gradient(180deg, #ff2a2a, rgba(255, 42, 42, 0));
    filter: drop-shadow(0 0 18px #ff2a2a);
}

/* prevent page scroll when overlay open */
body.no-scroll {
    overflow: hidden;
    height: 100%;
    /* lock body */
}

.logo-section {
    background: linear-gradient(9deg, #e7e7e7e3, #332a2a);
    height: 54px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 3px;
}

.logo-wrapper img {
    max-height: 60px;
    /* makes logo smaller */
    width: auto;
    transition: transform 0.3s ease;
}

.logo-wrapper img:hover {
    transform: scale(1.05);
    /* small zoom effect on hover */
}

/* keep toggler clean on your custom navbar */
.navbar-custom .navbar-toggler {
    border: 0;
    box-shadow: none !important;
    padding: 0.25rem 0.5rem;
}

/* make sure centered brand sits nicely */
.navbar-custom .navbar-brand img {
    display: block;
    height: 48px;
    /* adjust if needed */
}

/* optional: tighten buttons on small screens */
@media (max-width: 576px) {
    .navbar-custom .btn-login,
    .navbar-custom .btn-register {
        padding: 0.3rem 0.6rem;
        font-size: 0.875rem;
    }
    .logo-section {
        display: none;
    }
}

/* Default (desktop): logo centered */
#navBrand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* On mobile/tablet: logo left-aligned */
@media (max-width: 991px) {
    #navBrand {
        position: static;
        transform: none;
        margin-right: auto;
        /* push it to the left */
    }
}

/* Base button style */
.btn-visit,
.btn-exhibit {
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

/* Visit button (outline white, hover glow) */
.btn-visit {
    color: #fff;
    border: 2px solid #fff;
    background: transparent;
}

.btn-visit:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
    transform: scale(1.05);
}

/* Exhibit button (red theme, hover neon glow) */
.btn-exhibit {
    background: linear-gradient(45deg, #ff1a1a, #b30000);
    color: #fff;
    border: none;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.btn-exhibit:hover {
    background: linear-gradient(45deg, #ff3333, #cc0000);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
    transform: scale(1.05);
}
.btn-visit.active {
    background: #fff;
    color: #000;
}

.btn-exhibit.active {
    background: linear-gradient(45deg, #ff3333, #cc0000);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
    color: #fff;
}
.involved-card .btns {
    border-radius: 50px;
    font-weight: 600;
    padding: 6px 20px;
    background: linear-gradient(45deg, #ff1a1a, #b30000);
    border: none;
    transition: all 0.3s ease;
    color: #fff;
    width: fit-content;
    margin: 0 auto; /* centers button inside card */
    display: block; /* ensure margin works */
}

.involved-card .btns:hover {
    background: linear-gradient(45deg, #ff3333, #cc0000);
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.7);
    transform: scale(1.05);
}

/* League Section Buttons */
.league-card .btn {
    display: block;
    width: 160px;
    /* fixed width (you can adjust 140–200px) */
    margin: 0 auto;
    /* center horizontally */
    border-radius: 50px;
    font-weight: 600;
    padding: 8px 20px;
    background: linear-gradient(45deg, #ff1a1a, #b30000);
    border: none;
    color: #fff;
    transition: all 0.3s ease;
    text-align: center;
}

.league-image {
    width: 100%;
    /* height: 250px;*/
    /* fixed height for all images */
    object-fit: cover;
    /* crop and center */
    border-radius: 8px;
    /* optional rounded edges */
}
/* League Card Image wrapper */
.league-card .league-img {
    overflow: hidden;
    /* image bahar na nikle */
    border-radius: 12px;
    /* same rounded edges */
}

/* Image default state */
.league-card .league-img img {
    transition: transform 0.5s ease;
    width: 100%;
    display: block;
    border-radius: 12px;
}

/* On hover → zoom */
.league-card:hover .league-img img {
    transform: scale(1.1);
    /* thoda bada */
}

.league-link {
    text-decoration: none;
    color: #000;
    /* default black */
    transition: color 0.3s ease;
}

.league-link:hover {
    color: #b30000;
    /* your theme deep red */
}

.league-card .btn:hover {
    background: linear-gradient(45deg, #ff3333, #cc0000);
    /* brighter red */
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.6);
    transform: scale(1.05);
    color: #fff;
}

/* Common Theme Button */
.btn-theme {
    display: inline-block;
    min-width: 160px;
    /* fixed minimum width */
    margin: 0 auto;
    /* centers inside flex/blocks */
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 24px;
    background: linear-gradient(45deg, #ff1a1a, #b30000);
    /* red gradient */
    border: none;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover Effect */
.btn-theme:hover {
    background: linear-gradient(45deg, #ff3333, #cc0000);
    /* brighter red */
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
    transform: scale(1.05);
    color: #fff;
}
.master-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.master-card img {
    width: 100%;
    height: 280px;
    /* fixed height so all same */
    object-fit: cover;
    border-radius: 16px;
}

.master-title {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 60%;
    /* 👈 label half width */
    background: #fff;
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 10px 15px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    text-decoration: none;
}

.sport-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.sport-card:hover {
    transform: scale(1.05);
}

.sport-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.filter-bar {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.inner-banner {
    position: relative;
    height: 320px;
    /* banner height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    /* black opacity */
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h1 {
    font-size: 2.2rem;
    text-transform: uppercase;
    color: #fff;
}

.breadcrumb {
    background: transparent;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #ffcccc;
    /* active breadcrumb color */
}

.user-menu .dropdown-menu {
    min-width: 240px;
}
.user-menu:hover .dropdown-menu {
    display: block;
} /* hover open (optional) */

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
    display: grid;
    place-items: center;
    font-weight: 700;
    text-transform: uppercase;
}
.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-top {
    background: #fff;
    border-radius: 8px;
    padding: 18px;
    border: 1px solid #eee;
}

.profile-card {
    background: #fff;
    border-radius: 8px;
    padding: 18px;
    border: 1px solid #eee;
}

.badge-role {
    background: #222;
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
}

.meta-key {
    color: #7a7a7a;
    font-weight: 600;
    font-size: 0.95rem;
}

.meta-val {
    color: #222;
    font-weight: 700;
}

.doc-pill {
    background: #fafafa;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
    min-width: 150px;
    text-align: center;
}

.game-badge {
    float: right;
    background: #f0f0f0;
    color: #444;
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 12px;
}

@media (max-width: 767px) {
    .game-badge {
        float: none;
        display: inline-block;
        margin-top: 8px;
    }
}

.countdown-section {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.95),
        rgba(250, 250, 250, 0.95)
    );
}
#countdown {
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.countdown-box {
    min-width: 110px;
    padding: 18px 14px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(46, 63, 110, 0.06);
    text-align: center;
}
.count-value {
    font-size: 28px;
    font-weight: 800;
    color: #2e3f6e;
}
.count-label {
    font-size: 13px;
    color: #6c757d;
    margin-top: 6px;
}
@media (max-width: 576px) {
    .countdown-box {
        min-width: 90px;
        padding: 12px 8px;
    }
    .count-value {
        font-size: 20px;
    }
}
