:root {
  --bg: #090511;
  --bg-alt: #140a24;
  --card: rgba(15, 12, 28, 0.72);
  --card-border: rgba(255, 255, 255, 0.09);
  --text: #f7f4ff;
  --muted: #c7bedb;
  --accent: #ff4d6d;
  --accent-2: #ffb703;
  --accent-3: #6ef3ff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 77, 109, 0.22), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(110, 243, 255, 0.2), transparent 24%),
    linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 32px 20px;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.7;
}

.orb-left {
  width: 240px;
  height: 240px;
  background: rgba(255, 183, 3, 0.25);
  top: 8%;
  left: -50px;
}

.orb-right {
  width: 360px;
  height: 360px;
  background: rgba(255, 77, 109, 0.18);
  bottom: -80px;
  right: -60px;
}

.hero-card {
  position: relative;
  width: min(1100px, 100%);
  padding: 40px;
  border: 1px solid var(--card-border);
  border-radius: 32px;
  background: var(--card);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.panel-label,
.vip-copy {
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

h1 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 11vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
}

.countdown-panel,
.vip-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.countdown {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 6px;
}

.countdown span {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--accent-2);
}

.countdown small {
  font-size: 1rem;
  color: var(--muted);
}

.countdown-copy {
  max-width: 520px;
  margin: 14px 0 0;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
}

.join-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease, background 180ms ease;
}

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

.always-on {
  background: linear-gradient(135deg, var(--accent), #ff7b00);
  box-shadow: 0 20px 35px rgba(255, 77, 109, 0.3);
}

.featured {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.featured.unlocked {
  background: linear-gradient(135deg, var(--accent-3), #3ae374);
  color: #071017;
  box-shadow: 0 20px 35px rgba(110, 243, 255, 0.3);
}

.featured.locked {
  opacity: 0.65;
  pointer-events: none;
}

.vip-copy,
.panel-label {
  margin: 0;
  color: var(--muted);
}

.vip-copy {
  font-size: 0.82rem;
}

@media (max-width: 820px) {
  .hero-card {
    padding: 28px 20px;
  }

  .countdown-panel,
  .vip-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .join-button {
    width: 100%;
  }
}
