:root {
  /* Kelevan Navy Blue and accents */
  --bg-color: #040f1a;
  --text-color: #ffffff;
  --accent-blue: #092a4a;
  --accent-light: #2b67a3;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --blob-1: rgba(9, 42, 74, 0.8);
  --blob-2: rgba(43, 103, 163, 0.6);
  --blob-3: rgba(0, 16, 32, 0.9);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* Animated Mesh Background */
.bg-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  background-color: var(--bg-color);
}

.blob {
  position: absolute;
  filter: blur(100px);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out alternate;
  opacity: 0.8;
}

.blob-1 {
  width: 60vw;
  height: 60vw;
  background: var(--blob-1);
  top: -20%;
  left: -10%;
  animation-delay: 0s;
}

.blob-2 {
  width: 50vw;
  height: 50vw;
  background: var(--blob-2);
  bottom: -10%;
  right: -10%;
  animation-delay: -5s;
}

.blob-3 {
  width: 40vw;
  height: 40vw;
  background: var(--blob-3);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* Main Container - Glassmorphism */
.container {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 900px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  opacity: 0; /* Handled by GSAP */
}

/* Logo */
.logo-wrapper {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.logo {
  max-width: 250px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  /* Add subtle drop shadow to logo */
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}

/* Typography */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff, #a0c4e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}

/* Countdown */
.countdown-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  border-radius: 16px;
  min-width: 120px;
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.number {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.separator {
  font-size: 3rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  animation: pulse 2s infinite;
  margin-bottom: 2rem;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Responsive */
@media (max-width: 768px) {
  .countdown-wrapper {
    gap: 0.5rem;
  }
  
  .time-block {
    min-width: 80px;
    padding: 1rem;
  }
  
  .number {
    font-size: 2rem;
  }
  
  .separator {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .title {
    font-size: 2.2rem;
  }
}
