/* Banaam countdown campaign — launch + maintenance */

.banaam-countdown-body {
    margin: 0;
    min-height: 100vh;
    background: #111;
    color: #f5f2eb;
    font-family: "Segoe UI", system-ui, sans-serif;
}

.banaam-countdown {
    position: relative;
    overflow: hidden;
    color: #f5f2eb;
}

.banaam-countdown--page {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
}

.banaam-countdown--section {
    min-height: clamp(320px, 58vh, 560px);
    display: flex;
    align-items: flex-end;
    margin: 0 0 2rem;
}

.banaam-countdown__media {
    position: absolute;
    inset: 0;
}

.banaam-countdown__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.04);
    animation: banaamCountdownKen 18s ease-in-out infinite alternate;
}

.banaam-countdown__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(12, 12, 12, 0.25) 0%, rgba(12, 12, 12, 0.15) 35%, rgba(12, 12, 12, 0.82) 100%),
        radial-gradient(ellipse at 20% 10%, rgba(196, 92, 38, 0.28), transparent 45%);
}

.banaam-countdown__inner {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    padding: clamp(1.5rem, 4vw, 3.5rem);
    animation: banaamCountdownRise 0.9s ease both;
}

.banaam-countdown__brand {
    margin: 0 0 0.65rem;
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.banaam-countdown__title {
    margin: 0 0 0.75rem;
    font-size: clamp(2rem, 5.5vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 700;
    max-width: 14ch;
}

.banaam-countdown__message {
    margin: 0 0 1.5rem;
    max-width: 36rem;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.55;
    color: rgba(245, 242, 235, 0.88);
}

.banaam-countdown__timer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.banaam-countdown__unit {
    min-width: 4.5rem;
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(245, 242, 235, 0.22);
    background: rgba(10, 10, 10, 0.35);
    backdrop-filter: blur(6px);
    text-align: center;
}

.banaam-countdown__value {
    display: block;
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.banaam-countdown__label {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(245, 242, 235, 0.7);
}

@keyframes banaamCountdownKen {
    from { transform: scale(1.02) translate3d(0, 0, 0); }
    to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}

@keyframes banaamCountdownRise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .banaam-countdown__img,
    .banaam-countdown__inner {
        animation: none;
    }
}
