:root{
  --bg:#0c0f14;
  --panel:#121825;
  --panel2:#0f1520;
  --text:#e9eef9;
  --muted:#a9b5cc;
  --accent:#f2d16b;
  --accent2:#6fe0c8;
  --border:rgba(255,255,255,.08);
  --shadow: 0 18px 60px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 420px at 12% -10%, rgba(242,209,107,.18), transparent 60%),
    radial-gradient(900px 520px at 85% -20%, rgba(111,224,200,.14), transparent 55%),
    linear-gradient(180deg, #070910 0%, #0b101a 40%, #070910 100%);
}

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

.topbar{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter: blur(12px);
  background: rgba(7,9,16,.65);
  border-bottom:1px solid var(--border);
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:220px;
}

.pole{
  width:12px;
  height:34px;
  border-radius:10px;
  background:linear-gradient(180deg,#e7edf9,#9aa7bf);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.18);
}

.brand__title{font-weight:800; letter-spacing:.4px}
.brand__tag{color:var(--muted); font-size:12px; margin-top:1px}

.nav{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav a{
  color:var(--muted);
  text-decoration:none;
  font-size:14px;
  padding:8px 10px;
  border-radius:10px;
}
.nav a:hover{color:var(--text); background:rgba(255,255,255,.06)}

.hero{
  padding:44px 0 10px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:22px;
  align-items:center;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(242,209,107,.10);
  border:1px solid rgba(242,209,107,.28);
  color:var(--text);
  font-weight:600;
  font-size:13px;
}

h1{
  margin:14px 0 10px;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height:1.05;
  letter-spacing:-0.6px;
}

.lead{
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
  margin:0 0 18px;
}

.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin:14px 0 12px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  text-decoration:none;
  font-weight:700;
  border:1px solid rgba(242,209,107,.30);
  background: linear-gradient(180deg, rgba(242,209,107,.22), rgba(242,209,107,.10));
  color:var(--text);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.btn:hover{transform: translateY(-1px); filter:brightness(1.02)}
.btn--ghost{
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
}
.fineprint{
  color:rgba(169,181,204,.85);
  font-size:12px;
  line-height:1.5;
  margin:10px 0 0;
}

.hero__card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--border);
  border-radius:22px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero__img{
  display:block;
  width:100%;
  height:auto;
}

.section{
  padding:44px 0;
}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

h2{
  margin:0 0 18px;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing:-0.3px;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

.card{
  background: linear-gradient(180deg, rgba(18,24,37,.95), rgba(15,21,32,.92));
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); line-height:1.6; font-size:14px}

.note{
  margin-top:16px;
  border:1px dashed rgba(242,209,107,.35);
  background: rgba(242,209,107,.06);
  border-radius:18px;
  padding:14px 16px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.note__title{font-weight:800}
.note__text{color:var(--muted)}

.event{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
  align-items:start;
}
.event__media{
  background: rgba(255,255,255,.03);
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  box-shadow: var(--shadow);
}
.event__media img{display:block; width:100%; height:auto}

.event__details{
  background: linear-gradient(180deg, rgba(18,24,37,.95), rgba(15,21,32,.92));
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
}

.kpi{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.kpi:last-of-type{border-bottom:none}
.kpi__label{color:var(--muted); font-size:13px}
.kpi__value{font-weight:700; font-size:13px; text-align:right}

.rules{
  margin-top:14px;
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(111,224,200,.22);
  background: rgba(111,224,200,.07);
}
.rules__title{font-weight:800; margin-bottom:8px}
.rules ul{margin:0; padding-left:18px; color:var(--muted); line-height:1.6; font-size:13px}

.ctaRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

.meme{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:center;
}
.meme__figure{
  margin:0;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.meme__figure img{display:block; width:100%; height:auto}
.meme__figure figcaption{
  padding:10px 12px;
  color:var(--muted);
  font-size:12px;
  border-top:1px solid rgba(255,255,255,.06);
}

.footer{
  padding:26px 0;
  border-top:1px solid var(--border);
  background: rgba(0,0,0,.22);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
}
.footer__title{font-weight:900}
.footer__sub{color:var(--muted); font-size:13px}
.footer__right{display:flex; gap:12px; flex-wrap:wrap}
.footer__right a{color:var(--muted); text-decoration:none; font-size:13px}
.footer__right a:hover{color:var(--text)}

@media (max-width: 900px){
  .hero__grid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .event{grid-template-columns:1fr}
  .meme{grid-template-columns:1fr}
  .brand{min-width:auto}
}

/* HERO video */
.hero__video .videoWrap{
  position:relative;
  padding-top:56.25%;
  width:100%;
  background: rgba(0,0,0,.25);
}
.hero__video iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
.hero__videoCaption{
  padding:10px 12px;
  font-size:12px;
  color: var(--muted);
  border-top:1px solid rgba(255,255,255,.06);
}

/* Countdown */
.countdown{
  margin:14px 0 8px;
  border:1px solid rgba(111,224,200,.22);
  background: rgba(111,224,200,.07);
  border-radius:18px;
  padding:12px 12px 10px;
}
.countdown__label{
  font-weight:800;
  font-size:13px;
  margin-bottom:10px;
}
.countdown__grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:10px;
}
.countdown__cell{
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  border-radius:14px;
  padding:10px 10px 9px;
  text-align:center;
}
.countdown__num{
  font-weight:900;
  font-size:18px;
  letter-spacing:-0.3px;
}
.countdown__unit{
  margin-top:4px;
  font-size:11px;
  color: var(--muted);
}
.countdown__fine{
  margin-top:10px;
  font-size:12px;
  color: rgba(169,181,204,.9);
}
@media (max-width: 520px){
  .countdown__grid{grid-template-columns: repeat(2, minmax(0, 1fr));}
}
