*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --ink:#0c0f14;
  --surface:#161b26;
  --surface-light:#1e2536;
  --rose:#f43f5e;
  --rose-light:#fb7185;
  --sky:#38bdf8;
  --sky-light:#7dd3fc;
  --gold:#fbbf24;
  --text:#e2e8f0;
  --text-muted:#94a3b8;
  --border:rgba(56,189,248,.2);
  --radius:.75rem;
  --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:"Sora",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(--sky-light);text-decoration:none;transition:color .2s}
a:hover{color:var(--gold)}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
  outline:2px solid var(--sky);
  outline-offset:2px;
}
.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(--rose)}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:200;
  background:rgba(12,15,20,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
  height:var(--header-h);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:100%;
  gap:1rem;
}
.logo{
  font-size:1rem;
  font-weight:700;
  color:var(--text);
  white-space:nowrap;
  flex-shrink:0;
}
.logo em{color:var(--rose);font-style:normal}
.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 .2s,opacity .2s;
}
.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-radius:calc(var(--radius) - 2px);
}
.nav__list a:hover,.nav__list a.is-active{
  color:var(--text);
  background:rgba(56,189,248,.1);
}

@media(max-width:767px){
  .nav-toggle-label{display:flex}
  .nav{
    position:fixed;
    inset:var(--header-h) 0 0 0;
    background:rgba(12,15,20,.98);
    padding:1.5rem;
    transform:translateX(100%);
    transition:transform .25s ease;
    z-index:190;
  }
  .nav-toggle:checked ~ .nav{transform:translateX(0)}
  .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:.875rem 1rem;font-size:1rem}
}

/* Hero */
.hero{
  position:relative;
  padding:2rem 0 2.5rem;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%,rgba(244,63,94,.15),transparent),
    radial-gradient(ellipse 60% 50% at 80% 60%,rgba(56,189,248,.12),transparent);
  pointer-events:none;
}
.hero__grid{
  position:relative;
  display:grid;
  gap:1.5rem;
  align-items:center;
}
.hero__badge{
  display:inline-block;
  font-size:.75rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--sky);
  background:rgba(56,189,248,.12);
  border:1px solid var(--border);
  border-radius:999px;
  padding:.35rem .875rem;
  margin-bottom:.875rem;
}
.hero h1{
  font-size:clamp(1.625rem,5.5vw,2.5rem);
  font-weight:800;
  line-height:1.15;
  margin-bottom:.875rem;
}
.hero__lead{
  color:var(--text-muted);
  font-size:.9375rem;
  max-width:36rem;
  line-height:1.7;
}
.hero__visual{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:0 8px 32px rgba(0,0,0,.35);
}
.hero__visual img{width:100%;height:auto;aspect-ratio:16/9;object-fit:cover}

@media(min-width:768px){
  .hero{padding:3rem 0 3.5rem}
  .hero__grid{grid-template-columns:1fr 1fr}
}

/* Trust bar */
.trust-bar{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.5rem 1.5rem;
  padding:.875rem 1rem;
  background:var(--surface);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.trust-bar__item{
  display:flex;
  align-items:center;
  gap:.375rem;
  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.625rem);
  font-weight:800;
  margin-bottom:1rem;
}
.section-title span{color:var(--rose)}

/* Showcase carousel – layout #2 */
.showcase{padding:2rem 0 2.5rem}
.showcase__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  margin-bottom:1rem;
  flex-wrap:wrap;
}
.carousel-hint{
  font-size:.75rem;
  font-weight:600;
  color:var(--text-muted);
  display:flex;
  align-items:center;
  gap:.375rem;
}
.carousel-hint::after{content:"→";color:var(--sky)}
@media(min-width:768px){.carousel-hint{display:none}}

.carousel{
  display:flex;
  gap:1rem;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:thin;
  scrollbar-color:var(--rose) var(--surface);
  padding:.25rem .25rem 1rem;
  margin:0 -.25rem;
}
.carousel::-webkit-scrollbar{height:6px}
.carousel::-webkit-scrollbar-track{background:var(--surface);border-radius:3px}
.carousel::-webkit-scrollbar-thumb{background:var(--rose);border-radius:3px}

