:root{
  --bg0: #05070f;
  --bg1: #0a1022;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.08);
  --border: rgba(255,255,255,.14);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 26px;
  --max: 1200px;
  --accentA: #6c5cff;
  --accentB: #00ffd5;
  --accentC: #ffb800;
  --accentD: #ff007a;
  --accentE: #35ff7a;
  --accentF: #53a7ff;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1000px 500px at 15% 0%, rgba(108,92,255,.25), transparent 55%),
    radial-gradient(900px 500px at 85% 5%, rgba(0,255,213,.18), transparent 58%),
    radial-gradient(800px 420px at 40% 92%, rgba(255,0,122,.10), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  min-height:100vh;
  overflow-x:hidden;
}

img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
a:hover{text-decoration:none}
p{margin:0 0 14px}
h1,h2,h3{margin:0 0 12px;line-height:1.12}
h2{font-size:clamp(20px,2.3vw,28px)}
h3{font-size:clamp(17px,1.9vw,22px)}

.container{width:min(var(--max), calc(100% - 24px)); margin:0 auto}
@media (min-width:640px){.container{width:min(var(--max), calc(100% - 44px));}}

.skip-link{
  position:absolute; left:-999px; top:8px; z-index:9999;
  background:#fff; color:#000; padding:10px 12px; border-radius:10px;
}
.skip-link:focus{left:12px}

.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(5,7,15,.62);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; gap:10px; padding:10px 0}
.brand{display:flex; align-items:center; gap:10px; min-width:0}
.brand-logo{
  width:52px; height:52px; border-radius:14px;
  background: linear-gradient(135deg, rgba(108,92,255,.25), rgba(0,255,213,.20));
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  flex:0 0 auto;
}
.brand-text{display:flex; flex-direction:column; gap:2px; min-width:0}
.brand-name{font-weight:800; letter-spacing:.2px; font-size:15px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.brand-tag{font-size:12px; color:var(--muted); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:52vw}

.site-nav{
  display:flex; align-items:center; gap:10px;
}
.nav-link{
  font-size:13px; color:var(--muted);
  padding:10px 10px; border-radius:12px;
  border:1px solid transparent;
}
.nav-link:hover{color:var(--text); border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.05)}
.nav-link.is-active{color:var(--text); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18)}
.nav-cta{
  padding:10px 12px; border-radius:12px;
  background: linear-gradient(135deg, rgba(255,0,122,.85), rgba(255,184,0,.85));
  color:#111; font-weight:800; font-size:13px;
  box-shadow: 0 16px 50px rgba(0,0,0,.45);
}

.nav-toggle{
  display:none;
  width:44px;height:44px;border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color:var(--text);
}
.nav-toggle-lines{
  width:18px;height:12px; margin:0 auto; position:relative; display:block;
}
.nav-toggle-lines:before,.nav-toggle-lines:after,.nav-toggle-lines span{
  content:""; position:absolute; left:0; right:0; height:2px; border-radius:2px; background: rgba(255,255,255,.82);
}
.nav-toggle-lines:before{top:0}
.nav-toggle-lines:after{bottom:0}
.nav-toggle-lines span{top:5px}

.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}

