@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg: #552577;
  --bg-2: #3a144f;
  --text: #ffffff;
  --accent: #ffbb3a;
  --accent-2: #38f2ff;
  --card: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

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

body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  background: radial-gradient(circle at top, #6a2aa0, var(--bg));
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(180deg, rgba(22, 7, 32, 0.85), rgba(22, 7, 32, 0.35));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 0;
  gap: 80px;
  position: relative;
}

.nav {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 80px;
  font-weight: 500;
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.logo-stack {
  display: grid;
  justify-items: center;
  gap: 10px;
  position: relative;
  padding-bottom: 10px;
}

.header-socials {
  margin: 0;
  position: absolute;
  top: auto;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.header-socials a {
  width: 30px;
  height: 30px;
  border-radius: 10px;
}

.header-socials svg {
  width: 14px;
  height: 14px;
}

.nav a {
  position: relative;
  padding-bottom: 6px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.logo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 4px 6px;
}

.logo img {
  height: 120px;
}

.nav-toggle {
  display: none;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  padding: 10px;
  border-radius: 12px;
  position: absolute;
  right: 0;
  top: 16px;
  z-index: 30;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.nav-panel {
  position: absolute;
  top: 72px;
  right: 0;
  background: rgba(28, 11, 42, 0.95);
  border: 1px solid var(--stroke);
  padding: 20px;
  border-radius: 16px;
  display: none;
  gap: 12px;
  min-width: 200px;
  z-index: 40;
}
.nav-panel.is-open {
  display: grid;
}

.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--accent-2);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 16px 0 18px;
}

.lead {
  font-size: 1.1rem;
  opacity: 0.85;
}

.cta-row {
  display: flex;
  gap: 16px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #1d0c24;
  box-shadow: var(--shadow);
}

.btn.ghost {
  border-color: var(--stroke);
  background: rgba(255, 255, 255, 0.05);
}

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

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.hero-badges span {
  background: var(--card);
  border: 1px solid var(--stroke);
  padding: 8px 14px;
  border-radius: 999px;
}

.hero-media {
  display: flex;
  justify-content: center;
}

.media-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(85, 37, 119, 0.4);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.media-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  padding: 20px;
  display: grid;
  gap: 4px;
  z-index: 2;
}

.countdown {
  padding: 40px 0 60px;
}

.countdown-inner {
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 32px;
  display: grid;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 18px;
}

.time-box {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
}

.time {
  font-size: 2rem;
  font-weight: 700;
}

.label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--accent-2);
}

.highlights {
  padding: 20px 0 80px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.highlight-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 24px;
  min-height: 200px;
}

.faq {
  padding: 40px 0 80px;
}

.faq-header {
  text-align: center;
  margin-bottom: 30px;
}

.faq-grid {
  display: grid;
  gap: 14px;
}

.faq details {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 16px 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  margin-top: 10px;
  opacity: 0.85;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0 0;
  background: rgba(15, 6, 25, 0.75);
}

.footer-inner {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0 30px;
  opacity: 0.7;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .header-grid {
    grid-template-columns: 1fr auto;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .nav-panel[hidden] {
    display: none;
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: 40px;
  }

  .countdown-inner {
    padding: 24px;
  }
}
