*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --ink:#0f172a;
  --surface:#1e293b;
  --surface-light:#334155;
  --emerald:#10b981;
  --emerald-light:#34d399;
  --amber:#f59e0b;
  --red:#ef4444;
  --text:#f8fafc;
  --text-muted:#94a3b8;
  --border:rgba(16,185,129,.22);
  --radius:.875rem;
  --header-h:3.75rem;
  --mobile-cta-h:3.75rem;
}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}
}
body{
  font-family:"Rubik",system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;
  font-size:1rem;
  line-height:1.65;
  color:var(--text);
  background:var(--ink);
  overflow-x:hidden;
  min-height:100vh;
}
body.has-mobile-cta{padding-bottom:var(--mobile-cta-h)}
img{max-width:100%;height:auto;display:block}
a{color:var(--emerald-light);text-decoration:none;transition:color .2s}
a:hover{color:var(--amber)}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
  outline:2px solid var(--emerald);
  outline-offset:2px;
}
.container{width:min(100% - 2rem,42rem);margin-inline:auto}
@media(min-width:768px){.container{width:min(100% - 2rem,52rem)}}

.update-bar{
  background:var(--surface);
  color:var(--text-muted);
  text-align:center;
  padding:.5rem 1rem;
  font-size:.8125rem;
  border-bottom:1px solid var(--border);
}
.update-bar strong{color:var(--emerald)}

.header{
  position:sticky;
  top:0;
  z-index:200;
  background:rgba(15,23,42,.93);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:var(--header-h);
  gap:1rem;
  max-width:72rem;
  margin-inline:auto;
  padding-inline:1rem;
}
.logo{
  font-weight:700;
  font-size:1.0625rem;
  color:var(--text);
  letter-spacing:-.02em;
  white-space:nowrap;
}
.logo em{font-style:normal;color:var(--emerald)}
.nav-toggle{position:absolute;opacity:0;pointer-events:none}
.nav-toggle-label{
  display:flex;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  padding:.5rem;
}
.nav-toggle-label span{
  display:block;
  width:22px;
  height:2px;
  background:var(--text);
  border-radius:2px;
}
.nav{position:fixed;inset:var(--header-h) 0 0 0;background:rgba(15,23,42,.98);padding:1.5rem;transform:translateX(100%);transition:transform .3s;overflow-y:auto}
.nav-toggle:checked~.nav{transform:translateX(0)}
.nav__list{list-style:none;display:grid;gap:.25rem}
.nav__list a{
  display:block;
  padding:.75rem 1rem;
  color:var(--text-muted);
  font-weight:500;
  border-radius:var(--radius);
}
.nav__list a:hover,.nav__list a.is-active{color:var(--text);background:var(--surface-light)}
@media(min-width:768px){
  .nav-toggle-label{display:none}
  .nav{position:static;transform:none;padding:0;background:none;overflow:visible}
  .nav__list{display:flex;gap:.25rem}
  .nav__list a{padding:.5rem .875rem;font-size:.9375rem}
}

.hero{
  padding:2.5rem 0 2rem;
  background:
    radial-gradient(ellipse 75% 55% at 50% -10%,rgba(16,185,129,.12),transparent),
    var(--ink);
  text-align:center;
}
.hero__badge{
  display:inline-block;
  font-size:.75rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--amber);
  background:rgba(245,158,11,.12);
  border:1px solid rgba(245,158,11,.3);
  padding:.35rem .75rem;
  border-radius:999px;
  margin-bottom:1rem;
}
.hero h1{
  font-size:clamp(1.625rem,5vw,2.375rem);
  font-weight:700;
  line-height:1.15;
  letter-spacing:-.03em;
  margin-bottom:1rem;
}
.hero__lead{
  color:var(--text-muted);
  font-size:1.0625rem;
  max-width:36rem;
  margin-inline:auto;
}
.hero__visual{
  margin-top:1.75rem;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:0 16px 40px rgba(0,0,0,.35);
}
.hero__visual img{width:100%;aspect-ratio:16/9;object-fit:cover}

