:root{
  --bg:#0a1f3d;
  --bg-2:#0d2752;
  --surface:#13294d;
  --surface-2:#1a3563;
  --line:rgba(255,255,255,.08);
  --text:#ffffff;
  --text-muted:#b9c6dd;
  --accent:#FFC107;
  --primary:#7DC318;
  --primary-hover:#6BB10B;
  --seo-bg:#f6f8fb;
  --seo-text:#1a1f2c;
  --seo-muted:#536079;
  --seo-line:#e3e8f0;
  --radius:12px;
  --radius-sm:8px;
  --max:1200px;
  --header-h:64px;
}
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;background:var(--bg)}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  font-size:16px;
  line-height:1.6;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;height:auto}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer;border:0;background:none;color:inherit}
.container{max-width:var(--max);margin:0 auto;padding:0 16px}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* Header */
.site-header{
  position:sticky;top:0;z-index:50;
  background:var(--bg);
  border-bottom:1px solid var(--line);
}
.header-row{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  height:var(--header-h);
}
.logo{display:inline-flex;align-items:center}
.logo img{height:36px;width:auto}
.nav-desktop{display:none;gap:6px}
.nav-desktop a{
  padding:8px 14px;border-radius:8px;font-weight:500;font-size:14px;
  color:var(--text-muted);transition:color .15s,background .15s;
}
.nav-desktop a:hover,.nav-desktop a[aria-current="page"]{color:var(--text);background:rgba(255,255,255,.06)}
.header-cta{display:flex;align-items:center;gap:10px}
.btn-register{
  background:var(--primary);color:#0a1f3d;font-weight:700;font-size:14px;
  padding:10px 18px;border-radius:999px;letter-spacing:.2px;
  transition:background .15s,transform .15s;white-space:nowrap;
}
.btn-register:hover{background:var(--primary-hover)}
.btn-login{
  display:none;color:var(--text);font-weight:600;font-size:14px;padding:8px 14px;border-radius:8px;
  border:1px solid var(--line);
}
.btn-login:hover{background:rgba(255,255,255,.06)}
.burger{
  display:inline-flex;align-items:center;justify-content:center;
  width:40px;height:40px;border-radius:8px;border:1px solid var(--line);
  background:rgba(255,255,255,.04);
}
.burger span{display:block;width:18px;height:2px;background:#fff;position:relative;transition:transform .2s}
.burger span::before,.burger span::after{content:"";position:absolute;left:0;width:18px;height:2px;background:#fff;transition:transform .2s,top .2s}
.burger span::before{top:-6px}
.burger span::after{top:6px}
.burger[aria-expanded="true"] span{background:transparent}
.burger[aria-expanded="true"] span::before{top:0;transform:rotate(45deg)}
.burger[aria-expanded="true"] span::after{top:0;transform:rotate(-45deg)}

.mobile-menu{
  position:fixed;left:0;right:0;top:var(--header-h);
  background:var(--bg-2);border-top:1px solid var(--line);
  transform:translateY(-110%);transition:transform .25s ease;
  z-index:49;padding:12px 0;
  max-height:calc(100dvh - var(--header-h));overflow:auto;
}
.mobile-menu[data-open="true"]{transform:translateY(0)}
.mobile-menu ul{list-style:none;margin:0;padding:0 16px;display:flex;flex-direction:column;gap:4px}
.mobile-menu a{
  display:block;padding:14px 12px;border-radius:8px;
  color:var(--text);font-weight:500;border-bottom:1px solid var(--line);
}
.mobile-menu a:hover{background:rgba(255,255,255,.05)}

@media (min-width:900px){
  .nav-desktop{display:flex}
  .btn-login{display:inline-block}
  .burger{display:none}
}

/* Hero */
.hero{
  position:relative;
  background:linear-gradient(180deg,#0e2a55 0%,#0a1f3d 100%);
  border-bottom:1px solid var(--line);
  overflow:hidden;
}
.hero-inner{
  display:grid;gap:24px;align-items:center;
  grid-template-columns:1fr;
  padding-top:32px;padding-bottom:40px;
}
.hero-copy{position:relative;z-index:2}
.hero-eyebrow{
  display:inline-block;background:rgba(255,193,7,.14);color:var(--accent);
  padding:6px 12px;border-radius:999px;font-weight:700;font-size:12px;letter-spacing:.6px;text-transform:uppercase;
}
.hero-title{
  font-size:clamp(28px,5vw,46px);font-weight:800;line-height:1.1;
  margin:14px 0 12px;letter-spacing:-.5px;
}
.hero-title .accent{color:var(--accent)}
.hero-sub{font-size:16px;color:var(--text-muted);margin:0 0 22px;max-width:540px}
.hero-ctas{display:flex;flex-wrap:wrap;gap:12px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:14px 26px;border-radius:999px;font-weight:700;font-size:15px;
  transition:background .15s,transform .15s,color .15s;white-space:nowrap;
}
.btn-primary{background:var(--primary);color:#0a1f3d}
.btn-primary:hover{background:var(--primary-hover)}
.btn-ghost{background:transparent;color:var(--text);border:1px solid rgba(255,255,255,.2)}
.btn-ghost:hover{background:rgba(255,255,255,.08)}
.hero-art{
  position:relative;
  border-radius:var(--radius);overflow:hidden;
  background:#103063;
  aspect-ratio: 21 / 9;
}
.hero-art img{width:100%;height:100%;object-fit:cover;object-position:right center}

@media (min-width:900px){
  .hero-inner{grid-template-columns:1.05fr 1fr;gap:40px;padding-top:56px;padding-bottom:64px}
  .hero-art{aspect-ratio:auto;height:340px}
}

/* Slots grid */
.slots-section{padding:36px 0 24px}
.section-eyebrow{
  display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;
  margin-bottom:18px;
}
.section-eyebrow .label{
  font-size:13px;letter-spacing:.6px;text-transform:uppercase;color:var(--accent);font-weight:700;
}
.section-eyebrow .heading{
  font-size:clamp(22px,3vw,30px);font-weight:800;letter-spacing:-.3px;
}
.slots-grid{
  display:grid;gap:10px;
  grid-template-columns:repeat(2,1fr);
}
.slot-tile{
  position:relative;border-radius:var(--radius-sm);overflow:hidden;
  background:var(--surface);aspect-ratio:3/4;display:block;
  transition:transform .2s,box-shadow .2s;
}
.slot-tile img{width:100%;height:100%;object-fit:cover}
.slot-tile::after{
  content:"Play";position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(0deg,rgba(0,0,0,.6),rgba(0,0,0,.1));
  color:#fff;font-weight:700;letter-spacing:.5px;
  opacity:0;transition:opacity .15s;
}
.slot-tile:hover{transform:translateY(-2px);box-shadow:0 8px 22px rgba(0,0,0,.35)}
.slot-tile:hover::after{opacity:1}
@media (min-width:560px){.slots-grid{grid-template-columns:repeat(3,1fr);gap:12px}}
@media (min-width:760px){.slots-grid{grid-template-columns:repeat(4,1fr)}}
@media (min-width:1000px){.slots-grid{grid-template-columns:repeat(6,1fr)}}

.cta-row{display:flex;justify-content:center;margin:28px 0 8px}
.btn-xl{padding:16px 40px;font-size:16px}

/* SEO content */
.seo-section{
  background:var(--seo-bg);color:var(--seo-text);
  padding:48px 0 64px;border-top:1px solid var(--line);
}
.seo-section .container{max-width:920px}
.seo-section h1{
  font-size:clamp(28px,4vw,40px);line-height:1.15;font-weight:800;
  margin:0 0 18px;letter-spacing:-.4px;color:#0a1f3d;
}
.seo-section h2{
  font-size:clamp(22px,3vw,28px);line-height:1.25;font-weight:800;
  margin:36px 0 14px;color:#0a1f3d;
}
.seo-section h3{
  font-size:clamp(18px,2.4vw,22px);line-height:1.3;font-weight:700;
  margin:24px 0 10px;color:#0a1f3d;
}
.seo-section p{margin:0 0 14px;color:#2b3349}
.seo-section ul,.seo-section ol{margin:0 0 16px;padding-left:22px;color:#2b3349}
.seo-section li{margin-bottom:8px}
.seo-section li > strong:first-child{color:#0a1f3d}
.seo-section a{color:#0a4fb3;text-decoration:underline;text-underline-offset:2px}
.seo-section a:hover{color:#073882}
.seo-section strong{color:#0a1f3d}
.seo-section blockquote{
  margin:18px 0;padding:14px 18px;background:#fff;border-left:4px solid var(--primary);
  border-radius:6px;color:#1a1f2c;
}

.table-scroll{overflow-x:auto;margin:0 0 18px;border:1px solid var(--seo-line);border-radius:8px;background:#fff}
.table-scroll table{
  width:100%;border-collapse:collapse;min-width:520px;font-size:14.5px;
}
.table-scroll th,.table-scroll td{
  padding:12px 14px;text-align:left;border-bottom:1px solid var(--seo-line);
}
.table-scroll thead th{background:#f1f5fb;font-weight:700;color:#0a1f3d}
.table-scroll tbody tr:last-child td{border-bottom:0}

.seo-section details{
  background:#fff;border:1px solid var(--seo-line);border-radius:8px;
  margin:0 0 10px;padding:14px 16px;
}
.seo-section details[open]{box-shadow:0 1px 0 rgba(0,0,0,.02)}
.seo-section summary{
  cursor:pointer;font-weight:700;color:#0a1f3d;list-style:none;
  display:flex;align-items:center;justify-content:space-between;gap:12px;
}
.seo-section summary::-webkit-details-marker{display:none}
.seo-section summary::after{content:"+";font-size:22px;line-height:1;color:var(--primary);font-weight:700}
.seo-section details[open] summary::after{content:"\2212"}
.seo-section details > *:not(summary){margin-top:10px}

.seo-cta-row{display:flex;flex-wrap:wrap;gap:10px;margin:18px 0}
.seo-cta-row .btn{padding:12px 20px;font-size:14px}

/* Footer */
.site-footer{
  background:#06152e;border-top:1px solid var(--line);
  padding:36px 0 24px;font-size:14px;color:var(--text-muted);
}
.footer-top{
  display:grid;gap:24px;grid-template-columns:1fr;
  margin-bottom:22px;
}
.footer-brand img{height:32px;width:auto;margin-bottom:12px}
.footer-brand p{margin:0;max-width:380px;font-size:13.5px}
.footer-col h4{margin:0 0 12px;color:#fff;font-size:13px;letter-spacing:.6px;text-transform:uppercase}
.footer-col ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:8px}
.footer-col a:hover{color:#fff}
.footer-bottom{
  border-top:1px solid var(--line);padding-top:18px;
  display:flex;flex-direction:column;gap:12px;align-items:flex-start;
  font-size:12.5px;color:#7889a8;
}
.footer-bottom .badge{
  display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.06);
  padding:6px 10px;border-radius:6px;font-weight:700;color:#fff;font-size:12px;
}
@media (min-width:760px){
  .footer-top{grid-template-columns:1.4fr repeat(3,1fr)}
  .footer-bottom{flex-direction:row;justify-content:space-between;align-items:center}
}

/* 404 */
.error-page{
  min-height:60vh;display:flex;align-items:center;justify-content:center;text-align:center;
  padding:60px 16px;
}
.error-page h1{font-size:clamp(60px,12vw,140px);margin:0;color:var(--accent);line-height:1;font-weight:900}
.error-page p{font-size:18px;color:var(--text-muted);margin:14px 0 22px;max-width:520px}

/* Auth-style hero variant for sign-up / login */
.hero--compact .hero-inner{padding-top:32px;padding-bottom:28px}
@media (min-width:900px){.hero--compact .hero-inner{padding-top:48px;padding-bottom:44px}}
