/* Yes No — Predict and Win
   Production-ready static template (no external deps). */

:root{
  --bg:#0b0f1a;
  --bg2:#070a12;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.08);
  --text:#eaf0ff;
  --muted:rgba(234,240,255,.70);
  --muted2:rgba(234,240,255,.55);
  --border:rgba(234,240,255,.12);

  --yes:#18ff8f;
  --no:#ff3b8a;
  --accent:#7c5cff;
  --accent2:#1bd1ff;

  --shadow:0 10px 40px rgba(0,0,0,.45);
  --radius:18px;

  --container:1120px;
}

[data-theme="light"]{
  --bg:#f7f8ff;
  --bg2:#ffffff;
  --panel:rgba(5,10,25,.06);
  --panel2:rgba(5,10,25,.08);
  --text:#0b0f1a;
  --muted:rgba(11,15,26,.72);
  --muted2:rgba(11,15,26,.56);
  --border:rgba(11,15,26,.14);
  --shadow:0 10px 30px rgba(10,18,40,.18);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: radial-gradient(1200px 600px at 15% 10%, rgba(124,92,255,.18), transparent 60%),
              radial-gradient(900px 500px at 90% 20%, rgba(27,209,255,.15), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.9}

.container{max-width:var(--container); margin:0 auto; padding:0 20px}
.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{left:20px; top:20px; width:auto; height:auto; padding:10px 12px; background:var(--panel2); border:1px solid var(--border); border-radius:10px; z-index:9999}

.header{
  position:sticky; top:0; z-index:100;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.05));
  border-bottom:1px solid var(--border);
}
[data-theme="light"] .header{
  background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.45));
}
.header__inner{
  height:72px; display:flex; align-items:center; gap:18px;
}
.brand{display:flex; align-items:center; gap:10px; font-weight:700}
.brand__mark{filter: drop-shadow(0 8px 18px rgba(0,0,0,.25))}
.brand__name{letter-spacing:.2px}

.nav{margin-left:10px; display:flex; gap:18px}
.nav a{padding:10px 10px; color:var(--muted); font-weight:600; font-size:14px}
.nav a:hover{color:var(--text)}

.header__cta{margin-left:auto; display:flex; align-items:center; gap:10px}

.btn{
  border:1px solid var(--border);
  background:var(--panel);
  color:var(--text);
  padding:10px 14px;
  border-radius:14px;
  font-weight:700;
  cursor:pointer;
  transition: transform .08s ease, background .2s ease, border-color .2s ease;
}
.btn:active{transform: translateY(1px)}
.btn--primary{
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(27,209,255,.95));
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 12px 30px rgba(124,92,255,.25);
}
.btn--ghost{background:transparent}
.icon{font-size:15px}

.hamburger{
  display:none;
  margin-left:6px;
  width:44px; height:44px; border-radius:14px;
  border:1px solid var(--border);
  background:var(--panel);
  cursor:pointer;
}
.hamburger span{
  display:block; width:18px; height:2px; background:var(--text);
  margin:4px auto; border-radius:2px; opacity:.9;
}

.mobileNav{
  border-bottom:1px solid var(--border);
  background: rgba(0,0,0,.25);
}
[data-theme="light"] .mobileNav{background: rgba(255,255,255,.72)}
.mobileNav__inner{
  padding:12px 20px 18px;
  display:flex; flex-direction:column; gap:10px;
}
.mobileNav a{padding:10px 10px; border-radius:12px; color:var(--muted); font-weight:700}
.mobileNav a:hover{background:var(--panel2); color:var(--text)}

.hero{
  position:relative;
  padding:52px 0 26px;
}
.bg{position:absolute; inset:0; pointer-events:none; overflow:hidden}
.bg__glow{
  position:absolute; inset:-80px;
  background: radial-gradient(800px 500px at 20% 25%, rgba(124,92,255,.20), transparent 65%),
              radial-gradient(700px 440px at 85% 20%, rgba(27,209,255,.18), transparent 60%),
              radial-gradient(900px 520px at 60% 90%, rgba(24,255,143,.08), transparent 65%);
  filter: blur(2px);
}
.bg__stars{position:absolute; inset:0; width:100%; height:100%}

.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:26px;
  align-items:stretch;
}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px; border-radius:999px;
  background:var(--panel);
  border:1px solid var(--border);
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}
.pill .dot{
  width:8px; height:8px; border-radius:999px;
  background: linear-gradient(135deg, var(--yes), var(--accent2));
  box-shadow: 0 0 0 6px rgba(24,255,143,.12);
}