@media (max-width:980px){
  .nav-toggle{display:inline-flex; align-items:center; justify-content:center}
  .site-nav{
    position:fixed; inset:68px 12px auto 12px;
    display:none; flex-direction:column; align-items:stretch; gap:6px;
    padding:10px;
    border-radius:22px;
    background: rgba(10,16,34,.88);
    border:1px solid rgba(255,255,255,.14);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open{display:flex}
  .nav-link{padding:12px 12px}
  .nav-cta{text-align:center}
}

.hero{padding:28px 0 10px}
.hero-grid{display:grid; grid-template-columns: 1fr; gap:18px; align-items:center}
.hero-copy{padding:18px; border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
}
.kicker{font-size:12px; color:var(--muted); letter-spacing:.3px; text-transform:uppercase; margin-bottom:10px}
.hero-title{font-size:clamp(26px,5.4vw,46px)}
.hero-lead{font-size:clamp(14px,2.3vw,18px); color:rgba(255,255,255,.82); line-height:1.65}
.hero-actions{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.btn{display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 14px; border-radius:14px; font-weight:800; font-size:14px;
  border:1px solid rgba(255,255,255,.18);
}
.btn-primary{background: linear-gradient(135deg, rgba(0,255,213,.90), rgba(108,92,255,.92)); color:#0b0f18; border-color: transparent}
.btn-primary:hover{filter:saturate(1.1) brightness(1.02)}
.btn-ghost{background: rgba(255,255,255,.06); color:var(--text)}
.btn-ghost:hover{background: rgba(255,255,255,.09)}
.hero-badges{display:flex; flex-wrap:wrap; gap:8px; margin-top:14px}
.badge{font-size:12px; color:rgba(255,255,255,.78);
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  padding:6px 10px; border-radius:999px
}
.hero-media{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  aspect-ratio: 16/10;
  background: rgba(255,255,255,.04);
}
.hero-media img{width:100%; height:100%; object-fit:cover}

@media (min-width:980px){
  .hero{padding:36px 0 10px}
  .hero-grid{grid-template-columns: 1.1fr .9fr; gap:22px}
  .brand-logo{width:80px;height:80px}
}

.section{padding:18px 0}
.section-card{
  padding:18px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}
.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; margin-bottom:10px}
.section-sub{color:var(--muted); font-size:13px; line-height:1.55; max-width:70ch}

.grid{gap:12px}
@media (min-width:720px){.grid.cols-2{grid-template-columns:1fr 1fr}}
@media (min-width:980px){.grid.cols-3{grid-template-columns:repeat(3,1fr)}}

.casino-card{
  position:relative;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  overflow:hidden;
}
.casino-card::before{
  content:"";
  position:absolute; inset:-1px;
  background: radial-gradient(700px 240px at 20% 0%, var(--accent), transparent 55%);
  opacity:.75;
  pointer-events:none;
}
.casino-card-inner{position:relative; padding:14px}
.casino-top{display:flex; gap:12px; align-items:center}
.casino-logo{
  width:56px; height:56px; border-radius:16px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.25);
  flex:0 0 auto;
}
.casino-name{font-weight:900; letter-spacing:.2px}
.casino-meta{font-size:12px; color:rgba(255,255,255,.72); margin-top:2px}
.rating-row{display:flex; align-items:center; gap:10px; margin-top:10px}
.stars{display:inline-flex; gap:3px}
.star{width:16px;height:16px; opacity:.95}
.score{font-weight:900; padding:6px 10px; border-radius:999px;
  background: rgba(0,0,0,.26);
  border:1px solid rgba(255,255,255,.16);
}
.casino-desc{color:rgba(255,255,255,.80); margin-top:10px; line-height:1.62; font-size:14px}
.tags{display:flex; flex-wrap:wrap; gap:8px; margin-top:10px}
.tag{font-size:12px; color:rgba(255,255,255,.76); background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12); padding:6px 10px; border-radius:999px
}
.card-actions{display:flex; flex-wrap:wrap; gap:10px; margin-top:12px}
.btn-sm{padding:10px 12px; border-radius:12px; font-size:13px}
.btn-outline{background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.18)}
.btn-outline:hover{background: rgba(255,255,255,.07)}

.accent-a{--accent: rgba(108,92,255,.55)}
.accent-b{--accent: rgba(0,255,213,.45)}
.accent-c{--accent: rgba(255,184,0,.45)}
.accent-d{--accent: rgba(255,0,122,.38)}
.accent-e{--accent: rgba(53,255,122,.38)}

.table-wrap{
  margin-top:12px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  overflow:auto;
}
table{border-collapse:separate; border-spacing:0; min-width:720px; width:100%}
th,td{text-align:left; padding:12px 12px; border-bottom:1px solid rgba(255,255,255,.10); font-size:13px; vertical-align:top}
th{position:sticky; top:0; background: rgba(10,16,34,.88); backdrop-filter: blur(10px); font-size:12px; text-transform:uppercase; letter-spacing:.28px; color:rgba(255,255,255,.78)}
tr:last-child td{border-bottom:0}
td .mini{display:block; color:var(--muted); font-size:12px; margin-top:4px}

.note{
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  color:rgba(255,255,255,.82);
  line-height:1.65;
}
.note strong{color:rgba(255,255,255,.92)}

