:root {
  --primary: #ffffff;
  --accent: #e74c3c;
  --bg-dark: #0a0a0a;
  --text-muted: rgba(255, 255, 255, 0.7);
  --glass: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Background Animation */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&q=80&w=2000")
    center/cover no-repeat;
  opacity: 0.4;
  z-index: -2;
  filter: grayscale(100%);
  animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    var(--bg-dark) 80%
  );
  z-index: -1;
}

.container {
  max-width: 800px;
  width: 90%;
  text-align: center;
  z-index: 1;
  padding: 2rem;
  animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo Styles */
.logo {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.logo span {
  color: var(--accent);
  font-weight: 300;
}

/* Content Styles */
.coming-soon-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--accent);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
  }
}

.title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.description {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  font-weight: 300;
}

/* Countdown Styles */
.countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.countdown-item {
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 15px;
  min-width: 100px;
}

.countdown-item span {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.countdown-item label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.social-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.8rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: all 0.3s ease;
  background: var(--glass);
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-5px);
}

/* Footer */
.footer {
  position: fixed;
  bottom: 2rem;
  left: 0;
  width: 100%;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
  .countdown {
    gap: 1rem;
  }
  .countdown-item {
    min-width: 80px;
    padding: 1rem;
  }
  .title {
    font-size: 2.5rem;
  }
}
