*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --ink:#0f0a1e;
  --surface:#1a1230;
  --surface-light:#241840;
  --cyan:#06b6d4;
  --cyan-light:#22d3ee;
  --gold:#eab308;
  --gold-light:#fde047;
  --text:#f1f5f9;
  --text-muted:#94a3b8;
  --border:rgba(6,182,212,.22);
  --radius:.75rem;
  --header-h:3.75rem;
  --mobile-cta-h:3.75rem;
}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:"Plus Jakarta Sans",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(--cyan-light);text-decoration:none;transition:color .2s}
a:hover{color:var(--gold-light)}
.container{width:min(100% - 2rem,72rem);margin-inline:auto}

/* Update bar */
.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(--cyan)}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:200;
  background:rgba(15,10,30,.93);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:.75rem 0;
  min-height:var(--header-h);
}
.logo{
  font-size:clamp(.875rem,2.5vw,1.0625rem);
  font-weight:800;
  color:var(--text);
  letter-spacing:-.02em;
  line-height:1.2;
}
.logo em{font-style:normal;color:var(--cyan)}
.nav-toggle{display:none}
.nav-toggle-label{
  display:none;
  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;
  transition:transform .2s,opacity .2s;
}
.nav__list{display:flex;gap:1.25rem;list-style:none}
.nav__list a{
  color:var(--text-muted);
  font-weight:600;
  font-size:.9375rem;
}
.nav__list a:hover,.nav__list a.is-active{color:var(--cyan)}