/* Wide casino card */
.wide-card{
  position:relative;
  flex:0 0 min(88vw,20rem);
  scroll-snap-align:start;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.wide-card--top{
  border-color:rgba(244,63,94,.45);
  box-shadow:0 0 24px rgba(244,63,94,.12);
}
.wide-card__ribbon{
  position:absolute;
  top:.75rem;
  right:-2rem;
  background:var(--rose);
  color:#fff;
  font-size:.6875rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
  padding:.25rem 2.5rem;
  transform:rotate(35deg);
  z-index:2;
}
.wide-card__head{
  display:flex;
  align-items:center;
  gap:.875rem;
  padding:1rem 1rem .75rem;
}
.wide-card__rank{
  flex-shrink:0;
  width:2rem;
  height:2rem;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--surface-light);
  border:1px solid var(--border);
  border-radius:50%;
  font-size:.8125rem;
  font-weight:800;
  color:var(--sky);
}
.wide-card--top .wide-card__rank{
  background:var(--rose);
  border-color:var(--rose);
  color:#fff;
}
.casino-logo{
  flex-shrink:0;
  border-radius:var(--radius);
  overflow:hidden;
  border:2px solid var(--border);
  transition:border-color .2s;
}
.casino-logo:hover{border-color:var(--sky)}
.casino-logo img{
  width:110px;
  height:110px;
  object-fit:cover;
  display:block;
}
.wide-card__info h2{
  font-size:1.0625rem;
  font-weight:800;
  margin-bottom:.25rem;
}
.wide-card__rating{
  font-size:.8125rem;
  color:var(--text-muted);
}
.wide-card__stars{color:var(--gold);letter-spacing:.05em}

.wide-card__bonus{
  margin:0 1rem;
  padding:.875rem 1rem;
  background:linear-gradient(135deg,rgba(244,63,94,.18),rgba(56,189,248,.12));
  border:1px solid rgba(244,63,94,.3);
  border-radius:calc(var(--radius) - 2px);
  text-align:center;
}
.wide-card__bonus-label{
  font-size:.6875rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.05em;
  color:var(--text-muted);
  margin-bottom:.25rem;
}
.wide-card__bonus-value{
  font-size:1rem;
  font-weight:800;
  color:var(--rose-light);
  line-height:1.3;
}

.wide-card__features{
  list-style:none;
  padding:1rem 1rem .5rem;
  display:grid;
  gap:.375rem;
}
.wide-card__features li{
  font-size:.8125rem;
  color:var(--text-muted);
  padding-left:1.125rem;
  position:relative;
}
.wide-card__features li::before{
  content:"";
  position:absolute;
  left:0;
  top:.55em;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--sky);
}

.wide-card__foot{
  padding:0 1rem 1rem;
  margin-top:auto;
  display:flex;
  flex-direction:column;
  gap:.5rem;
}
.wide-card__verified{
  font-size:.6875rem;
  color:var(--text-muted);
  text-align:center;
}

/* Desktop: stacked wide rows */
@media(min-width:768px){
  .carousel{
    flex-direction:column;
    overflow-x:visible;
    scroll-snap-type:none;
    gap:1rem;
    padding:0;
    margin:0;
  }
  .wide-card{
    flex:none;
    width:100%;
    flex-direction:row;
    flex-wrap:wrap;
    align-items:stretch;
  }
  .wide-card__head{
    flex:0 0 auto;
    min-width:16rem;
    padding:1.25rem;
    border-right:1px solid var(--border);
  }
  .wide-card__bonus{
    flex:0 0 13rem;
    margin:1.25rem 0;
    align-self:center;
    display:flex;
    flex-direction:column;
    justify-content:center;
  }
  .wide-card__features{
    flex:1 1 12rem;
    padding:1.25rem 1rem;
    align-content:center;
    grid-template-columns:1fr 1fr;
  }
  .wide-card__foot{
    flex:0 0 10rem;
    padding:1.25rem;
    justify-content:center;
    border-left:1px solid var(--border);
    margin-top:0;
  }
}

@media(min-width:960px){
  .wide-card{flex-wrap:nowrap}
  .wide-card__features{grid-template-columns:1fr}
}

/* Compact showcase on subpages */
.showcase--compact .wide-card__features{grid-template-columns:1fr}
.showcase--compact .wide-card__foot{border-left:none;border-top:1px solid var(--border)}
@media(min-width:768px){
  .showcase--compact .wide-card__foot{
    border-left:1px solid var(--border);
    border-top:none;
  }
}

