*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --ink:#0b1220;
  --surface:#151d2e;
  --surface-light:#1e293b;
  --teal:#2dd4bf;
  --teal-dark:#14b8a6;
  --coral:#fb923c;
  --coral-dark:#f97316;
  --text:#f1f5f9;
  --text-muted:#94a3b8;
  --border:rgba(45,212,191,.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:"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(--teal);text-decoration:none;transition:color .2s}
a:hover{color:var(--coral)}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
  outline:2px solid var(--teal);
  outline-offset:2px;
}
h1,h2,.section-title,.page-hero h1{font-family:"Literata",Georgia,serif}
.container{width:min(100% - 2rem,72rem);margin-inline:auto}

.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(--teal)}

.header{
  position:sticky;
  top:0;
  z-index:200;
  background:rgba(11,18,32,.94);
  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;
}
.logo{
  font-family:"Literata",Georgia,serif;
  font-weight:700;
  font-size:1rem;
  color:var(--text);
  white-space:nowrap;
  flex-shrink:0;
}
.logo em{font-style:normal;color:var(--teal)}
.nav-toggle{display:none}
.nav-toggle-label{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  padding:.5rem;
  z-index:210;
}
.nav-toggle-label span{
  display:block;
  width:22px;
  height:2px;
  background:var(--text);
  border-radius:2px;
  transition:transform .25s,opacity .25s;
}
.nav__list{list-style:none;display:flex;gap:.25rem}
.nav__list a{
  display:block;
  padding:.5rem .75rem;
  font-size:.875rem;
  font-weight:600;
  color:var(--text-muted);
  border-bottom:2px solid transparent;
}
.nav__list a:hover,.nav__list a.is-active{color:var(--text);border-bottom-color:var(--teal)}

/* Layout #8 – full hero + bordered cards */
.hero{
  position:relative;
  min-height:clamp(18rem,52vw,28rem);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  z-index:0;
}
.hero__bg img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero__overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(180deg,rgba(11,18,32,.55) 0%,rgba(11,18,32,.88) 100%);
}
.hero__content{
  position:relative;
  z-index:2;
  text-align:center;
  padding:2.5rem 1rem;
  max-width:42rem;
  margin-inline:auto;
}
.hero__badge{
  display:inline-block;
  padding:.35rem .9rem;
  border-radius:999px;
  border:1px solid var(--teal);
  color:var(--teal);
  font-size:.75rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  margin-bottom:1rem;
  background:rgba(45,212,191,.08);
}
.hero h1{
  font-size:clamp(1.5rem,5vw,2.25rem);
  font-weight:700;
  line-height:1.2;
  margin-bottom:.75rem;
  color:var(--text);
}
.hero__lead{
  color:var(--text-muted);
  font-size:clamp(.9375rem,2.5vw,1.0625rem);
  max-width:36rem;
  margin-inline:auto;
}

.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:.875rem;
  font-weight:600;
  color:var(--text);
}
.trust-bar__icon{font-size:1rem}

.showcase{padding:2rem 0 2.5rem}
.section-title{
  font-size:clamp(1.25rem,3.5vw,1.75rem);
  font-weight:700;
  margin-bottom:1.5rem;
  text-align:center;
  color:var(--text);
}
.section-title span{color:var(--teal)}

.bordered-cards{
  display:flex;
  flex-direction:column;
  gap:1rem;
}