.hero__title{
  margin:16px 0 10px;
  font-size: clamp(34px, 3.7vw, 52px);
  letter-spacing:-.8px;
  line-height:1.05;
}
.grad{
  background: linear-gradient(135deg, var(--yes), var(--accent2));
  -webkit-background-clip:text; background-clip:text;
  color:transparent;
}
.grad2{
  background: linear-gradient(135deg, var(--no), var(--accent));
  -webkit-background-clip:text; background-clip:text;
  color:transparent;
}
.hero__lead{
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.65;
}
.hero__actions{display:flex; gap:10px; margin-top:18px; flex-wrap:wrap}

.hero__stats{
  margin-top:22px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
}
.stat{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:14px;
}
.stat__kpi{font-size:18px; font-weight:900}
.stat__label{color:var(--muted2); font-size:12px; font-weight:700; margin-top:6px}

.hero__card .card{
  height:100%;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  border:1px solid var(--border);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  padding:18px;
  display:flex; flex-direction:column;
}
.card__top{display:flex; gap:12px; align-items:flex-start}
.card__badge{
  padding:6px 10px; border-radius:999px;
  background: rgba(24,255,143,.10);
  border: 1px solid rgba(24,255,143,.20);
  color: var(--yes);
  font-weight:900; font-size:12px;
  text-transform:uppercase;
  letter-spacing:.4px;
}
.card__title{font-weight:900; font-size:16px; line-height:1.35}

.card__bar{
  margin-top:16px;
  height:10px;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  overflow:hidden;
  border:1px solid var(--border);
}
.card__barFill{
  height:100%;
  width:50%;
  background: linear-gradient(90deg, var(--yes), var(--no));
}
.card__barMeta{
  margin-top:10px;
  display:flex; justify-content:space-between;
  color:var(--muted2);
  font-weight:800; font-size:12px;
}
.card__buttons{
  margin-top:14px;
  display:grid; grid-template-columns: 1fr 1fr; gap:10px;
}
.pick{
  border-radius:16px;
  padding:12px 12px;
  border:1px solid var(--border);
  background: var(--panel);
  font-weight:900;
  cursor:pointer;
  transition: transform .08s ease, border-color .2s ease, background .2s ease;
}
.pick:active{transform: translateY(1px)}
.pick--yes{border-color: rgba(24,255,143,.25)}
.pick--no{border-color: rgba(255,59,138,.25)}
.pick--yes:hover{background: rgba(24,255,143,.12)}
.pick--no:hover{background: rgba(255,59,138,.12)}

.card__foot{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
}
.mini{
  background: rgba(0,0,0,.10);
  border:1px solid var(--border);
  border-radius: 16px;
  padding:10px 10px;
}
[data-theme="light"] .mini{background: rgba(255,255,255,.55)}
.mini__label{color:var(--muted2); font-size:11px; font-weight:800}
.mini__value{font-weight:900; margin-top:6px}

.card__hint{
  margin:14px 0 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}

.section{
  padding:56px 0;
}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section__head h2{margin:0; font-size:28px; letter-spacing:-.3px}
.section__head p{margin:10px 0 0; color:var(--muted); line-height:1.6}

.toolbar{
  margin-top:22px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.chips{display:flex; gap:8px; flex-wrap:wrap}
.chip{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:var(--panel);
  cursor:pointer;
  font-weight:900;
  color:var(--muted);
}
.chip.is-active{color:var(--text); background:var(--panel2)}
.search input{
  width:min(420px, 80vw);
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:var(--panel);
  color:var(--text);
  outline:none;
}
.search input::placeholder{color:var(--muted2)}

.grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.event{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
  display:flex; flex-direction:column; gap:10px;
  transition: transform .12s ease, background .2s ease;
}
.event:hover{transform: translateY(-2px); background:var(--panel2)}
.event__top{display:flex; justify-content:space-between; align-items:center; gap:10px}
.tag{
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  font-weight:900;
  font-size:11px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.35px;
}
.tag.sports{border-color: rgba(27,209,255,.25); color: rgba(27,209,255,.95)}
.tag.politics{border-color: rgba(124,92,255,.25); color: rgba(124,92,255,.95)}
.tag.crypto{border-color: rgba(24,255,143,.25); color: rgba(24,255,143,.95)}
.event__title{font-weight:900; line-height:1.25}
.event__meta{display:flex; justify-content:space-between; color:var(--muted2); font-weight:800; font-size:12px}
.event__actions{display:grid; grid-template-columns: 1fr 1fr; gap:10px; margin-top:4px}
.event__btn{
  padding:11px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:transparent;
  cursor:pointer;
  font-weight:900;
  color: var(--text);
}
.event__btn.yes:hover{background: rgba(24,255,143,.12); border-color: rgba(24,255,143,.25)}
.event__btn.no:hover{background: rgba(255,59,138,.12); border-color: rgba(255,59,138,.25)}
.event__btn:active{transform: translateY(1px)}

.note{
  margin-top:16px;
  padding:14px 16px;
  border-radius: var(--radius);
  border:1px dashed var(--border);
  color:var(--muted);
  line-height:1.6;
}

.steps{
  margin-top:22px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
.step{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
}
.step__n{
  width:36px; height:36px;
  display:grid; place-items:center;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(124,92,255,.22), rgba(27,209,255,.18));
  border:1px solid var(--border);
  font-weight:900;
}
.step h3{margin:12px 0 6px}
.step p{margin:0; color:var(--muted); line-height:1.6}

.split{
  margin-top:14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.split__card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:18px;
}
.bullets{margin:10px 0 0; padding-left:18px; color:var(--muted); line-height:1.8}

.rewardCard{
  margin-top:18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--border);
  border-radius: calc(var(--radius) + 8px);
  padding:18px;
}
.rewardCard__left h3{margin:0}
.rewardCard__left p{color:var(--muted); line-height:1.7}
.rewardCard__actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}

