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

:root {
  --bg: #07111f;
  --card: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.16);
  --text: #ffffff;
  --muted: #b8c2d6;
  --gold: #d8aa45;
  --gold-light: #ffd979;
}

body {
  min-height: 100vh;
  font-family: 'Inter', Arial, sans-serif;
  background: radial-gradient(circle at top, #142847 0%, var(--bg) 55%, #02050a 100%);
  color: var(--text);
  overflow-x: hidden;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 18px;
  position: relative;
}

.background-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
}

.glow-one {
  top: 6%;
  left: 10%;
  background: #d8aa45;
}

.glow-two {
  bottom: 8%;
  right: 10%;
  background: #315dff;
}

.hero-card {
  width: 100%;
  max-width: 920px;
  padding: 44px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(22px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 1;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 70px;
}

.logo-mark {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #07111f;
  font-size: 30px;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(216, 170, 69, 0.32);
}

.brand h1 {
  font-size: 25px;
  letter-spacing: -0.03em;
}

.brand p {
  color: var(--muted);
  margin-top: 4px;
}

.hero-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.badge {
  display: inline-flex;
  padding: 8px 15px;
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(216, 170, 69, 0.13);
  border: 1px solid rgba(216, 170, 69, 0.28);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-content h2 {
  font-size: clamp(38px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  margin-bottom: 22px;
}

.subtitle {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 42px 0;
}

.time-box {
  padding: 24px 12px;
  text-align: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
}

.time-box strong {
  display: block;
  font-size: clamp(32px, 5vw, 54px);
  color: var(--gold-light);
  line-height: 1;
}

.time-box span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-box {
  text-align: center;
  padding-top: 10px;
}

.contact-box p {
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-box a {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: none;
}

footer {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 24px;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 720px) {
  .hero-card {
    padding: 28px 18px;
    border-radius: 24px;
  }

  .brand {
    margin-bottom: 46px;
  }

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

@media (max-width: 420px) {
  .countdown {
    gap: 10px;
  }

  .time-box {
    padding: 18px 8px;
  }
}