.bordered-card{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:1rem;
  padding:1.25rem;
  background:var(--surface);
  border:2px solid var(--surface-light);
  border-radius:var(--radius);
  transition:border-color .2s,box-shadow .2s;
}
.bordered-card:hover{
  border-color:var(--teal);
  box-shadow:0 4px 20px rgba(45,212,191,.12);
}
.bordered-card--top{
  border-color:var(--teal);
  border-width:3px;
  box-shadow:0 0 0 1px rgba(45,212,191,.15),0 8px 28px rgba(45,212,191,.14);
}
.bordered-card__ribbon{
  position:absolute;
  top:0;
  right:1rem;
  transform:translateY(-50%);
  background:linear-gradient(135deg,var(--coral),var(--coral-dark));
  color:#fff;
  font-size:.6875rem;
  font-weight:800;
  padding:.3rem .75rem;
  border-radius:999px;
  letter-spacing:.03em;
  text-transform:uppercase;
}
.bordered-card__rank{
  position:absolute;
  top:.75rem;
  left:.75rem;
  width:2rem;
  height:2rem;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--surface-light);
  border:2px solid var(--teal);
  border-radius:.5rem;
  font-weight:800;
  font-size:.875rem;
  color:var(--teal);
}
.bordered-card--top .bordered-card__rank{
  background:var(--teal);
  color:var(--ink);
  border-color:var(--teal);
}
.bordered-card__head{
  display:flex;
  align-items:center;
  gap:1rem;
  padding-top:.5rem;
  padding-left:2.5rem;
}
.casino-logo{
  flex-shrink:0;
  border:2px solid var(--surface-light);
  border-radius:var(--radius);
  overflow:hidden;
  transition:border-color .2s;
}
.casino-logo:hover{border-color:var(--teal)}
.casino-logo img{
  width:110px;
  height:110px;
  object-fit:cover;
}
.bordered-card__info h2{
  font-family:"Literata",Georgia,serif;
  font-size:1.25rem;
  font-weight:700;
  color:var(--text);
  margin-bottom:.25rem;
}
.bordered-card__rating{
  font-size:.8125rem;
  color:var(--text-muted);
}
.bordered-card__stars{color:var(--coral);margin-right:.25rem}
.bordered-card__bonus{
  padding:.875rem 1rem;
  background:rgba(45,212,191,.08);
  border:1px dashed var(--teal);
  border-radius:var(--radius);
  text-align:center;
}
.bordered-card__bonus-label{
  font-size:.75rem;
  font-weight:600;
  color:var(--text-muted);
  text-transform:uppercase;
  letter-spacing:.04em;
  margin-bottom:.25rem;
}
.bordered-card__bonus-value{
  font-size:1.125rem;
  font-weight:800;
  color:var(--teal);
}
.bordered-card__perks{
  list-style:none;
  display:grid;
  gap:.35rem;
}
.bordered-card__perks li{
  font-size:.875rem;
  color:var(--text-muted);
  padding-left:1.25rem;
  position:relative;
}
.bordered-card__perks li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--teal);
  font-weight:700;
  font-size:.75rem;
}
.bordered-card__foot{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.5rem;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.35rem;
  padding:.75rem 1.5rem;
  border:none;
  border-radius:var(--radius);
  font-family:inherit;
  font-size:.9375rem;
  font-weight:700;
  cursor:pointer;
  background:linear-gradient(135deg,var(--teal),var(--teal-dark));
  color:var(--ink);
  transition:transform .15s,box-shadow .2s,color .2s;
  text-align:center;
  width:100%;
}
.btn:hover{
  color:var(--ink);
  box-shadow:0 4px 16px rgba(45,212,191,.35);
  transform:translateY(-1px);
}
.bordered-card--top .btn{
  background:linear-gradient(135deg,var(--coral),var(--coral-dark));
  color:#fff;
}
.bordered-card--top .btn:hover{
  color:#fff;
  box-shadow:0 4px 16px rgba(251,146,60,.35);
}
.bordered-card__verified{
  font-size:.75rem;
  color:var(--text-muted);
}

.seo{padding:2rem 0;background:var(--surface)}
.seo h2{
  font-size:clamp(1.25rem,3vw,1.5rem);
  font-weight:700;
  margin-bottom:1rem;
  color:var(--text);
}
.seo__text{display:grid;gap:1rem;color:var(--text-muted)}

.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-family:"Plus Jakarta Sans",system-ui,sans-serif;
  font-size:.9375rem;
  font-weight:700;
  padding:1rem 1.25rem;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
  color:var(--text);
}
.faq__item h3::after{
  content:"+";
  font-size:1.25rem;
  color:var(--teal);
  flex-shrink:0;
  transition:transform .2s;
}
.faq__item.is-open h3::after{transform:rotate(45deg)}
.faq__answer{
  padding:0 1.25rem 1rem;
  font-size:.875rem;
  color:var(--text-muted);
  display:none;
}
.faq__item.is-open .faq__answer{display:block}
.faq__more{display:inline-flex;font-weight:700;color:var(--teal)}

.responsible{
  padding:1.25rem 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background:rgba(45,212,191,.04);
}
.responsible__badge{
  text-align:center;
  font-size:.875rem;
  color:var(--text-muted);
}
.responsible__badge strong{color:var(--teal);font-size:1.125rem;margin-right:.35rem}

