:root{
  --bg:#05070c;
  --border: rgba(255,255,255,.10);
  --text:#e9eefc;
  --muted: rgba(233,238,252,.72);
  --neon:#33f3b6;
  --neon2:#2de0ff;
  --warn:#ffd36a;
  --shadow: 0 14px 40px rgba(0,0,0,.55);
  --radius: 18px;
}

*{box-sizing:border-box}

html,body{
  margin:0;
  background:
    radial-gradient(1200px 800px at 70% -20%, rgba(51,243,182,.20), transparent 60%),
    radial-gradient(900px 700px at 20% 10%, rgba(45,224,255,.16), transparent 55%),
    var(--bg);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.55;
}

a{color:var(--text); text-decoration:none}
a:hover{opacity:.92}

.wrap{max-width:1100px; margin:0 auto; padding:18px}

.topbar{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; padding:10px 0 18px;
}

.brand{display:flex; align-items:center; gap:10px}

.logo{
  width:42px; height:42px; border-radius:14px;
  background: linear-gradient(135deg, rgba(51,243,182,.25), rgba(45,224,255,.18));
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}

.logo:after{
  content:"";
  position:absolute; inset:-40%;
  background: conic-gradient(from 180deg, rgba(51,243,182,.0), rgba(51,243,182,.45), rgba(45,224,255,.0));
  animation: spin 5s linear infinite;
}

@keyframes spin{to{transform:rotate(360deg)}}

.brand h1{margin:0; font-size:16px; letter-spacing:.7px}

.pill{
  font-size:12px; color:var(--muted);
  padding:7px 10px; border:1px solid var(--border);
  border-radius:999px; background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
  white-space:nowrap;
}

nav{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}
nav a{font-size:13px; color:var(--muted); padding:7px 10px; border-radius:999px; border:1px solid transparent}
nav a:hover{border-color:var(--border); background: rgba(255,255,255,.04)}

@media (max-width: 640px){
  .topbar{align-items:flex-start}
  nav{width:100%; justify-content:flex-start; gap:8px}
  nav a{
    font-size:12px;
    padding:6px 10px;
    border-color: rgba(255,255,255,.10);
    background: rgba(255,255,255,.04);
  }
}

.hero{
  display:grid; grid-template-columns: 1.1fr .9fr; gap:18px;
  align-items:stretch;
}
@media (max-width: 900px){ .hero{grid-template-columns:1fr} }
.hero.single{grid-template-columns:1fr}

.panel{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}

.panel:before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(600px 200px at 25% 0%, rgba(51,243,182,.24), transparent 55%),
    radial-gradient(600px 240px at 80% 20%, rgba(45,224,255,.20), transparent 55%);
  pointer-events:none;
  opacity:.9;
}

.panel-inner{position:relative; padding:22px}

.kicker{display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin-bottom:10px}

.tag{
  font-size:12px; letter-spacing:.5px;
  padding:7px 10px; border-radius:999px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.18);
}
.tag.neon{border-color: rgba(51,243,182,.35); color: rgba(51,243,182,.95)}
.tag.blue{border-color: rgba(45,224,255,.35); color: rgba(45,224,255,.95)}
.tag.warn{border-color: rgba(255,211,106,.35); color: rgba(255,211,106,.95)}

.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  letter-spacing:.5px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.18);
  color: rgba(233,238,252,.86);
  white-space:nowrap;
}
.badge.is-confirmed{border-color: rgba(51,243,182,.35); color: rgba(51,243,182,.95)}
.badge.is-possible{border-color: rgba(51,243,182,.35); color: rgba(51,243,182,.95)}
.badge.is-unconfirmed{border-color: rgba(255,211,106,.35); color: rgba(255,211,106,.95)}

.btn.sm{
  padding:10px 12px;
  border-radius:12px;
  font-size:13px;
}

button.btn:disabled{
  opacity:.6;
  cursor:not-allowed;
  transform:none;
}

