/* ===== BRAND COLORS ===== */
:root {
  --orange: #f37435;
  --green: #8aa73d;
  --black: #171a14;
  --white: #fff;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: "Inter", sans-serif;
  overflow: hidden;
}

body {
  background: url("/static/countdown/Bg.webp") center center / cover no-repeat
    fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ===== DARK OVERLAY ===== */
.bg-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(23, 26, 20, 0.2) 0%,
    rgba(23, 26, 20, 0.45) 100%
  );
  z-index: 0;
  pointer-events: none;
}

/* ===== MAIN CONTAINER ===== */
.container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 20px;
  width: 100%;
  max-width: 860px;
}

/* ===== BLUE GLASS EFFECT WRAPPER ===== */
.blue-effect {
  background: rgba(23, 26, 20, 0.22);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 48px 56px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  box-shadow:
    0 16px 56px rgba(23, 26, 20, 0.25),
    0 2px 12px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  animation: fadeSlideDown 0.7s ease-out;
  width: 100%;
  max-width: 780px;
}

/* ===== LOGO CARD ===== */
.logo-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 16px 36px;
  box-shadow:
    0 6px 28px rgba(0, 0, 0, 0.1),
    0 2px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

/* ===== LAUNCHING SOON BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 11px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(243, 116, 53, 0.35);
}

.badge-icon {
  display: flex;
  align-items: center;
}

.badge-icon svg {
  width: 18px;
  height: 18px;
}

/* ===== COUNTDOWN SECTION ===== */
.countdown-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.countdown-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 28px 32px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 130px;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.countdown-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.12),
    0 4px 10px rgba(0, 0, 0, 0.05);
}

.countdown-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  background: #f4f8ea;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  color: var(--green);
}

.countdown-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
}

.countdown-number {
  font-size: 40px;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  letter-spacing: -1px;
}

.countdown-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--black);
  text-transform: uppercase;
  opacity: 0.7;
}

.countdown-separator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  user-select: none;
}

.countdown-separator::before,
.countdown-separator::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

/* Hide the default colon text, we use dot pseudo-elements */
.countdown-separator {
  font-size: 0;
  color: transparent;
}

/* ===== TAGLINE ===== */
.tagline {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  letter-spacing: 0.4px;
  text-shadow: 0 2px 14px rgba(23, 26, 20, 0.4);
  margin-top: 4px;
}

/* ===== LEAF DECORATION ===== */
.leaf-decor {
  position: fixed;
  bottom: 24px;
  right: 28px;
  opacity: 0.7;
  animation: fadeIn 1.2s ease-out 0.8s both;
}

.leaf-decor svg path {
  fill: rgba(138, 167, 61, 0.3);
}

.leaf-decor svg line {
  stroke: rgba(138, 167, 61, 0.35);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.7;
  }
}
