/* Font + Brand Variables */
:root {
  --black: #000000;
  --white: #ffffff;
  --yellow: #ffd400;
  --gray-light: #cccccc;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  background-color: var(--black);
  font-family: var(--font-body);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.background {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.blob {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 30% 30%, #4444ff, #1c1c80);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: float 7s ease-in-out infinite;
}

.blob1 {
  top: 15%;
  left: 10%;
}

.blob2 {
  bottom: 10%;
  right: 15%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px;
}

.content .tagline {
  font-size: 1.2rem;
  color: var(--gray-light);
  margin-bottom: 10px;
}

.content h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 30px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.countdown div {
  text-align: center;
  background: #1a1a1a;
  padding: 15px 25px;
  border-radius: 10px;
  min-width: 80px;
}

.countdown span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: var(--white);
}

.countdown small {
  font-size: 0.8rem;
  color: var(--gray-light);
}

@media (max-width: 600px) {
  .content h1 {
    font-size: 2.2rem;
  }
  .countdown {
    gap: 10px;
  }
  .countdown span {
    font-size: 1.5rem;
  }
}