.monoBox{
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  background: rgba(0,0,0,.14);
}
[data-theme="light"] .monoBox{background: rgba(255,255,255,.55)}
.monoBox__head{
  padding:10px 12px;
  font-weight:900;
  color:var(--muted);
  border-bottom:1px solid var(--border);
}
.monoBox__body{
  margin:0;
  padding:12px;
  min-height:160px;
  color:var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size:12px;
  line-height:1.6;
  white-space:pre-wrap;
}

.faq details{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:14px 16px;
  margin-top:10px;
}
.faq summary{
  cursor:pointer;
  font-weight:900;
}
.faq__a{margin-top:10px; color:var(--muted); line-height:1.7}

.cta{
  padding:44px 0;
}
.cta__inner{
  border:1px solid var(--border);
  border-radius: calc(var(--radius) + 10px);
  background: linear-gradient(135deg, rgba(24,255,143,.10), rgba(124,92,255,.10), rgba(27,209,255,.10));
  padding:20px;
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  box-shadow: var(--shadow);
}
.cta__copy h2{margin:0; letter-spacing:-.3px}
.cta__copy p{margin:8px 0 0; color:var(--muted); line-height:1.6}
.cta__actions{display:flex; gap:10px; flex-wrap:wrap}

.footer{
  padding:26px 0 20px;
  border-top:1px solid var(--border);
}
.footer__inner{
  display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap;
}
.footer__left{display:flex; align-items:center; gap:10px}
.footer__brand{font-weight:900}
.footer__muted{color:var(--muted2); font-weight:700; font-size:12px; margin-top:2px}
.footer__right{display:flex; gap:14px; color:var(--muted); font-weight:800}
.footer__bottom{
  margin-top:16px;
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
  color:var(--muted2);
  font-weight:700;
  font-size:12px;
}

.modal{
  position:fixed; inset:0; z-index:200;
}
.modal__backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
}
.modal__panel{
  position:relative;
  width:min(520px, calc(100vw - 32px));
  margin:8vh auto 0;
  background: var(--bg2);
  border:1px solid var(--border);
  border-radius: calc(var(--radius) + 10px);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modal__head{
  padding:16px 16px 12px;
  display:flex; justify-content:space-between; align-items:flex-start; gap:12px;
  border-bottom:1px solid var(--border);
}
.modal__title{font-weight:900; font-size:16px}
.modal__sub{color:var(--muted2); font-weight:700; font-size:12px; margin-top:4px}
.iconBtn{
  width:40px; height:40px; border-radius:14px;
  border:1px solid var(--border);
  background:var(--panel);
  color: var(--text);
  cursor:pointer;
  font-weight:900;
}
.wallets{padding:14px 16px; display:grid; gap:10px}
.wallet{
  width:100%;
  padding:14px 14px;
  border-radius:16px;
  border:1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  cursor:pointer;
  display:flex; align-items:center; justify-content:space-between; gap:10px;
}
.wallet__name{font-weight:900; color: #ffffff;}
[data-theme="light"] .wallet__name{color: #000000;}
.wallet__tag{color:var(--muted); font-weight:800; font-size:12px}
.wallet:hover{background:var(--panel2)}
.modal__foot{padding:0 16px 16px; display:flex; justify-content:flex-end}

@media (max-width: 960px){
  .hero__inner{grid-template-columns: 1fr; }
  .grid{grid-template-columns: repeat(2, minmax(0,1fr))}
  .steps{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
  .rewardCard{grid-template-columns: 1fr}
  .nav{display:none}
  .hamburger{display:block; margin-left:auto}
  .header__cta{display:none}
}
@media (max-width: 560px){
  .grid{grid-template-columns: 1fr}
  .hero{padding-top:34px}
}