.trust-bar{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.75rem 1.25rem;
  padding:1rem;
  background:var(--surface);
  border-block:1px solid var(--border);
  font-size:.8125rem;
  font-weight:500;
}
.trust-bar__item{display:flex;align-items:center;gap:.4rem;color:var(--text-muted)}

.section-title{
  font-size:clamp(1.25rem,4vw,1.625rem);
  font-weight:700;
  letter-spacing:-.02em;
  margin-bottom:1.25rem;
  text-align:center;
}
.section-title span{color:var(--emerald)}

/* Layout #1 – vertical stack cards */
.showcase{padding:2.25rem 0}
.stack-showcase{display:grid;gap:1rem}
.stack-card{
  position:relative;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1.25rem;
  display:flex;
  flex-direction:column;
  gap:1rem;
  transition:border-color .2s,transform .2s;
}
.stack-card:hover{border-color:rgba(16,185,129,.45)}
.stack-card--top{
  border:2px solid var(--emerald);
  box-shadow:0 0 28px rgba(16,185,129,.15);
}
.stack-card__ribbon{
  position:absolute;
  top:-.5rem;
  left:50%;
  transform:translateX(-50%);
  font-size:.6875rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--ink);
  background:linear-gradient(135deg,var(--emerald),var(--amber));
  padding:.3rem .75rem;
  border-radius:999px;
  white-space:nowrap;
}
.stack-card--top{padding-top:1.75rem}
.stack-card__top{
  display:flex;
  align-items:center;
  gap:1rem;
}
.stack-card__rank{
  flex-shrink:0;
  width:2.25rem;
  height:2.25rem;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:1rem;
  color:var(--ink);
  background:var(--amber);
  border-radius:50%;
}
.stack-card--top .stack-card__rank{background:linear-gradient(135deg,var(--emerald),var(--amber))}
.casino-logo{
  flex-shrink:0;
  border-radius:calc(var(--radius) - 2px);
  overflow:hidden;
  border:2px solid var(--border);
  transition:border-color .2s;
}
.casino-logo:hover{border-color:var(--emerald)}
.casino-logo img{width:110px;height:110px;object-fit:cover}
.stack-card__info{flex:1;min-width:0}
.stack-card__info h2{font-size:1.125rem;font-weight:700;margin-bottom:.2rem}
.stack-card__rating{font-size:.8125rem;color:var(--text-muted)}
.stack-card__stars{color:var(--amber);letter-spacing:.05em}
.stack-card__bonus{
  text-align:center;
  padding:.875rem 1rem;
  background:linear-gradient(135deg,rgba(16,185,129,.12),rgba(245,158,11,.1));
  border:1px solid rgba(16,185,129,.25);
  border-radius:calc(var(--radius) - 2px);
}
.stack-card__bonus-label{
  font-size:.6875rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--text-muted);
  margin-bottom:.2rem;
}
.stack-card__bonus-value{
  font-size:1.0625rem;
  font-weight:700;
  color:var(--amber);
}
.stack-card__perks{
  list-style:none;
  display:grid;
  gap:.35rem;
  font-size:.875rem;
  color:var(--text-muted);
}
.stack-card__perks li{
  padding-left:1.15rem;
  position:relative;
}
.stack-card__perks li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--emerald);
  font-weight:700;
  font-size:.75rem;
}
.stack-card__foot{display:flex;flex-direction:column;gap:.5rem}
.stack-card__verified{font-size:.75rem;color:var(--emerald-light);text-align:center}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.8rem 1.25rem;
  font-family:inherit;
  font-size:.9375rem;
  font-weight:700;
  color:var(--ink);
  background:linear-gradient(135deg,var(--emerald),var(--emerald-light));
  border:none;
  border-radius:var(--radius);
  cursor:pointer;
  text-align:center;
  transition:transform .2s,box-shadow .2s;
  box-shadow:0 4px 14px rgba(16,185,129,.35);
}
.btn:hover{
  color:var(--ink);
  transform:translateY(-1px);
  box-shadow:0 6px 20px rgba(16,185,129,.45);
}