/* Button */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.375rem;
  width:100%;
  padding:.8125rem 1.25rem;
  background:linear-gradient(135deg,var(--rose),#e11d48);
  color:#fff;
  font-family:inherit;
  font-size:.875rem;
  font-weight:700;
  border:none;
  border-radius:var(--radius);
  cursor:pointer;
  text-align:center;
  transition:transform .15s,box-shadow .15s;
  box-shadow:0 4px 16px rgba(244,63,94,.3);
}
.btn:hover{
  color:#fff;
  transform:translateY(-1px);
  box-shadow:0 6px 20px rgba(244,63,94,.4);
}

/* SEO */
.seo{
  padding:2rem 0;
  background:var(--surface);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.seo h2{
  font-size:clamp(1.125rem,3vw,1.5rem);
  font-weight:800;
  margin-bottom:1rem;
}
.seo__text{
  display:grid;
  gap:1rem;
}
.seo__text p{
  color:var(--text-muted);
  font-size:.9375rem;
  line-height:1.75;
}

/* FAQ */
.faq-section{padding:2rem 0}
.faq-teaser{margin-bottom:1.5rem}
.faq__item{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  margin-bottom:.75rem;
  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(--rose);
}
.faq__item.is-open h3::after{content:"−"}
.faq__answer{
  display:none;
  padding:0 1rem 1rem;
  color:var(--text-muted);
  font-size:.875rem;
  line-height:1.7;
}
.faq__item.is-open .faq__answer{display:block}
.faq__more{
  display:inline-flex;
  align-items:center;
  gap:.375rem;
  font-weight:700;
  font-size:.9375rem;
}

/* Responsible */
.responsible{
  padding:1.5rem 0 2rem;
  text-align:center;
}
.responsible__badge{
  display:inline-flex;
  align-items:center;
  flex-wrap:wrap;
  justify-content:center;
  gap:.5rem;
  background:var(--surface);
  border:1px solid var(--rose);
  border-radius:var(--radius);
  padding:.75rem 1.25rem;
  font-size:.8125rem;
  color:var(--text-muted);
}
.responsible__badge strong{color:var(--rose)}

/* Footer */
.footer{
  background:var(--surface);
  border-top:1px solid var(--border);
  padding:2rem 0 1.5rem;
}
.footer__nav{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.5rem 1.25rem;
  margin-bottom:1.25rem;
}
.footer__nav a{
  font-size:.875rem;
  font-weight:600;
  color:var(--text-muted);
}
.footer__nav a:hover{color:var(--sky-light)}
.footer__disclaimer{
  font-size:.75rem;
  color:var(--text-muted);
  text-align:center;
  max-width:42rem;
  margin:0 auto 1rem;
  line-height:1.65;
}
.footer__copy{
  font-size:.75rem;
  color:var(--text-muted);
  text-align:center;
  opacity:.7;
}

/* Mobile sticky CTA */
.mobile-cta{
  display:none;
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  z-index:300;
  padding:.625rem 1rem;
  background:rgba(12,15,20,.96);
  backdrop-filter:blur(10px);
  border-top:1px solid var(--border);
}
@media(max-width:767px){
  .mobile-cta{display:block}
  body.has-mobile-cta .footer{padding-bottom:1rem}
}

/* Page hero (subpages) */
.page-hero{
  padding:2rem 0;
  background:var(--surface);
  border-bottom:1px solid var(--border);
  text-align:center;
}
.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 */
.content-section{padding:2rem 0}
.content-section h2{
  font-size:1.125rem;
  font-weight:700;
  margin:1.5rem 0 .75rem;
}
.content-section h2:first-child{margin-top:0}
.content-section p{
  color:var(--text-muted);
  margin-bottom:1rem;
  font-size:.9375rem;
  line-height:1.75;
}
.content-section ul{
  margin:0 0 1rem 1.25rem;
  color:var(--text-muted);
  font-size:.9375rem;
}
.content-section li{margin-bottom:.375rem}

/* Contact form */
.contact-form{max-width:32rem;margin-top:1.5rem}
.form-group{margin-bottom:1rem}
.form-group label{
  display:block;
  font-size:.875rem;
  font-weight:600;
  margin-bottom:.375rem;
}
.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 textarea{min-height:7rem;resize:vertical}
.form-success{
  display:none;
  margin-top:1rem;
  padding:.875rem 1rem;
  background:rgba(56,189,248,.12);
  border:1px solid var(--border);
  border-radius:var(--radius);
  color:var(--sky-light);
  font-size:.875rem;
}
.form-success.is-visible{display:block}