.poll-mini{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.10);
}
.poll-mini-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.poll-mini-meta{
  font-size:12px;
  color:var(--muted);
}
.poll-mini-bar{
  margin-top:10px;
  height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  overflow:hidden;
}
.poll-mini-fill{
  height:100%;
  width:0%;
  background: linear-gradient(90deg, rgba(51,243,182,.92), rgba(45,224,255,.78));
  box-shadow: 0 0 18px rgba(51,243,182,.16);
}
.poll-mini.is-voted{
  border-top-color: rgba(51,243,182,.35);
}

.headline{margin:0 0 10px; font-size:44px; line-height:1.05; letter-spacing:.2px}
@media (max-width: 520px){ .headline{font-size:34px} }

.sub{margin:0 0 14px; color:var(--muted); font-size:15px; max-width: 70ch}

.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px; border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  transition: transform .08s ease;
}
.btn.primary{
  border-color: rgba(51,243,182,.40);
  background: linear-gradient(135deg, rgba(51,243,182,.20), rgba(45,224,255,.14));
}
.btn.kraken{
  border-color: rgba(255,179,71,.6);
  background: linear-gradient(135deg, rgba(255,179,71,.28), rgba(45,224,255,.16));
  box-shadow: 0 14px 34px rgba(255,179,71,.35);
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}

.note{font-size:12px; color:var(--muted); margin-top:10px}

.embed{
  position:relative;
  border-radius: 16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.35);
  aspect-ratio: 16 / 9;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.embed iframe{position:absolute; inset:0; width:100%; height:100%; border:0}

.section{margin-top:18px}
.section h2{
  margin:0 0 10px;
  font-size:16px;
  letter-spacing:.7px;
  text-transform:uppercase;
  color: rgba(233,238,252,.86);
}

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