.showcase--compact .stack-card__perks{display:none}
.showcase--compact .stack-card__verified{display:none}

.seo{padding:2.25rem 0;background:var(--surface)}
.seo h2{
  font-size:clamp(1.125rem,3.5vw,1.5rem);
  font-weight:700;
  margin-bottom:1rem;
}
.seo__text{display:grid;gap:1rem;color:var(--text-muted);font-size:.9375rem}

.faq-section{padding:2.25rem 0}
.faq-teaser{display:grid;gap:.75rem;margin-bottom:1.25rem}
.faq__item{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
}
.faq__item h3{
  font-size:.9375rem;
  font-weight:600;
  padding:1rem 1.15rem;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.75rem;
}
.faq__item h3::after{content:"+";color:var(--emerald);flex-shrink:0}
.faq__item.is-open h3::after{content:"−"}
.faq__answer{
  display:none;
  padding:0 1.15rem 1rem;
  color:var(--text-muted);
  font-size:.875rem;
}
.faq__item.is-open .faq__answer{display:block}
.faq__more{font-weight:600;color:var(--emerald)}
.faq__more:hover{color:var(--amber)}

.responsible{padding:1.25rem 0;background:var(--surface-light);border-top:1px solid var(--border)}
.responsible__badge{text-align:center;font-size:.8125rem;color:var(--text-muted)}
.responsible__badge strong{
  display:inline-block;
  background:var(--red);
  color:#fff;
  font-weight:800;
  padding:.12rem .45rem;
  border-radius:.25rem;
  margin-right:.3rem;
}

.footer{
  padding:1.75rem 0 1.25rem;
  border-top:1px solid var(--border);
  background:var(--ink);
}
.footer__nav{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.5rem 1rem;
  margin-bottom:1rem;
}
.footer__nav a{color:var(--text-muted);font-size:.875rem}
.footer__disclaimer,.footer__copy{
  text-align:center;
  font-size:.75rem;
  color:var(--text-muted);
  max-width:36rem;
  margin-inline:auto;
}
.footer__disclaimer{margin-bottom:.5rem}
.footer__copy{opacity:.7}

.mobile-cta{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  z-index:300;
  padding:.625rem 1rem;
  background:rgba(15,23,42,.96);
  backdrop-filter:blur(10px);
  border-top:1px solid var(--border);
}
.mobile-cta .btn{width:100%}
@media(min-width:768px){.mobile-cta{display:none}}

.page-hero{
  padding:2rem 0 1.25rem;
  background:var(--surface);
  border-bottom:1px solid var(--border);
  text-align:center;
}
.page-hero h1{font-size:clamp(1.375rem,4vw,1.875rem);font-weight:700;margin-bottom:.4rem}
.page-hero p{color:var(--text-muted);font-size:.9375rem}
.content-section{padding:2rem 0}
.content-section h2{font-size:1.125rem;font-weight:700;margin:1.75rem 0 .65rem}
.content-section h2:first-child{margin-top:0}
.content-section p,.content-section li{color:var(--text-muted);font-size:.9375rem;margin-bottom:.65rem}
.content-section ul{padding-left:1.15rem;margin-bottom:.85rem}

.contact-form{max-width:100%;margin-top:1.25rem}
.form-group{margin-bottom:.875rem}
.form-group label{display:block;font-size:.8125rem;font-weight:600;margin-bottom:.3rem}
.form-group input,.form-group select,.form-group textarea{
  width:100%;
  padding:.7rem .875rem;
  font-family:inherit;
  font-size:1rem;
  color:var(--text);
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
}
.form-group textarea{min-height:6.5rem;resize:vertical}
.form-success{
  display:none;
  margin-top:.875rem;
  padding:.875rem;
  background:rgba(16,185,129,.12);
  border:1px solid rgba(16,185,129,.3);
  border-radius:var(--radius);
  color:var(--emerald-light);
  font-size:.875rem;
}
.form-success.is-visible{display:block}

.wide-container{width:min(100% - 2rem,72rem);margin-inline:auto}
