/* ==========================================================================
   Monochrome Dark & Moody Design System
   ========================================================================== */
:root {
  --bg-black: #050505;
  --bg-card: rgba(18, 18, 20, 0.7);
  --bg-card-border: rgba(255, 255, 255, 0.08);
  
  --text-primary: #ffffff;
  --text-quote: #d4d4d8;
  --text-muted: #52525b;

  --font-quote: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-timer: 'Cormorant Garamond', Georgia, serif;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  background-color: var(--bg-black);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
  user-select: none;
}

/* ==========================================================================
   Dark Ambient Background (Monochrome Only)
   ========================================================================== */
.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: 
    radial-gradient(circle at 50% 50%, rgba(30, 30, 35, 0.4) 0%, transparent 70%),
    radial-gradient(circle at 20% 20%, rgba(20, 20, 22, 0.6) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

#ambientCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.4;
}

.vignette {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, transparent 20%, rgba(0, 0, 0, 0.95) 90%);
  z-index: 3;
  pointer-events: none;
}

/* ==========================================================================
   Main Layout & Centered Quote
   ========================================================================== */
.container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 900px;
  padding: 2.5rem 1.5rem;
  margin: 0 auto;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.8rem;
}

/* Main Text Quote - Serif Font */
.main-quote {
  font-family: var(--font-quote);
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-quote);
  max-width: 720px;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9);
}

/* ==========================================================================
   Countdown Timer (Slightly Refined & Compact on Fullscreen)
   ========================================================================== */
.countdown-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  width: 100%;
  pointer-events: none; /* Prevents any interaction */
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  pointer-events: none; /* Strictly no hover or click state */
}

.number {
  font-family: var(--font-timer);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.colon {
  font-family: var(--font-timer);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  color: #3f3f46;
  margin-top: -0.3rem;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .content-wrapper {
    gap: 1.5rem;
  }

  .countdown-container {
    gap: 0.5rem;
  }

  .card-wrapper {
    min-width: 75px;
    padding: 1rem 0.6rem;
    border-radius: 12px;
  }

  .number {
    font-size: 2.75rem;
  }

  .colon {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .main-quote {
    font-size: 1.35rem;
  }

  .card-wrapper {
    min-width: 65px;
    padding: 0.75rem 0.4rem;
  }

  .number {
    font-size: 2.25rem;
  }

  .colon {
    font-size: 1.5rem;
  }
}