.fight{
  grid-column: span 6;
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  box-shadow: 0 12px 36px rgba(0,0,0,.40);
  overflow:hidden;
  position:relative;
}
.fight:before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(420px 220px at 20% 0%, rgba(51,243,182,.18), transparent 60%),
    radial-gradient(460px 260px at 90% 20%, rgba(45,224,255,.12), transparent 60%);
  pointer-events:none;
  opacity:.9;
}
.fight-inner{position:relative; padding:18px}
.fight-top{display:flex; align-items:flex-start; justify-content:space-between; gap:10px}
.fight-name{margin:0; font-size:20px; line-height:1.15}
.fight-meta{color:var(--muted); font-size:13px; margin:6px 0 0}
.odds-row{display:flex; gap:10px; flex-wrap:wrap; margin:14px 0}
.odd{
  flex:1; min-width: 170px;
  padding:12px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.10);
}
.odd b{display:block; font-size:14px}
.odd span{
  display:inline-block;
  margin-top:6px;
  font-weight:900; font-size:20px; letter-spacing:.4px;
  color: rgba(51,243,182,.95);
  text-shadow: 0 0 18px rgba(51,243,182,.16);
}
.odd.alt span{color: rgba(45,224,255,.95); text-shadow: 0 0 18px rgba(45,224,255,.14)}
.fight-actions{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
.mini{color:var(--muted); font-size:12px}

@media (max-width: 900px){ .fight{grid-column: span 12;} }

.box{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  padding:18px;
  color: var(--muted);
}
.box h3{margin:0 0 8px; color: rgba(233,238,252,.92); font-size:15px}
.box p{margin:10px 0}
.box ul{margin:10px 0 0; padding-left:18px}
.box li{margin:6px 0}

.thrill-cta{
  font-family: "Oxanium", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.thrill-card{
  border:1px solid rgba(92,255,193,.35);
  border-radius: var(--radius);
  background: #1B1D29;
  padding:20px;
  color:#FFFFFF;
  box-shadow: 0 18px 44px rgba(0,0,0,.55);
}

.thrill-card .kicker .tag{
  border-color: rgba(89,86,255,.35);
  background: rgba(89,86,255,.12);
  color:#FFFFFF;
}
.thrill-card .kicker .tag.blue{
  border-color: #5CFFC1;
  background: rgba(92,255,193,.18);
  color:#FFFFFF;
  box-shadow: 0 0 18px rgba(92,255,193,.25);
}

.thrill-card h2{
  margin:0 0 10px;
  font-size:22px;
  letter-spacing:.6px;
  color:#FFFFFF;
}

.thrill-card p{
  margin:0 0 12px;
  color: rgba(255,255,255,.88);
}

.thrill-card ul{
  margin:0 0 12px;
  padding-left:18px;
  color: rgba(255,255,255,.9);
}

.thrill-card li{margin:6px 0}

.thrill-card .btn{
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color:#FFFFFF;
}

.thrill-card .btn.thrill-primary{
  border-color:#5CFFC1;
  background:#5CFFC1;
  color:#1B1D29;
  box-shadow: 0 10px 30px rgba(92,255,193,.35);
}

.thrill-card .btn.thrill-secondary{
  border-color:#5956FF;
  background: rgba(89,86,255,.14);
  color:#FFFFFF;
}

footer{
  margin-top:22px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-size:12px;
}

.brand .pill {
  border: 0;
  padding: 0;
  margin: 0;
  background: none;
}

.topbar {
  flex-wrap: wrap;
}

.btn {
  flex-direction: column;
  gap: 0;
}

.btn span {
  font-size: 0.75em;
  font-weight: normal;
}

.sticky-cta{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:999;
  display:none;
  gap:10px;
  padding:12px 12px calc(12px + env(safe-area-inset-bottom));
  background:
    linear-gradient(180deg, rgba(8,10,16,.7), rgba(8,10,16,.92)),
    radial-gradient(700px 140px at 50% 0%, rgba(45,224,255,.18), transparent 60%);
  border-top:1px solid rgba(255,255,255,.12);
  box-shadow: 0 -10px 30px rgba(0,0,0,.55);
  backdrop-filter: blur(12px);
}
.sticky-cta .btn{
  flex:1 1 0;
  padding:12px 10px;
  font-size:13px;
  border-radius:16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.45);
  text-transform:uppercase;
  letter-spacing:.4px;
}
.sticky-cta .btn.thrill-secondary{
  background: linear-gradient(135deg, rgba(92,255,193,.22), rgba(89,86,255,.18));
  border-color: rgba(92,255,193,.55);
}
.sticky-cta .btn.kraken{
  background: linear-gradient(135deg, rgba(255,179,71,.30), rgba(255,92,92,.18));
  border-color: rgba(255,179,71,.6);
}
.sticky-cta .btn span{
  margin-top:4px;
  font-size:10px;
  letter-spacing:.2px;
  text-transform:none;
  opacity:.85;
}

@media (max-width: 720px){
  .sticky-cta{display:flex}
  body{padding-bottom:96px}
}

.no-scroll{overflow:hidden}

.modal{
  position:fixed;
  inset:0;
  z-index:1200;
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
}
.modal.is-open{display:flex}
.modal-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(10px);
}
.modal-card{
  position:relative;
  width:min(720px, 100%);
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  box-shadow: var(--shadow);
  padding:20px;
  overflow:hidden;
}
.modal-card:before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(600px 200px at 25% 0%, rgba(51,243,182,.20), transparent 55%),
    radial-gradient(600px 240px at 80% 20%, rgba(45,224,255,.16), transparent 55%);
  pointer-events:none;
  opacity:.9;
}
.modal-card > *{position:relative}
.modal-close{
  position:absolute;
  top:10px;
  right:10px;
  width:40px;
  height:40px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  color:var(--text);
  font-size:22px;
  line-height:1;
  cursor:pointer;
}
.modal-close:hover{opacity:.9}

.signup-box{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  padding:20px;
  box-shadow: 0 14px 36px rgba(0,0,0,.4);
}

.signup-box h2{
  margin:0 0 8px;
  font-size:20px;
  letter-spacing:.6px;
  text-transform:uppercase;
}

.signup-box p{
  margin:0 0 12px;
  color: var(--muted);
}

.signup-form{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

.signup-form input[type="email"]{
  flex:1 1 260px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.28);
  color: var(--text);
}

.signup-form input[type="email"]::placeholder{color: rgba(233,238,252,.6)}

.signup-form button{
  flex:0 0 auto;
}

.signup-note{
  font-size:12px;
  color: var(--muted);
  margin-top:8px;
}

.signup-status{
  margin-top:10px;
  font-size:13px;
}

.signup-status.is-success{color:#5cffc1}
.signup-status.is-error{color:#ffd36a}

.hp-field{
  position:absolute;
  left:-10000px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
