:root {
  --bg: #0b0f1a;
  --card: #0f172a;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --brand: #22d3ee;
  --brand-2: #a78bfa;
  --accent: #34d399;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* seamless gradient bg (fixed layer + subtle noise to avoid banding) */
body::before {
  content: "";
  position: fixed;
  inset: -15% -10% -10% -10%;
  z-index: -1;
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(34,211,238,.12), transparent 70%),
    radial-gradient(1000px 700px at -10% 10%, rgba(167,139,250,.12), transparent 70%),
    linear-gradient(180deg, #0b0f1a 0%, #0f172a 100%);
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='128' height='128'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='128' height='128' filter='url(%23n)' /%3E%3C/svg%3E");
  background-size: 256px 256px;
  pointer-events: none;
}
a { color: inherit; text-decoration: none; }
.container { max-width: 1060px; padding: 24px; margin: 0 auto; }

/* hero */
.hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 36px; align-items: center; padding: 48px 0 20px; }
.badge { display:inline-flex; align-items: center; gap:10px; color: var(--muted); font-size: 14px; letter-spacing: .02em; }
.badge .dot { width:8px; height:8px; border-radius:50%; background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow:0 0 16px rgba(34,211,238,.6); }
h1 { margin: 10px 0 14px; font-size: clamp(30px, 4vw, 48px); line-height: 1.1; }
.subtitle { color: var(--muted); font-size: 16px; }

.hero-card { position: relative; overflow: hidden; border-radius: 20px; background: linear-gradient(180deg, rgba(30,41,59,.7), rgba(15,23,42,.7)); border: 1px solid rgba(148,163,184,.15); box-shadow: 0 20px 60px rgba(0,0,0,.35); }
.hero-media { aspect-ratio: 1/1; width: 100%; object-fit: cover; display:block; filter: saturate(1.05) contrast(1.02); }
.hero-glow { position:absolute; inset:auto 0 0 0; height: 40%; background: radial-gradient(50% 80% at 50% 0%, rgba(34,211,238,.18), transparent 70%); filter: blur(20px); pointer-events: none; }

.panel { background: rgba(2,6,23,.35); border: 1px solid rgba(148,163,184,.12); border-radius: 16px; padding: 20px 18px 20px 30px; display:flex; gap:16px; align-items:center; }
.panel .col { flex:1; min-width:0; }
.panel .col:first-child { padding-left: 14px; }
.meta { display:flex; flex-wrap:wrap; gap:10px 18px; color: var(--muted); font-size:14px; }
.meta b { color: var(--text); }

/* CTA */
.cta { display:flex; flex-wrap: wrap; gap:12px; }
.btn { position: relative; border: 0; cursor: pointer; padding: 14px 18px; border-radius: 999px; font-weight: 700; letter-spacing:.02em; transition: transform .15s ease, filter .2s ease, box-shadow .2s ease; }
.btn:active { transform: translateY(1px); }
.btn-primary { color:#0b0f1a; background: linear-gradient(135deg, var(--brand), var(--accent)); box-shadow: 0 10px 30px rgba(34,211,238,.35); }
.btn-secondary { color: var(--text); background: linear-gradient(135deg, rgba(2,6,23,.6), rgba(2,6,23,.2)); border:1px solid rgba(148,163,184,.18); }

/* countdown */
.countdown { display:flex; gap:10px; font-variant-numeric: tabular-nums; }
.cd-box { background: rgba(2,6,23,.45); border:1px solid rgba(148,163,184,.16); border-radius:12px; padding:10px 12px; text-align:center; min-width:64px; }
.cd-box b { font-size:20px; display:block; }
.cd-label { color: var(--muted); font-size:12px; }

/* ticker */
.ticker { overflow: hidden; border:1px solid rgba(148,163,184,.12); background: rgba(2,6,23,.35); border-radius:12px; }
.ticker-track { display:flex; width: max-content; gap: 50px; align-items:center; animation: ticker-scroll 22s linear infinite; }
.ticker-segment { display:flex; align-items:center; gap: 24px; padding: 10px 24px; white-space: nowrap; color: var(--muted); font-weight: 600; letter-spacing: .02em; }
.ticker-item { color: var(--text); }
.ticker .sep { color: var(--brand-2); opacity: .8; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* reasons (why go) */
.reasons { list-style: none; padding: 14px 18px 14px 16px; margin: 12px 0 0; background: rgba(2,6,23,.35); border:1px solid rgba(148,163,184,.12); border-radius:12px; }
.reasons li { display:flex; gap:10px; align-items:flex-start; padding:8px 6px; }
.reasons li::before { content:"✓"; color: var(--accent); font-weight: 700; margin-top:1px; }

/* stats */
.stats { display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; }
.stat { text-align:center; padding:16px 12px; background: rgba(2,6,23,.35); border:1px solid rgba(148,163,184,.12); border-radius:12px; }
.stat b { display:block; font-size:22px; }
.stat span { color: var(--muted); font-size:13px; }

/* notice */
.notice { background: rgba(2,6,23,.35); border:1px solid rgba(148,163,184,.12); border-left: 3px solid var(--brand-2); border-radius:12px; padding:14px 16px; color: var(--muted); }

/* gallery */
.section { padding: 28px 0; }
.grid-2 { display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
.card { overflow:hidden; border-radius:16px; border:1px solid rgba(148,163,184,.12); background: rgba(2,6,23,.35); aspect-ratio: 1 / 1; }
.card > img { width:100%; height:100%; object-fit: cover; display:block; transform: scale(1.15); transition: transform .5s ease; }
.card:hover > img { transform: scale(1.22); }

/* media */
.video-grid { display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
.video { position:relative; padding-top:56.25%; border-radius:16px; overflow:hidden; background:#000; border:1px solid rgba(148,163,184,.12); }
.video iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }
.video-thumb { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; transition: transform .35s ease; }
.video:hover .video-thumb { transform: scale(1.05); }
.play { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:64px; height:64px; border-radius:999px; border:4px solid currentColor; color:#e5e7eb; }
.play::after { content:""; position:absolute; left:26px; top:20px; border-left:22px solid currentColor; border-top:14px solid transparent; border-bottom:14px solid transparent; }

/* music */
.music-embed { border: 1px solid rgba(148,163,184,.12); border-radius:16px; overflow:hidden; width:100%; height: 450px; background: rgba(2,6,23,.35); }

/* footer */
.footer { color: var(--muted); font-size: 13px; padding: 20px 0 42px; }

/* responsive */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 20px; padding-top: 28px; }
  .video-grid, .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}
/* extra small screens */
@media (max-width: 560px) {
  .panel { flex-direction: column; padding: 16px 14px; }
  .panel .col:first-child { padding-left: 0; }
  .countdown { flex-wrap: wrap; gap: 8px; }
  .cd-box { min-width: 56px; flex: 1 1 56px; }
  .cd-box b { font-size: 18px; }
  .cta { justify-content: center; }
  .stats { grid-template-columns: 1fr; }
}
@media (max-width: 360px) {
  .cd-box { min-width: 48px; }
  .cd-box b { font-size: 16px; }
  .cd-label { font-size: 11px; }
}
