/* ══════════════════════════════════════════
   KC-04 XV FLORAL INFERNO — COUNTDOWN
   Volcanic Glass Timer & Molten Flare Clock
   Khal Calloway Studio © 2026
   ══════════════════════════════════════════ */

#countdown-section {
  position: relative;
  background-color: var(--bg-obsidian);
  padding: 6rem 0;
  overflow: hidden;
  text-align: center;
}

.countdown-pre-title {
  font-family: var(--ff-label);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rose-blush);
  display: block;
  margin-bottom: 0.5rem;
}

.countdown-section-title {
  font-family: var(--ff-hero);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.volcanic-card {
  background: rgba(18, 5, 5, 0.9);
  border: 1px solid rgba(255, 179, 71, 0.45);
  box-shadow: 0 0 30px rgba(215, 38, 56, 0.2), inset 0 0 15px rgba(139, 0, 0, 0.4);
  border-radius: 8px;
  padding: 35px 25px;
  max-width: 450px;
  margin: 1.5rem auto;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

/* Subtle moving smoke overlay */
.volcanic-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../fotos/decor_texture_overlay.png');
  background-size: cover;
  background-position: center;
  mix-blend-mode: color-dodge;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
  animation: smokeMove 25s linear infinite alternate;
}

@keyframes smokeMove {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(3%, 3%); }
}

#countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative;
  z-index: 5;
}

.cdown-unit {
  text-align: center;
  position: relative;
}

.cdown-num {
  font-family: var(--ff-hero);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-kc);
  display: block;
  line-height: 1;
  text-shadow: 0 0 15px rgba(255, 179, 71, 0.55);
  animation: slowPulse 3.5s infinite ease-in-out alternate;
}

@keyframes slowPulse {
  0% {
    transform: scale(1);
    text-shadow: 0 0 10px rgba(255, 179, 71, 0.4);
  }
  100% {
    transform: scale(1.03);
    text-shadow: 0 0 20px rgba(255, 179, 71, 0.75);
    color: #ffca7a;
  }
}

.cdown-label {
  font-family: var(--ff-label);
  font-size: 0.48rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-top: 10px;
  display: block;
}

#countdown-event-label {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-champagne);
  margin-top: 1.5rem;
  opacity: 0.9;
  position: relative;
  z-index: 5;
}

/* Infernal gold crystal button inside countdown card */
.infernal-cal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, rgba(81, 0, 0, 0.5), rgba(42, 0, 0, 0.7));
  border: 1px solid rgba(255, 179, 71, 0.6);
  border-radius: 4px;
  color: var(--gold-kc);
  font-family: var(--ff-label);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(215, 38, 56, 0.25);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 5;
  margin-top: 1.8rem;
  outline: none;
}

.infernal-cal-btn:hover {
  background: var(--gold-kc);
  color: #050202;
  box-shadow: 0 0 25px rgba(255, 179, 71, 0.7), 0 0 10px rgba(215, 38, 56, 0.5);
  transform: translateY(-2px);
}

.infernal-cal-btn:active {
  transform: translateY(0);
}

/* Mobile 2x2 Grid Adaptation */
@media (max-width: 480px) {
  .volcanic-card {
    padding: 24px 16px;
    max-width: 320px;
    margin: 1.2rem auto;
  }
  #countdown-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 8px;
  }
  .cdown-num {
    font-size: 2.2rem;
  }
  #countdown-section {
    padding: 3rem 0;
  }
}