/* Hero – compact split */
.hero{
  padding:2rem 0 2.5rem;
  background:linear-gradient(135deg,var(--ink) 0%,var(--surface) 50%,#12082a 100%);
  border-bottom:1px solid var(--border);
  overflow:hidden;
}
.hero__grid{
  display:grid;
  gap:1.5rem;
  align-items:center;
}
.hero__badge{
  display:inline-block;
  background:rgba(6,182,212,.15);
  color:var(--cyan-light);
  font-size:.75rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  padding:.35rem .85rem;
  border-radius:999px;
  border:1px solid var(--border);
  margin-bottom:.75rem;
}
.hero h1{
  font-size:clamp(1.625rem,5vw,2.5rem);
  font-weight:800;
  line-height:1.15;
  letter-spacing:-.03em;
  margin-bottom:.75rem;
}
.hero h1 span{color:var(--gold)}
.hero__lead{
  color:var(--text-muted);
  font-size:clamp(.9375rem,2.5vw,1.0625rem);
  max-width:36rem;
}
.hero__visual{
  display:none;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:0 8px 32px rgba(6,182,212,.12);
}
.hero__visual img{width:100%;height:auto;aspect-ratio:16/9;object-fit:cover}

/* Trust bar */
.trust-bar{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.75rem 1.5rem;
  padding:1rem;
  background:var(--surface);
  border-bottom:1px solid var(--border);
}
.trust-bar__item{
  display:flex;
  align-items:center;
  gap:.5rem;
  font-size:.8125rem;
  font-weight:600;
  color:var(--text-muted);
}
.trust-bar__icon{font-size:1rem}

/* Section title */
.section-title{
  font-size:clamp(1.25rem,3.5vw,1.75rem);
  font-weight:800;
  letter-spacing:-.02em;
  margin-bottom:1.25rem;
  text-align:center;
}
.section-title span{color:var(--cyan)}

/* Layout 4 – table ranking */
.rankings{padding:2rem 0 2.5rem}
.rank-table{
  display:flex;
  flex-direction:column;
  gap:.875rem;
}
.rank-table__head{
  display:none;
}
.rank-row{
  position:relative;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1rem;
  display:grid;
  gap:.75rem;
}
.rank-row--top{
  border-color:var(--gold);
  box-shadow:0 0 24px rgba(234,179,8,.15);
}
.rank-row__ribbon{
  position:absolute;
  top:-.5rem;
  left:1rem;
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  color:var(--ink);
  font-size:.6875rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
  padding:.25rem .65rem;
  border-radius:999px;
}
.rank-row__rank{
  display:flex;
  align-items:center;
  gap:.5rem;
}
.rank-row__num{
  display:flex;
  align-items:center;
  justify-content:center;
  width:2rem;
  height:2rem;
  background:var(--surface-light);
  border:1px solid var(--border);
  border-radius:50%;
  font-weight:800;
  font-size:.875rem;
  color:var(--cyan);
  flex-shrink:0;
}
.rank-row--top .rank-row__num{
  background:var(--gold);
  color:var(--ink);
  border-color:var(--gold);
}
.rank-row__casino{
  display:flex;
  align-items:center;
  gap:.875rem;
}
.casino-logo{
  width:110px;
  height:110px;
  border-radius:var(--radius);
  border:2px solid var(--border);
  overflow:hidden;
  flex-shrink:0;
  background:var(--surface-light);
}
.casino-logo img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.rank-row__info h2{
  font-size:1.125rem;
  font-weight:800;
  margin-bottom:.2rem;
}
.rank-row__rating{
  font-size:.8125rem;
  color:var(--text-muted);
}
.rank-row__stars{color:var(--gold);letter-spacing:.05em}
.rank-row__bonus-label{
  font-size:.6875rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--text-muted);
  margin-bottom:.25rem;
}
.rank-row__bonus-value{
  font-size:1rem;
  font-weight:700;
  color:var(--cyan-light);
}
.rank-row__features{
  list-style:none;
  display:grid;
  gap:.35rem;
}
.rank-row__features li{
  font-size:.8125rem;
  color:var(--text-muted);
  padding-left:1rem;
  position:relative;
}
.rank-row__features li::before{
  content:"";
  position:absolute;
  left:0;
  top:.55em;
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--cyan);
}
.rank-row__cell{
  display:flex;
  flex-direction:column;
}
.rank-row__cell[data-label]::before{
  content:attr(data-label);
  font-size:.6875rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--text-muted);
  margin-bottom:.35rem;
}
.rank-row__action{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:.5rem;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.35rem;
  background:linear-gradient(135deg,var(--cyan),#0891b2);
  color:var(--ink);
  font-weight:700;
  font-size:.9375rem;
  padding:.75rem 1.25rem;
  border-radius:var(--radius);
  border:none;
  cursor:pointer;
  transition:transform .15s,box-shadow .15s;
  text-align:center;
}
.btn:hover{
  color:var(--ink);
  transform:translateY(-1px);
  box-shadow:0 4px 16px rgba(6,182,212,.35);
}
.rank-row--top .btn{
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
}
.rank-row__verified{
  font-size:.6875rem;
  color:var(--text-muted);
  text-align:center;
}

/* Desktop table layout */
@media(min-width:768px){
  .hero__grid{grid-template-columns:1fr 1fr}
  .hero__visual{display:block}
  .rank-table__head{
    display:grid;
    grid-template-columns:3rem 1.6fr 1.1fr 1.4fr 9rem;
    gap:1rem;
    padding:.75rem 1rem;
    background:var(--surface-light);
    border:1px solid var(--border);
    border-radius:var(--radius);
    font-size:.6875rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.06em;
    color:var(--text-muted);
    position:sticky;
    top:var(--header-h);
    z-index:50;
  }
  .rank-row{
    grid-template-columns:3rem 1.6fr 1.1fr 1.4fr 9rem;
    gap:1rem;
    align-items:center;
    padding:1rem;
  }
  .rank-row__cell[data-label]::before{display:none}
  .rank-row__rank{justify-content:center}
  .rank-row__action{align-items:center}
}

/* SEO */
.seo{padding:2rem 0;background:var(--surface);border-top:1px solid var(--border)}
.seo h2{
  font-size:clamp(1.125rem,3vw,1.5rem);
  font-weight:800;
  margin-bottom:1rem;
  letter-spacing:-.02em;
}
.seo__text{display:grid;gap:1rem;color:var(--text-muted)}
.seo__text p{font-size:.9375rem}

/* FAQ */
.faq-section{padding:2rem 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:700;
  padding:1rem 2.5rem 1rem 1rem;
  cursor:pointer;
  position:relative;
  user-select:none;
}
.faq__item h3::after{
  content:"+";
  position:absolute;
  right:1rem;
  top:50%;
  transform:translateY(-50%);
  font-size:1.25rem;
  color:var(--cyan);
  transition:transform .2s;
}
.faq__item.is-open h3::after{content:"−"}
.faq__answer{
  display:none;
  padding:0 1rem 1rem;
  font-size:.875rem;
  color:var(--text-muted);
}
.faq__item.is-open .faq__answer{display:block}
.faq__more{
  display:inline-flex;
  font-weight:700;
  font-size:.9375rem;
}

/* Responsible */
.responsible{padding:1.5rem 0;border-top:1px solid var(--border)}
.responsible__badge{
  text-align:center;
  font-size:.875rem;
  color:var(--text-muted);
  padding:1rem;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
}
.responsible__badge strong{
  color:var(--gold);
  font-size:1rem;
  margin-right:.35rem;
}

/* Footer */
.footer{
  padding:2rem 0 1.5rem;
  background:var(--surface);
  border-top:1px solid var(--border);
}
.footer__nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.75rem 1.5rem;
  list-style:none;
  margin-bottom:1.25rem;
}
.footer__nav a{color:var(--text-muted);font-weight:600;font-size:.875rem}
.footer__nav a:hover{color:var(--cyan)}
.footer__disclaimer{
  font-size:.75rem;
  color:var(--text-muted);
  text-align:center;
  max-width:42rem;
  margin:0 auto 1rem;
  line-height:1.6;
}
.footer__copy{
  font-size:.75rem;
  color:var(--text-muted);
  text-align:center;
  opacity:.7;
}

