@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

body {
  font-family: 'Orbitron', sans-serif;
  background: black;
  color: white;
  overflow: hidden;
  margin: 0;
  user-select: none;
}

#stars-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.content {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.headline-container { height: 5rem; }
.headline {
  font-weight: 700;
  font-size: clamp(2rem, 8vw, 5rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
}

/* Countdown */
.timer {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.glass-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 80px;
  min-height: 80px;
  padding: 1rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.number { font-size: 2rem; font-weight: 700; }
.label { font-size: 0.75rem; color: #aaa; margin-top: 0.25rem; letter-spacing: 0.08em; }

/* Notify */
.notify {
  display: flex;
  gap: 0.6rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.notify input {
  width: 220px;
  max-width: 60vw;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  color: white;
}
.button {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  cursor: pointer;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
 position: fixed;
 bottom: 20px;
 left: 50%;
 transform: translateX(-50%);
 text-align: center;
 
 /* --- FIX --- */
 /* Ensure the footer is on top of all other elements */
 z-index: 99; 
 /* Ensure it's wide enough to respond to clicks */
 width: 100%; 
 /* Apply pointer-events to itself */
 pointer-events: auto; 
}
.follow-text { 
 color: #aaa; 
 font-size: 0.7rem; 
 letter-spacing: 0.18em; 
}
.icons { 
 display: flex; 
 gap: 1rem; 
 justify-content: center; 
 margin-top: 0.3rem; 
}
.icons a { 
 display: inline-flex; 
 cursor: pointer; 
 transition: transform 0.2s ease, color 0.2s ease; 
 /* Ensure links inside the footer receive pointer events */
 pointer-events: auto; 
}
.icons a:hover { 
 color: #60a5fa; 
 transform: scale(1.1); 
}
.divider { 
 width: 2px; 
 height: 24px; 
 background: #666; 
 border-radius: 2px; 
}

/* Icon size fix */
.icon { width: 28px; height: 28px; }

/* Mobile optimization */
@media (max-width: 600px) {
  .headline { font-size: clamp(1.8rem, 7vw, 3rem); letter-spacing: 0.1em; }
  .glass-container { min-width: 65px; min-height: 65px; padding: 0.7rem; }
  .number { font-size: 1.5rem; }
}
