/* CSS Styles */
@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@400;600;700&display=swap");

:root {
  color-scheme: dark;
  --bg: #07111f;
  --panel: rgba(8, 16, 35, 0.82);
  --panel-strong: rgba(12, 24, 48, 0.92);
  --text: #f5f7ff;
  --muted: #b5c0de;
  --accent: #00f0ff;
  --accent-2: #9d00ff;
  --border: rgba(255, 255, 255, 0.14);
}

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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 240, 255, 0.28), transparent 30%),
    radial-gradient(circle at bottom right, rgba(157, 0, 255, 0.3), transparent 40%),
    linear-gradient(135deg, var(--bg), #0f1634 65%, #0a122c);
  font-family: "Exo 2", sans-serif;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

body::before {
  background: var(--accent);
  top: -6rem;
  left: -8rem;
}

body::after {
  background: var(--accent-2);
  right: -7rem;
  bottom: -5rem;
}

.page-shell {
  width: min(100%, 900px);
  position: relative;
  isolation: isolate;
  background: var(--panel);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: 32px;
  box-shadow: 0 30px 70px rgba(2, 8, 23, 0.45);
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 3rem);
}

.container {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.6rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 999px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.28rem;
  font-size: 0.78rem;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 10px 25px rgba(0, 240, 255, 0.16);
}

h2 {
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--muted);
}

.logo {
  width: 118px;
  height: 118px;
  margin: 0 auto 1.6rem;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 15px 35px rgba(78, 84, 200, 0.4);
  transform: rotate(45deg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.logo:hover {
  transform: rotate(45deg) scale(1.04);
  box-shadow: 0 20px 45px rgba(78, 84, 200, 0.5);
}

.logo-inner {
  transform: rotate(-45deg);
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.08em;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 1.3rem;
}

.feature-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.feature-list span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.9rem;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(80px, 1fr));
  gap: 0.75rem;
  margin: 1.4rem auto 0;
  max-width: 560px;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.95rem 0.5rem;
  border-radius: 16px;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.countdown-number {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.3rem;
  letter-spacing: 0.12em;
  text-shadow: 0 0 16px rgba(0, 240, 255, 0.25);
}

.countdown-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #04101b;
  box-shadow: 0 10px 24px rgba(0, 240, 255, 0.2);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.construction-icon {
  font-size: 3rem;
  margin: 0.4rem 0 0.8rem;
  display: inline-block;
  color: var(--accent);
  text-shadow: 0 0 18px rgba(0, 240, 255, 0.25);
  animation: pulse 1.6s infinite ease-in-out;
}

.footer {
  width: min(100%, 900px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  color: var(--muted);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.social-link:hover {
  color: var(--accent);
  transform: translateY(-2px);
  background: rgba(0, 240, 255, 0.12);
}

.social-link svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.floating-pixel {
  position: absolute;
  border-radius: 2px;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.8), rgba(157, 0, 255, 0.7));
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.35);
  opacity: 0;
  animation: float 10s infinite linear;
  z-index: 0;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08) rotate(8deg);
  }
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-105vh) rotate(360deg);
    opacity: 0;
  }
}

@media (max-width: 700px) {
  body {
    padding: 0.8rem;
  }

  .page-shell {
    border-radius: 24px;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }

  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .logo {
    width: 100px;
    height: 100px;
    border-radius: 24px;
  }

  .logo-inner {
    font-size: 1.5rem;
  }

  .countdown {
    grid-template-columns: 1fr 1fr;
  }

  .button {
    width: 100%;
  }
}