/* Mobile CTA */
.mobile-cta{
  display:none;
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  z-index:300;
  padding:.625rem 1rem;
  background:rgba(15,10,30,.96);
  backdrop-filter:blur(8px);
  border-top:1px solid var(--border);
}
.mobile-cta .btn{max-width:none;width:100%}
@media(max-width:639px){
  body.has-mobile-cta .mobile-cta{display:block}
}

/* Mobile nav */
@media(max-width:767px){
  .nav-toggle-label{display:flex}
  .nav{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:var(--surface);
    border-bottom:1px solid var(--border);
    max-height:0;
    overflow:hidden;
    transition:max-height .3s;
  }
  .nav-toggle:checked ~ .nav{max-height:16rem}
  .nav-toggle:checked + .nav-toggle-label span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .nav-toggle:checked + .nav-toggle-label span:nth-child(2){opacity:0}
  .nav-toggle:checked + .nav-toggle-label span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
  .nav__list{flex-direction:column;padding:1rem;gap:0}
  .nav__list a{display:block;padding:.75rem 0;border-bottom:1px solid var(--border)}
  .nav__list li:last-child a{border-bottom:none}
  .header{position:relative}
  .header__inner{position:relative}
}

/* Subpages */
.page-hero{
  padding:2rem 0 1.5rem;
  background:linear-gradient(135deg,var(--surface),var(--ink));
  border-bottom:1px solid var(--border);
}
.page-hero h1{
  font-size:clamp(1.5rem,4vw,2rem);
  font-weight:800;
  margin-bottom:.5rem;
}
.page-hero p{color:var(--text-muted);font-size:.9375rem}
.content-section{padding:2rem 0}
.content-section h2{
  font-size:1.125rem;
  font-weight:800;
  margin:1.75rem 0 .75rem;
  color:var(--cyan-light);
}
.content-section h2:first-child{margin-top:0}
.content-section p,.content-section li{
  color:var(--text-muted);
  font-size:.9375rem;
  margin-bottom:.75rem;
}
.content-section ul{padding-left:1.25rem;margin-bottom:1rem}

/* Contact form */
.contact-form{max-width:32rem;margin-top:1.5rem}
.form-group{margin-bottom:1rem}
.form-group label{
  display:block;
  font-size:.8125rem;
  font-weight:700;
  margin-bottom:.35rem;
  color:var(--text);
}
.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  padding:.75rem 1rem;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  color:var(--text);
  font-family:inherit;
  font-size:.9375rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  outline:none;
  border-color:var(--cyan);
  box-shadow:0 0 0 3px rgba(6,182,212,.15);
}
.form-group textarea{min-height:7rem;resize:vertical}
.form-success{
  display:none;
  margin-top:1rem;
  padding:1rem;
  background:rgba(6,182,212,.12);
  border:1px solid var(--border);
  border-radius:var(--radius);
  color:var(--cyan-light);
  font-size:.875rem;
}
.form-success.is-visible{display:block}

/* Compact ranking on subpages */
.rank-table--compact .rank-table__head{display:none}
.rank-table--compact .rank-row{
  grid-template-columns:1fr;
}
@media(min-width:768px){
  .rank-table--compact .rank-row{
    grid-template-columns:3rem 1.4fr 1fr 9rem;
  }
  .rank-table--compact .rank-row__cell--features{display:none}
}
