:root {
  --gold: #c8aa6e;
  --white: #ffffff;
  --soft-white: rgba(255, 255, 255, 0.78);
  --glass: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.18);
  --shadow: rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  color: var(--white);
  background: #050505;
}

.hero-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  transform: scale(1.03);
  animation: cinematicMove 18s ease-in-out infinite alternate;
}

.overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 35%),
    linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.78));
  z-index: -2;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.card {
  width: min(720px, 100%);
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid var(--border);
  border-radius: 34px;
  background: var(--glass);
  box-shadow: 0 30px 90px var(--shadow);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  animation: fadeUp 1.1s ease both;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: clamp(0.72rem, 1.8vw, 0.92rem);
  font-weight: 600;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(3rem, 9vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
  text-shadow: 0 18px 55px rgba(0,0,0,0.55);
}

.subtitle {
  max-width: 560px;
  margin: 0 auto 38px;
  color: var(--soft-white);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.7;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 38px;
}

.time-box {
  min-height: 104px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.07);
  display: grid;
  place-items: center;
  padding: 16px 8px;
}

.time-box span {
  display: block;
  font-size: clamp(1.65rem, 5vw, 2.55rem);
  font-weight: 700;
}

.time-box small {
  color: var(--soft-white);
  font-size: 0.78rem;
  margin-top: 4px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.socials a {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #101010;
  background: var(--white);
  text-decoration: none;
  font-size: 1.25rem;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.socials a:hover {
  transform: translateY(-7px);
  background: var(--gold);
  color: var(--white);
}

.email {
  color: var(--soft-white);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.3s ease;
}

.email:hover {
  color: var(--white);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cinematicMove {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.2%, -1.2%, 0);
  }
}

@media (max-width: 680px) {
  body {
    overflow-y: auto;
  }

  .hero {
    padding: 18px;
  }

  .card {
    border-radius: 26px;
  }

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

  .time-box {
    min-height: 88px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