.chart{
  display:grid; gap:10px; margin-top:12px;
}
.chart-row{display:grid; grid-template-columns: 120px 1fr 46px; gap:10px; align-items:center}
.chart-label{font-size:13px; color:rgba(255,255,255,.80)}
.bar{height:12px; border-radius:999px; border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  overflow:hidden;
}
.fill{height:100%; width: var(--w); background: linear-gradient(90deg, rgba(0,255,213,.90), rgba(108,92,255,.85));}
.chart-val{font-size:12px; color:rgba(255,255,255,.72); text-align:right}

.procon{display:grid; gap:12px; margin-top:12px}
@media (min-width:760px){.procon{grid-template-columns:1fr 1fr}}
.procon-box{
  padding:14px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
}
.clean-list{list-style:none; padding:0; margin:10px 0 0}
.clean-list li{margin:8px 0; color:rgba(255,255,255,.80); line-height:1.5}
.clean-list li::before{content:"•"; margin-right:10px; color:rgba(0,255,213,.85)}

.callout{
  margin-top:12px;
  padding:14px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.14);
  background: radial-gradient(700px 250px at 15% 0%, rgba(255,184,0,.14), transparent 55%),
              radial-gradient(700px 250px at 85% 0%, rgba(255,0,122,.10), transparent 55%),
              rgba(255,255,255,.04);
}

.author-card{display:flex; flex-direction:column; gap:12px}
@media (min-width:760px){.author-card{flex-direction:row; align-items:center}}
.avatar{width:86px;height:86px;border-radius:22px;border:1px solid rgba(255,255,255,.16); background: rgba(0,0,0,.25); overflow:hidden; flex:0 0 auto}
.author-body{flex:1}
.author-name{font-weight:900}
.author-meta{color:var(--muted); font-size:13px; margin-top:4px}
.author-actions{display:flex; flex-wrap:wrap; gap:10px; margin-top:12px}

.form{display:grid; gap:10px; margin-top:10px}
.field{display:grid; gap:6px}
label{font-size:13px; color:rgba(255,255,255,.80)}
input,textarea,select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.92);
  outline:none;
}
textarea{min-height:120px; resize:vertical}
input::placeholder, textarea::placeholder{color: rgba(255,255,255,.45)}
input:focus, textarea:focus, select:focus{border-color: rgba(0,255,213,.55); box-shadow: 0 0 0 4px rgba(0,255,213,.12)}
.form-row{display:grid; gap:10px}
@media (min-width:760px){.form-row{grid-template-columns:1fr 1fr}}

.site-footer{margin-top:22px; padding:22px 0 18px; border-top:1px solid rgba(255,255,255,.10); background: rgba(0,0,0,.12)}
.footer-grid{display:grid; gap:14px}
@media (min-width:920px){.footer-grid{grid-template-columns:1.2fr 1fr .8fr; align-items:start}}
.footer-title{font-size:14px; color:rgba(255,255,255,.86); text-transform:uppercase; letter-spacing:.22px}
.footer-links{display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-top:10px}
.footer-link{color:rgba(255,255,255,.74); font-size:13px}
.footer-link:hover{color:rgba(255,255,255,.94)}
.footer-logo{width:40px;height:40px;border-radius:14px}
.footer-bottom{display:flex; justify-content:space-between; gap:10px; margin-top:14px; padding-top:14px; border-top:1px solid rgba(255,255,255,.08)}
.muted{color:var(--muted); font-size:13px; line-height:1.65}
.pill-row{display:flex; flex-wrap:wrap; gap:8px; margin-top:12px}
.pill{font-size:12px; padding:6px 10px; border-radius:999px; border:1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.05); color:rgba(255,255,255,.78)}

.to-top{
  position:fixed; right:14px; bottom:14px; z-index:60;
  width:46px; height:46px; border-radius:16px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(10,16,34,.78);
  color:rgba(255,255,255,.88);
  display:grid; place-items:center;
  box-shadow: 0 18px 55px rgba(0,0,0,.55);
  opacity:0; transform: translateY(10px); pointer-events:none;
  transition: opacity .18s ease, transform .18s ease, background .18s ease;
}
.to-top svg{width:22px;height:22px; fill: currentColor}
.to-top.is-visible{opacity:1; transform: translateY(0); pointer-events:auto}
.to-top:hover{background: rgba(255,255,255,.10)}

.hr{height:1px; background: rgba(255,255,255,.10); margin:14px 0}
.small{font-size:12px; color: rgba(255,255,255,.66)}