.footer{
  background:var(--surface);
  color:rgba(255,255,255,.75);
  padding:2rem 0;
}
.footer__nav{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:.5rem 1.25rem;
  margin-bottom:1.25rem;
}
.footer__nav a{color:rgba(255,255,255,.75);font-size:.875rem;font-weight:600}
.footer__nav a:hover{color:var(--teal)}
.footer__disclaimer{
  font-size:.8125rem;
  color:rgba(255,255,255,.55);
  margin-bottom:.75rem;
  line-height:1.6;
}
.footer__copy{font-size:.75rem;color:rgba(255,255,255,.4)}

.mobile-cta{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  z-index:300;
  padding:.75rem 1rem;
  background:rgba(11,18,32,.96);
  border-top:1px solid var(--border);
  backdrop-filter:blur(8px);
}
.mobile-cta .btn{width:100%}

.page-hero{
  padding:2.5rem 0 2rem;
  background:var(--surface);
  border-bottom:1px solid var(--border);
  text-align:center;
}
.page-hero h1{
  font-size:clamp(1.5rem,4vw,2rem);
  font-weight:700;
  margin-bottom:.5rem;
  color:var(--text);
}
.page-hero p{color:var(--text-muted);font-size:.9375rem}

.content-section{padding:2rem 0}
.content-section h2{
  font-family:"Literata",Georgia,serif;
  font-size:1.25rem;
  font-weight:700;
  margin:2rem 0 .75rem;
  color:var(--text);
}
.content-section h2:first-child{margin-top:0}
.content-section p,.content-section li{color:var(--text-muted);margin-bottom:.75rem}
.content-section ul{margin:.5rem 0 1rem 1.25rem}

.form-group{margin-bottom:1.25rem}
.form-group label{
  display:block;
  font-size:.875rem;
  font-weight:600;
  margin-bottom:.35rem;
  color:var(--text);
}
.form-group input,.form-group select,.form-group textarea{
  width:100%;
  padding:.75rem 1rem;
  border:1px solid var(--surface-light);
  border-radius:var(--radius);
  background:var(--surface);
  color:var(--text);
  font-family:inherit;
  font-size:1rem;
}
.form-group textarea{min-height:8rem;resize:vertical}
.form-success{
  margin-top:1rem;
  padding:.75rem 1rem;
  background:rgba(45,212,191,.12);
  border:1px solid var(--teal);
  border-radius:var(--radius);
  color:var(--teal);
  font-size:.875rem;
  display:none;
}
.form-success.is-visible{display:block}

.showcase--compact .bordered-card__bonus{border-left:none}
.showcase--compact .bordered-cards{gap:.75rem}

@media (max-width:767px){
  .nav-toggle-label{display:flex}
  .nav{
    position:fixed;
    top:var(--header-h);
    left:0;
    right:0;
    background:rgba(11,18,32,.98);
    border-bottom:1px solid var(--border);
    padding:1rem;
    transform:translateY(-120%);
    opacity:0;
    pointer-events:none;
    transition:transform .25s,opacity .25s;
  }
  .nav-toggle:checked ~ .nav{
    transform:translateY(0);
    opacity:1;
    pointer-events:auto;
  }
  .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;gap:.25rem}
  .nav__list a{padding:.75rem 1rem}
  .mobile-cta{display:block}
}
@media (min-width:768px){
  .nav-toggle-label{display:none}
  .nav__list{display:flex}
  .mobile-cta{display:none}
  .bordered-card{
    flex-direction:row;
    align-items:center;
    flex-wrap:wrap;
    padding:1.25rem 1.5rem;
    gap:1rem 1.25rem;
  }
  .bordered-card__head{
    flex:1 1 14rem;
    padding-left:2.5rem;
    min-width:0;
  }
  .bordered-card__bonus{
    flex:0 0 11rem;
    align-self:stretch;
    display:flex;
    flex-direction:column;
    justify-content:center;
  }
  .bordered-card__perks{
    flex:1 1 12rem;
    min-width:0;
  }
  .bordered-card__foot{
    flex:0 0 9.5rem;
    align-self:center;
  }
  .bordered-card__foot .btn{width:100%}
}
@media (min-width:1024px){
  .bordered-card{gap:1.25rem 1.5rem}
  .bordered-card__bonus{flex:0 0 12rem}
  .bordered-card__foot{flex:0 0 10rem}
}
