body {
  margin: 0;
  padding: 0;
  background-color: #0b2414;
  min-height: 100vh;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #ffffff;
  position: relative;
}

/* countdown timer styles */
.countdown-container {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 100;
}

.timer-display {
  display: flex;
  gap: 20px;
  justify-content: center;
  font-variant-numeric: tabular-nums;
}

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

.time-value {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.time-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 5px;
}

@media (max-width: 600px) {
  .countdown-container {
    top: 20px;
  }
  .timer-display {
    gap: 10px;
  }
  .time-value {
    font-size: 1.8rem;
  }
  .time-label {
    font-size: 0.6rem;
  }
}

/* logo wrapper */
.logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  padding: 20px;
}

.agave-logo {
  width: 250px;
  height: auto;
  display: block;
  overflow: visible;
}

/* default state */
.agave-logo .text-group .cls-3 {
  fill: #ffffff;
  transition: fill 0.3s ease;
}

.agave-logo .grid-group .cls-1 {
  stroke: rgba(255, 255, 255, 0.45);
  stroke-width: 0.8px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.agave-logo .segment {
  stroke: #ffffff;
  stroke-width: 2px;
  stroke-linecap: round;
  transition: stroke 0.3s ease, stroke-width 0.3s ease, filter 0.3s ease;
}

.logo-container:hover .text-group .cls-3 {
  fill: #e8e8e8;
}

.logo-container:hover .grid-group .cls-1 {
  stroke: rgba(255, 255, 255, 0.55);
}

/* spotlight */
.spotlight-active {
  stroke: #488470 !important; 
  stroke-width: 3.5px !important;
  filter: drop-shadow(0 0 12px rgba(72, 132, 112, 0.7)) !important;
}
