:root {
  --bg-overlay: rgba(0,0,0,0.55);
  --accent: #1a73e8;
  --text: #f8f9fa;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: 'Product Sans', Arial, sans-serif;
  background: url('../images/background.jpg') center/cover no-repeat; 
  color: var(--text);
}

.bg {
  position: fixed;
  inset: 0;
  background: url('../images/background.jpg') center/cover no-repeat;  z-index: -2;
}

.overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-overlay);
  z-index: -1;
}

.container {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.countdown-box {
  background: rgba(255,255,255,0.5);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

.title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.countdown {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.time {
  background: rgba(255,255,255,0.15);
  padding: 1rem;
  border-radius: 8px;
  min-width: 80px;
  font-size: clamp(1.2rem, 3vw, 2rem);
color: #691f74;
}

.time span {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  color: #691f74;
}