*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --bg:#1a1a2e;
  --bg-card:#22223a;
  --bg-elevated:#2a2a45;
  --text:#f0eef5;
  --text-muted:#9d9bb5;
  --coral:#f43f5e;
  --coral-dark:#e11d48;
  --peach:#fda4af;
  --coral-glow:rgba(244,63,94,.3);
  --border:rgba(244,63,94,.15);
  --shadow:0 10px 36px rgba(0,0,0,.4);
  --radius:.5rem;
  --header-h:6.5rem;
  --mobile-cta-h:4.75rem;
}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:"Figtree",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;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--peach);text-decoration:none}
a:hover{color:#fff}
.container{width:min(100% - 2rem,76rem);margin-inline:auto}
.section{padding:3.5rem 0}
.section h2{
  font-size:clamp(1.5rem,4vw,2rem);
  color:var(--text);
  text-align:center;
  margin-bottom:.75rem;
  font-weight:800;
  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:800;
  text-transform:uppercase;
  letter-spacing:.07em;
  color:#fff;
  background:linear-gradient(135deg,var(--coral),var(--coral-dark));
  border:none;
  border-radius:var(--radius);
  box-shadow:0 4px 20px var(--coral-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 8px 32px rgba(244,63,94,.5);
  filter:brightness(1.06);
  color:#fff;
}
.btn:active{transform:scale(.98)}
.btn--header{font-size:.78rem;padding:.6rem 1.15rem;white-space:nowrap}
.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;
  padding-top:env(safe-area-inset-top,0);
}
.header__bar{
  background:var(--bg-card);
  border-bottom:2px solid var(--border);
  box-shadow:0 4px 24px rgba(0,0,0,.35);
}
.header__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:.75rem 0;
  min-height:3.5rem;
}
.logo{
  font-size:clamp(1rem,2.5vw,1.25rem);
  font-weight:800;
  color:var(--text);
  line-height:1.2;
  cursor:default;
  user-select:none;
  letter-spacing:-.03em;
}
.logo__accent{color:var(--coral)}
.nav-toggle{display:none}
.nav-toggle-label{
  display:none;
  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-elevated);
}
.nav-toggle-label span{
  width:22px;
  height:2px;
  background:var(--coral);
  border-radius:2px;
  pointer-events:none;
}
.nav{
  background:linear-gradient(90deg,var(--coral-dark),var(--coral));
  padding:.4rem 0;
}
.nav__list{
  display:flex;
  gap:clamp(.25rem,2vw,1.5rem);
  list-style:none;
  flex-wrap:wrap;
  justify-content:center;
}
.nav__list a{
  color:rgba(255,255,255,.85);
  font-weight:600;
  font-size:.85rem;
  padding:.4rem .75rem;
  border-radius:var(--radius);
  transition:color .2s,background .2s;
  min-height:36px;
  display:inline-flex;
  align-items:center;
}
.nav__list a:hover{
  color:#fff;
  background:rgba(255,255,255,.15);
}
.casinos{background:var(--bg)}
.casinos--first{padding-top:1.25rem;padding-bottom:2.5rem}
.casinos__head{margin-bottom:1.5rem;text-align:center}
.casinos--first h1{
  font-size:clamp(1.4rem,4.2vw,2.1rem);
  color:var(--text);
  margin-bottom:.6rem;
  line-height:1.2;
  font-weight:800;
  letter-spacing:-.03em;
}
.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:var(--coral) transparent;
  padding:.25rem 0 1rem;
  margin:0 -1rem;
  padding-inline:1rem;
}
.casinos__track{display:flex;gap:1rem;padding-bottom:.25rem}
.casino-card{
  position:relative;
  flex:0 0 min(88vw,300px);
  scroll-snap-align:start;
  display:flex;
  flex-direction:column;
  background:var(--bg-card);
  border-radius:var(--radius);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  overflow:hidden;
  transition:transform .2s,box-shadow .2s,border-color .2s;
  clip-path:polygon(0 0,calc(100% - 1.5rem) 0,100% 1.5rem,100% 100%,0 100%);
}
.casino-card:hover{
  transform:translateY(-4px);
  border-color:rgba(244,63,94,.35);
  box-shadow:var(--shadow),0 0 30px var(--coral-glow);
}
.casino-card__rank{
  position:absolute;
  top:0;
  right:0;
  z-index:2;
  background:var(--coral);
  color:#fff;
  font-size:.7rem;
  font-weight:800;
  padding:.5rem 1.25rem .5rem 1.75rem;
  letter-spacing:.06em;
  clip-path:polygon(12% 0,100% 0,100% 100%,0 100%);
}
.casino-card__media{position:relative;display:block;overflow:hidden}
.casino-card__media img{
  width:100%;
  height:180px;
  object-fit:cover;
  background:var(--bg-elevated);
  transition:transform .3s;
}
.casino-card__media:hover img{transform:scale(1.04)}
.casino-card__body{
  padding:1rem 1.15rem 1.15rem;
  display:flex;
  flex-direction:column;
  flex:1;
  gap:.5rem;
  border-top:2px solid var(--border);
}
.casino-card h3{
  font-size:1.15rem;
  font-weight:800;
  color:var(--text);
  letter-spacing:-.02em;
}
.casino-card__bonus{
  font-size:.88rem;
  font-weight:700;
  color:var(--peach);
  background:rgba(244,63,94,.12);
  padding:.45rem .75rem;
  border-radius:var(--radius);
  border-left:3px solid var(--coral);
  line-height:1.35;
}
.casino-card__perks{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:.35rem;
  margin:.25rem 0 .5rem;
}
.casino-card__perks li{
  font-size:.84rem;
  color:var(--text-muted);
  padding-left:1rem;
  position:relative;
}
.casino-card__perks li::before{
  content:"▸";
  position:absolute;
  left:0;
  color:var(--coral);
  font-size:.7rem;
  top:.15em;
}
@media(min-width:1100px){
  .casinos__scroll-wrap{overflow-x:visible;margin:0;padding-inline:0}
  .casinos__track{display:grid;grid-template-columns:repeat(5,1fr);gap:1rem}
  .casino-card{flex:none;scroll-snap-align:none}
}
.hero{
  position:relative;
  min-height:clamp(340px,50vh,540px);
  display:flex;
  align-items:center;
  padding:3.5rem 0;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(26,26,46,.82) 0%,rgba(26,26,46,.92) 50%,rgba(26,26,46,.97) 100%),
    url("images/hero.webp") center/cover no-repeat;
  z-index:0;
}
.hero__content{
  position:relative;
  z-index:1;
  text-align:center;
  max-width:52rem;
  margin-inline:auto;
}
.hero h2{
  font-size:clamp(1.55rem,4.5vw,2.35rem);
  line-height:1.15;
  color:var(--text);
  margin-bottom:1rem;
  font-weight:800;
  letter-spacing:-.02em;
}
.hero__subtitle{
  font-size:clamp(1rem,2.5vw,1.1rem);
  color:var(--text-muted);
  margin-bottom:1.75rem;
  max-width:36rem;
  margin-inline:auto;
}
.hero__text{
  text-align:left;
  max-width:44rem;
  margin:2rem auto 0;
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.hero__text p{color:var(--text-muted);font-size:.98rem;line-height:1.7}
.vorteile{background:var(--bg-elevated)}
.vorteile__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:1.25rem;
  list-style:none;
}
@media(min-width:640px){.vorteile__grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:960px){.vorteile__grid{grid-template-columns:repeat(4,1fr)}}
.vorteil{
  text-align:center;
  padding:1.75rem 1.25rem;
  background:var(--bg-card);
  border-radius:var(--radius);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  transition:border-color .2s,transform .2s;
}
.vorteil:hover{
  border-color:rgba(244,63,94,.3);
  transform:translateY(-2px);
}
.vorteil__icon{
  display:block;
  width:2.5rem;
  height:2.5rem;
  margin:0 auto .85rem;
  position:relative;
}
.vorteil__icon--shield::before{
  content:"";
  position:absolute;
  width:1.5rem;
  height:1.75rem;
  top:.35rem;
  left:50%;
  transform:translateX(-50%);
  clip-path:polygon(50% 0,100% 20%,100% 70%,50% 100%,0 70%,0 20%);
  background:linear-gradient(180deg,var(--coral),var(--coral-dark));
}
.vorteil__icon--card::before{
  content:"";
  position:absolute;
  width:2rem;
  height:1.4rem;
  top:.55rem;
  left:50%;
  transform:translateX(-50%);
  border-radius:.3rem;
  background:linear-gradient(135deg,var(--coral),var(--peach));
}
.vorteil__icon--card::after{
  content:"";
  position:absolute;
  width:1.2rem;
  height:.12rem;
  top:1rem;
  left:50%;
  transform:translateX(-50%);
  background:rgba(26,26,46,.4);
}
.vorteil__icon--bolt::before{
  content:"";
  position:absolute;
  width:1.1rem;
  height:2rem;
  top:.25rem;
  left:50%;
  transform:translateX(-50%);
  clip-path:polygon(55% 0,30% 45%,50% 45%,35% 100%,70% 42%,50% 42%);
  background:linear-gradient(180deg,var(--peach),var(--coral));
}
.vorteil__icon--slots::before,
.vorteil__icon--slots::after{
  content:"";
  position:absolute;
  width:.55rem;
  height:1.6rem;
  top:.45rem;
  border-radius:.15rem;
  background:var(--coral);
}
.vorteil__icon--slots::before{left:calc(50% - .7rem)}
.vorteil__icon--slots::after{left:calc(50% + .15rem);background:var(--peach)}
.vorteil h3{font-size:1.05rem;color:var(--text);margin-bottom:.5rem;font-weight:700}
.vorteil p{color:var(--text-muted);font-size:.9rem}
.faq{background:var(--bg)}
.faq__list{
  max-width:48rem;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.faq__item{
  padding:1.25rem 1.5rem;
  background:var(--bg-card);
  border-radius:var(--radius);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}
.faq__item h3{
  font-size:1.05rem;
  color:var(--coral);
  margin-bottom:.5rem;
  font-weight:700;
}
.faq__item p{color:var(--text-muted);font-size:.95rem}
.responsible{
  padding:2.5rem 0;
  background:linear-gradient(180deg,var(--bg-elevated) 0%,var(--bg) 100%);
  border-top:1px solid var(--border);
}
.responsible__inner{
  text-align:center;
  max-width:40rem;
  margin-inline:auto;
}
.responsible__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:3rem;
  height:3rem;
  border-radius:var(--radius);
  background:var(--coral);
  color:#fff;
  font-weight:800;
  font-size:1.1rem;
  margin-bottom:1rem;
  box-shadow:0 4px 16px var(--coral-glow);
}
.responsible h2{font-size:1.25rem;margin-bottom:.75rem;font-weight:800}
.responsible p{color:var(--text-muted);font-size:.95rem;margin-bottom:.75rem}
.responsible__links{
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  justify-content:center;
  margin-top:1rem;
}
.responsible__links a{font-weight:600;font-size:.9rem}
.footer{
  background:#12121f;
  color:var(--text-muted);
  padding:2.5rem 0 calc(2.5rem + env(safe-area-inset-bottom,0));
  text-align:center;
  border-top:2px solid var(--border);
}
.footer__inner{display:flex;flex-direction:column;align-items:center;gap:.75rem}
.footer__domain{font-weight:700;color:var(--peach);font-size:.95rem}
.footer__copy,.footer__disclaimer,.footer__age{font-size:.85rem;line-height:1.5;max-width:36rem}
.footer__age strong{color:var(--text)}
.mobile-cta-bar{
  display:none;
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:300;
  padding:.75rem 1rem;
  padding-bottom:calc(.75rem + env(safe-area-inset-bottom,0));
  background:rgba(34,34,58,.97);
  backdrop-filter:blur(14px);
  border-top:2px solid var(--border);
  box-shadow:0 -8px 28px rgba(0,0,0,.45);
}
.mobile-cta-bar .btn{width:100%;min-height:56px;font-size:1.05rem}
:focus-visible{outline:3px solid var(--coral);outline-offset:2px}
@media(max-width:768px){
  body.has-mobile-cta{padding-bottom:calc(var(--mobile-cta-h) + env(safe-area-inset-bottom,0))}
  .mobile-cta-bar{display:block}
  .nav-toggle-label{display:flex}
  .btn--header{display:none}
  .nav{
    max-height:0;
    overflow:hidden;
    padding:0;
    transition:max-height .35s ease;
    background:var(--bg-elevated);
  }
  .nav__list{
    flex-direction:column;
    padding:.5rem 0 1rem;
    gap:.15rem;
  }
  .nav__list a{
    display:flex;
    padding:.75rem 1rem;
    min-height:48px;
    font-size:1rem;
    width:100%;
    justify-content:center;
    color:var(--text);
    border:1px solid var(--border);
    background:var(--bg-card);
  }
  .nav__list a:hover{background:var(--bg-elevated)}
  .nav-toggle:checked~.nav{
    max-height:22rem;
    padding:.4rem 0;
  }
}
