*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --bg:#0b1220;
  --bg-elevated:#111b2e;
  --bg-card:#151f33;
  --text:#e8eef7;
  --text-muted:#94a3b8;
  --cyan:#2dd4bf;
  --cyan-dark:#14b8a6;
  --gold:#fbbf24;
  --gold-dim:#d97706;
  --border:rgba(45,212,191,.18);
  --glow:0 0 24px rgba(45,212,191,.25);
  --shadow:0 12px 40px rgba(0,0,0,.45);
  --radius:.5rem;
  --header-h:4.5rem;
  --mobile-cta-h:4.75rem;
}
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}
}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:"Outfit",system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;
  font-size:1rem;
  line-height:1.6;
  color:var(--text);
  background:var(--bg);
  overflow-x:hidden;
  padding-bottom:env(safe-area-inset-bottom,0);
  min-height:100vh;
}
body.has-mobile-cta{padding-bottom:calc(var(--mobile-cta-h) + env(safe-area-inset-bottom,0))}
img{max-width:100%;height:auto;display:block}
a{color:var(--cyan);text-decoration:none}
a:hover{color:var(--gold)}
.container{width:min(100% - 2rem,76rem);margin-inline:auto}
.section{padding:3.5rem 0}
.section h2{
  font-family:"Fraunces",Georgia,serif;
  font-size:clamp(1.5rem,4vw,2.15rem);
  color:var(--text);
  text-align:center;
  margin-bottom:.75rem;
  font-weight:700;
  letter-spacing:-.02em;
}
.section__lead{
  text-align:center;
  color:var(--text-muted);
  max-width:44rem;
  margin:0 auto 2rem;
  font-size:clamp(.95rem,2.5vw,1.05rem);
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.875rem 1.75rem;
  font-size:1rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:#042f2e;
  background:linear-gradient(135deg,var(--cyan),var(--cyan-dark));
  border:1px solid rgba(45,212,191,.5);
  border-radius:var(--radius);
  box-shadow:var(--glow);
  transition:transform .2s,box-shadow .2s,filter .2s;
  min-height:48px;
  cursor:pointer;
  text-align:center;
  touch-action:manipulation;
}
.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 0 32px rgba(45,212,191,.45),0 0 0 2px rgba(251,191,36,.35);
  filter:brightness(1.08);
  color:#042f2e;
}
.btn:active{transform:scale(.98)}
.btn--header{
  font-size:.78rem;
  padding:.65rem 1.15rem;
  white-space:nowrap;
  flex-shrink:0;
}
.btn--card{
  width:100%;
  font-size:1.05rem;
  padding:1rem 1.5rem;
  min-height:56px;
  margin-top:auto;
}
.btn--hero{font-size:1.05rem;padding:1rem 2rem;min-height:52px}
.header{
  position:sticky;
  top:0;
  z-index:200;
  background:rgba(11,18,32,.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
  padding-top:env(safe-area-inset-top,0);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.75rem;
  padding:.75rem 0;
  min-height:var(--header-h);
  position:relative;
}
.logo{
  font-size:clamp(.95rem,2.5vw,1.25rem);
  font-weight:800;
  color:var(--text);
  line-height:1.2;
  cursor:default;
  user-select:none;
  flex-shrink:0;
  letter-spacing:-.03em;
  z-index:2;
}
.logo em{
  font-style:normal;
  color:var(--cyan);
  font-weight:700;
}
.nav-toggle{display:none}
.nav-toggle-label{
  display:flex;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  padding:.5rem;
  min-width:48px;
  min-height:48px;
  align-items:center;
  justify-content:center;
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:var(--bg-card);
  z-index:2;
  margin-left:auto;
}
.nav-toggle-label span{
  width:22px;
  height:2px;
  background:var(--cyan);
  border-radius:2px;
  pointer-events:none;
}
.nav{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  pointer-events:none;
}
.nav__list{
  display:flex;
  gap:clamp(.5rem,1.5vw,1.25rem);
  list-style:none;
  flex-wrap:wrap;
  justify-content:center;
  pointer-events:auto;
}
.nav__list a{
  color:var(--text-muted);
  font-weight:600;
  font-size:.85rem;
  padding:.4rem .25rem;
  border-bottom:2px solid transparent;
  transition:color .2s,border-color .2s;
}
.nav__list a:hover{color:var(--cyan);border-bottom-color:rgba(45,212,191,.5)}
.btn--header{z-index:2}
@media(max-width:768px){
  .nav{
    position:fixed;
    inset:0;
    top:var(--header-h);
    left:0;
    transform:none;
    background:rgba(11,18,32,.98);
    padding:1.5rem 1rem;
    padding-top:env(safe-area-inset-top,0);
    max-height:0;
    overflow:hidden;
    opacity:0;
    transition:max-height .35s ease,opacity .25s;
    pointer-events:none;
    z-index:150;
  }
  .nav-toggle:checked~.nav{
    max-height:100vh;
    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-toggle-label span{transition:transform .2s,opacity .2s}
  .nav__list{
    flex-direction:column;
    align-items:stretch;
    gap:0;
  }
  .nav__list a{
    display:block;
    padding:1rem;
    min-height:48px;
    font-size:1rem;
    border-bottom:1px solid var(--border);
  }
  .header__inner .btn--header{display:none}
  .nav-toggle-label{margin-left:auto}
}
@media(min-width:769px){
  .nav-toggle,.nav-toggle-label{
    position:absolute;
    width:1px;
    height:1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
    padding:0;
    margin:-1px;
  }
}
.casinos{
  background:linear-gradient(180deg,var(--bg) 0%,#0d1628 50%,var(--bg) 100%);
  position:relative;
}
.casinos::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse 80% 50% at 50% 0%,rgba(45,212,191,.08),transparent 70%);
  pointer-events:none;
}
.casinos--first{
  padding-top:1rem;
  padding-bottom:2.5rem;
  position:relative;
}
.casinos__head{
  margin-bottom:1.25rem;
  text-align:center;
  position:relative;
}
.casinos--first h1{
  font-family:"Fraunces",Georgia,serif;
  font-size:clamp(1.35rem,4.5vw,2.1rem);
  color:var(--text);
  margin-bottom:.5rem;
  line-height:1.15;
  font-weight:700;
  letter-spacing:-.02em;
}
.casinos__lead{
  font-size:clamp(.88rem,2.5vw,.98rem);
  max-width:40rem;
  margin-inline:auto;
  color:var(--text-muted);
}
.casinos__scroll-wrap{
  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
  scroll-snap-type:x mandatory;
  scroll-padding-inline:1rem;
  overscroll-behavior-x:contain;
  scrollbar-width:thin;
  scrollbar-color:rgba(45,212,191,.4) transparent;
  padding:.25rem 0 1rem;
  margin:0 -1rem;
  padding-inline:1rem;
  position:relative;
}
.casinos__scroll-wrap::-webkit-scrollbar{height:6px}
.casinos__scroll-wrap::-webkit-scrollbar-thumb{
  background:rgba(45,212,191,.35);
  border-radius:3px;
}
.casinos__track{
  display:flex;
  gap:1rem;
  width:max-content;
  padding-bottom:.25rem;
}
.casino-card{
  flex:0 0 min(85vw,18.5rem);
  scroll-snap-align:start;
  scroll-snap-stop:always;
  display:flex;
  flex-direction:column;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-left:3px solid var(--cyan);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
  position:relative;
  transition:transform .2s,box-shadow .2s,border-color .2s;
}
.casino-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 48px rgba(0,0,0,.55),var(--glow);
  border-left-color:var(--gold);
}
.casino-card--featured{
  border-left-width:4px;
  border-color:rgba(45,212,191,.35);
  box-shadow:var(--shadow),var(--glow);
}
.casino-card--featured::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  border-radius:inherit;
  box-shadow:inset 0 0 0 1px rgba(251,191,36,.15);
}
.casino-card__rank{
  position:absolute;
  top:.65rem;
  right:.65rem;
  z-index:3;
  font-size:.7rem;
  font-weight:800;
  letter-spacing:.04em;
  padding:.25rem .55rem;
  background:rgba(11,18,32,.85);
  color:var(--gold);
  border:1px solid rgba(251,191,36,.4);
  border-radius:.25rem;
}
.casino-card__media{
  display:block;
  aspect-ratio:16/9;
  overflow:hidden;
  background:#0a1018;
  flex-shrink:0;
}
.casino-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}
.casino-card__media:hover img{transform:scale(1.04)}
.casino-card__body{
  padding:1rem 1rem 1.15rem;
  display:flex;
  flex-direction:column;
  flex:1;
  gap:.35rem;
}
.casino-card__body h3{
  font-size:1.15rem;
  font-weight:700;
  color:var(--text);
}
.casino-card__bonus{
  font-size:.88rem;
  font-weight:600;
  color:var(--cyan);
  line-height:1.35;
}
.casino-card__perks{
  list-style:none;
  margin:.35rem 0 .5rem;
  font-size:.82rem;
  color:var(--text-muted);
}
.casino-card__perks li{
  padding:.2rem 0 .2rem 1.1rem;
  position:relative;
}
.casino-card__perks li::before{
  content:"";
  position:absolute;
  left:0;
  top:.55rem;
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--cyan);
}
@media(min-width:640px){
  .casino-card{flex:0 0 17.5rem}
}
@media(min-width:1024px){
  .casinos__scroll-wrap{overflow-x:visible}
  .casinos__track{
    width:100%;
    flex-wrap:nowrap;
    justify-content:stretch;
    gap:.85rem;
  }
  .casino-card{flex:1 1 0;min-width:0}
}
.hero{
  position:relative;
  padding:4rem 0;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  background:url("images/hero.webp") center/cover no-repeat;
  z-index:0;
}
.hero__bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(160deg,rgba(11,18,32,.92) 0%,rgba(11,18,32,.75) 45%,rgba(17,27,46,.88) 100%);
}
.hero__content{
  position:relative;
  z-index:1;
  text-align:center;
  max-width:44rem;
  margin-inline:auto;
  padding:2rem 1.5rem;
  background:rgba(21,31,51,.72);
  border:1px solid var(--border);
  border-radius:var(--radius);
  backdrop-filter:blur(8px);
}
.hero h2{
  font-family:"Fraunces",Georgia,serif;
  font-size:clamp(1.4rem,4vw,2rem);
  margin-bottom:.65rem;
  color:var(--text);
}
.hero__subtitle{
  color:var(--text-muted);
  margin-bottom:1.25rem;
  font-size:clamp(.95rem,2.5vw,1.05rem);
}
.hero__text{
  margin-top:1.75rem;
  text-align:left;
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.hero__text p{
  font-size:.95rem;
  color:var(--text-muted);
  line-height:1.65;
}
.vorteile{background:var(--bg-elevated)}
.vorteile__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:1rem;
  list-style:none;
}
@media(min-width:600px){
  .vorteile__grid{grid-template-columns:repeat(2,1fr)}
}
@media(min-width:960px){
  .vorteile__grid{grid-template-columns:repeat(4,1fr)}
}
.vorteil{
  padding:1.35rem 1.15rem;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  text-align:center;
  transition:border-color .2s,box-shadow .2s;
}
.vorteil:hover{
  border-color:rgba(45,212,191,.4);
  box-shadow:var(--glow);
}
.vorteil__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:3rem;
  height:3rem;
  margin-bottom:.75rem;
  color:var(--cyan);
  background:rgba(45,212,191,.1);
  border-radius:var(--radius);
}
.vorteil h3{
  font-size:1rem;
  font-weight:700;
  margin-bottom:.4rem;
  color:var(--text);
}
.vorteil p{font-size:.88rem;color:var(--text-muted)}
.faq__list{
  display:flex;
  flex-direction:column;
  gap:.75rem;
  max-width:48rem;
  margin-inline:auto;
}
.faq__item{
  padding:1.15rem 1.25rem;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  border-left:3px solid var(--cyan);
}
.faq__item h3{
  font-size:1rem;
  font-weight:700;
  color:var(--text);
  margin-bottom:.5rem;
}
.faq__item p{font-size:.9rem;color:var(--text-muted)}
.responsible{
  padding:2.5rem 0;
  background:linear-gradient(180deg,var(--bg) 0%,#080e18 100%);
  border-top:1px solid var(--border);
}
.responsible__inner{text-align:center;max-width:36rem;margin-inline:auto}
.responsible__badge{
  display:inline-block;
  font-size:1.5rem;
  font-weight:800;
  color:var(--gold);
  border:2px solid var(--gold-dim);
  padding:.35rem .75rem;
  border-radius:var(--radius);
  margin-bottom:.75rem;
}
.responsible h2{
  font-family:"Fraunces",Georgia,serif;
  font-size:1.35rem;
  margin-bottom:.5rem;
}
.responsible p{color:var(--text-muted);font-size:.9rem;margin-bottom:.5rem}
.responsible__links{
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  justify-content:center;
  margin-top:.75rem;
}
.responsible__links a{
  font-weight:600;
  padding:.5rem .75rem;
  min-height:48px;
  display:inline-flex;
  align-items:center;
}
.footer{
  padding:2rem 0 calc(2rem + env(safe-area-inset-bottom,0));
  background:#080e18;
  border-top:1px solid var(--border);
  text-align:center;
}
.footer__inner{display:flex;flex-direction:column;gap:.5rem}
.footer__domain{font-weight:700;color:var(--cyan);font-size:.95rem}
.footer__copy,.footer__disclaimer,.footer__age{
  font-size:.8rem;
  color:var(--text-muted);
  line-height:1.5;
}
.footer__age strong{color:var(--gold)}
.mobile-cta-bar{
  display:none;
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:300;
  padding:.65rem 1rem;
  padding-bottom:calc(.65rem + env(safe-area-inset-bottom,0));
  background:rgba(11,18,32,.96);
  border-top:1px solid var(--border);
  backdrop-filter:blur(12px);
  box-shadow:0 -8px 32px rgba(0,0,0,.5);
}
.mobile-cta-bar .btn{
  width:100%;
  min-height:56px;
  font-size:1.05rem;
}
@media(max-width:768px){
  .mobile-cta-bar{display:block}
  body.has-mobile-cta .footer{
    padding-bottom:calc(2rem + var(--mobile-cta-h) + env(safe-area-inset-bottom,0));
  }
}
