/* ===== RESET & BASE ===== */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}

:root {
  --bg-deep:    #1F2933;
  --bg-card:    #2B3540;
  --bg-card2:   #2C3642;
  --accent:     #FF3B3B;
  --accent-dim: #FF2424;
  --text:       #FFFFFF;
  --text-muted: #9AA4AF;
  --text-dim:   #c8d0d8;
  --border-card:#394552;
  --green:      #21C46A;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(0,0,0,.3);
  --transition: .25s ease;
  --max-w:      1200px;
}

html{scroll-behavior:smooth;font-size:16px}
body{
  font-family:'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
  background:var(--bg-deep);
  color:var(--text);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
img{max-width:100%;display:block}
button{cursor:pointer;font:inherit;border:none;background:none}

.container{width:90%;max-width:var(--max-w);margin:0 auto}

/* ===== BUTTONS ===== */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:6px;
  padding:14px 32px;border-radius:var(--radius-sm);
  font-weight:700;font-size:.95rem;
  transition:var(--transition);
  white-space:nowrap;
  min-height:44px;
}
.btn-primary{background:var(--accent);color:#fff}
.btn-primary:hover{background:var(--accent-dim);transform:translateY(-2px);box-shadow:0 6px 20px rgba(255,59,59,.35)}
.btn-outline{border:2px solid var(--accent);color:var(--accent)}
.btn-outline:hover{background:var(--accent);color:#fff}
.btn-green{background:var(--green);color:#fff}
.btn-green:hover{filter:brightness(1.1);transform:translateY(-2px)}
.btn-sm{padding:10px 22px;font-size:.85rem;min-height:44px}

/* ===== SECTION ===== */
.section{padding:80px 0}
.section-title{
  font-size:2rem;font-weight:800;margin-bottom:12px;
  line-height:1.25;
}
.section-subtitle{
  color:var(--text-muted);font-size:1.05rem;
  margin-bottom:48px;max-width:680px;
}
.section-title .accent{color:var(--accent)}

/* ===== HEADER ===== */
.header{
  position:sticky;top:0;z-index:100;
  background:rgba(31,41,51,.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border-card);
}
.header .container{
  display:flex;align-items:center;justify-content:space-between;
  height:68px;
}
.logo{font-size:1.35rem;font-weight:800;letter-spacing:-.5px}
.logo span{color:var(--accent)}

.nav{display:flex;align-items:center;gap:28px}
.nav a{
  font-size:.9rem;font-weight:600;color:var(--text-dim);
  transition:var(--transition);position:relative;
  min-height:48px;display:inline-flex;align-items:center;
}
.nav a:hover{color:var(--accent)}
.nav a::after{
  content:'';position:absolute;bottom:-4px;left:0;
  width:0;height:2px;background:var(--accent);
  transition:var(--transition);
}
.nav a:hover::after{width:100%}

.burger{display:none;flex-direction:column;gap:5px;cursor:pointer;min-height:44px;justify-content:center}
.burger span{width:24px;height:2px;background:var(--text);border-radius:2px;transition:var(--transition)}

/* ===== HERO ===== */
.hero{
  padding:100px 0 80px;
  text-align:center;
  background:
    radial-gradient(ellipse at 50% 0%,rgba(255,59,59,.08) 0%,transparent 60%),
    var(--bg-deep);
}
.hero h1{
  font-size:clamp(2rem,5vw,3.2rem);
  font-weight:900;line-height:1.15;
  margin-bottom:20px;max-width:820px;margin-left:auto;margin-right:auto;
}
.hero h1 .accent{color:var(--accent)}
.hero-text{
  font-size:1.05rem;color:var(--text-dim);
  max-width:700px;margin:0 auto 40px;line-height:1.7;
}
.hero-btns{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}

.hero-trust{
  display:flex;gap:40px;justify-content:center;align-items:center;
  margin-top:56px;flex-wrap:wrap;
}
.hero-trust-item{
  display:flex;align-items:center;gap:10px;
  font-size:.88rem;color:var(--text-muted);font-weight:600;
}
.hero-trust-item svg{flex-shrink:0}

/* ===== TRUST BAR ===== */
.trust-bar{
  background:var(--bg-card);
  border-top:1px solid var(--border-card);
  border-bottom:1px solid var(--border-card);
  padding:28px 0;
}
.trust-bar .container{
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:24px;
}
.trust-item{text-align:center;flex:1;min-width:160px}
.trust-item .num{font-size:1.6rem;font-weight:800;color:var(--accent)}
.trust-item .label{font-size:.82rem;color:var(--text-muted);margin-top:2px}

/* ===== SLOT CARDS ===== */
.slots-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
  gap:20px;
}
.slot-card{
  background:var(--bg-card);
  border:1px solid var(--border-card);
  border-radius:var(--radius);
  overflow:hidden;
  transition:var(--transition);
  position:relative;
}
.slot-card:hover{
  border-color:var(--accent);
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}
.slot-badge{
  position:absolute;top:12px;left:12px;
  padding:4px 12px;border-radius:50px;
  font-size:.72rem;font-weight:800;
  text-transform:uppercase;letter-spacing:.5px;z-index:2;
}
.slot-badge.hot{background:var(--accent);color:#fff}
.slot-badge.new{background:var(--green);color:#fff}
.slot-img{
  width:100%;height:180px;
  background:linear-gradient(135deg,var(--bg-card2),rgba(255,59,59,.08));
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.slot-img img{width:100%;height:100%;object-fit:cover}
.slot-info{padding:20px}
.slot-info h3{font-size:1.05rem;font-weight:700;margin-bottom:4px}
.slot-provider{font-size:.82rem;color:var(--text-muted);margin-bottom:10px}
.slot-meta{
  display:flex;justify-content:space-between;align-items:center;
  margin-bottom:6px;
}
.slot-rtp{font-size:.82rem;color:var(--green);font-weight:600}
.slot-volatility{
  font-size:.75rem;padding:3px 10px;
  border-radius:50px;background:rgba(255,255,255,.06);
  color:var(--text-dim);font-weight:600;
}
.slot-maxwin{font-size:.8rem;color:var(--text-muted);margin-bottom:14px}
.slot-info .btn{width:100%}

/* ===== CATEGORIES ===== */
.categories-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
  gap:20px;
}
.category-card{
  background:var(--bg-card);
  border:1px solid var(--border-card);
  border-radius:var(--radius);
  padding:32px 28px;
  transition:var(--transition);
  display:flex;flex-direction:column;gap:14px;
}
.category-card:hover{
  border-color:var(--accent);
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}
.category-icon{
  width:56px;height:56px;border-radius:var(--radius-sm);
  background:rgba(255,59,59,.1);
  display:flex;align-items:center;justify-content:center;
}
.category-card h3{font-size:1.15rem;font-weight:700}
.category-card p{font-size:.88rem;color:var(--text-muted);line-height:1.55}
.category-link{
  color:var(--accent);font-size:.88rem;font-weight:700;
  display:inline-flex;align-items:center;gap:6px;
  margin-top:auto;
}
.category-link:hover{text-decoration:underline}

/* ===== WARUM VODDS ===== */
.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:24px;
}
.why-card{
  background:var(--bg-card);
  border:1px solid var(--border-card);
  border-radius:var(--radius);
  padding:32px 28px;
  text-align:center;
  transition:var(--transition);
}
.why-card:hover{border-color:var(--accent);transform:translateY(-3px)}
.why-icon{
  width:64px;height:64px;border-radius:50%;
  background:rgba(255,59,59,.1);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 18px;
}
.why-card h3{font-size:1.05rem;font-weight:700;margin-bottom:10px}
.why-card p{font-size:.88rem;color:var(--text-muted);line-height:1.55}

/* ===== BONUS ===== */
.bonus-section{background:var(--bg-card2)}
.bonus-box{
  background:var(--bg-card);
  border:1px solid var(--border-card);
  border-radius:var(--radius);
  padding:48px;
  max-width:800px;
}
.bonus-text{
  font-size:1rem;color:var(--text-dim);
  line-height:1.7;margin-bottom:24px;
}
.bonus-list{
  list-style:none;margin-bottom:28px;
  display:flex;flex-direction:column;gap:12px;
}
.bonus-list li{
  font-size:.95rem;color:var(--text);
  padding:14px 20px;
  background:rgba(255,59,59,.06);
  border-left:3px solid var(--accent);
  border-radius:0 var(--radius-sm) var(--radius-sm) 0;
  line-height:1.5;
}
.bonus-details{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:16px;margin-bottom:28px;
}
.bonus-detail-item{
  display:flex;flex-direction:column;gap:4px;
  padding:14px 16px;
  background:var(--bg-card2);
  border-radius:var(--radius-sm);
}
.detail-label{font-size:.78rem;color:var(--text-muted);font-weight:600;text-transform:uppercase;letter-spacing:.5px}
.detail-value{font-size:1rem;font-weight:700;color:var(--text)}
.bonus-hint{font-size:.8rem;color:var(--text-muted);margin-top:16px}

/* ===== ABOUT TEXT ===== */
.about-text{max-width:800px;margin-bottom:16px}
.about-text p{
  font-size:.95rem;color:var(--text-dim);
  line-height:1.75;margin-bottom:16px;
}

/* ===== GUIDE STEPS ===== */
.testing{background:var(--bg-card2)}
.guide-steps{
  display:flex;flex-direction:column;gap:24px;
  max-width:860px;
}
.guide-step{
  display:flex;gap:24px;
  background:var(--bg-card);
  border:1px solid var(--border-card);
  border-radius:var(--radius);
  padding:32px;
}
.guide-step-num{
  width:52px;height:52px;border-radius:50%;
  background:var(--accent);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:1.3rem;font-weight:900;
  flex-shrink:0;
}
.guide-step-content h3{font-size:1.1rem;font-weight:700;margin-bottom:10px}
.guide-step-content p{font-size:.92rem;color:var(--text-dim);line-height:1.7;margin-bottom:14px}
.guide-tip{
  font-size:.85rem;color:var(--text-muted);line-height:1.6;
  padding:14px 18px;
  background:rgba(255,59,59,.05);
  border-left:3px solid var(--accent);
  border-radius:0 var(--radius-sm) var(--radius-sm) 0;
}

/* ===== ZAHLUNGSMETHODEN ===== */
.payments-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
  gap:16px;
}
.payment-card{
  background:var(--bg-card);
  border:1px solid var(--border-card);
  border-radius:var(--radius);
  padding:24px 16px;
  text-align:center;
  transition:var(--transition);
}
.payment-card:hover{border-color:var(--accent)}
.payment-icon{font-size:2rem;margin-bottom:10px}
.payment-card .name{font-size:.9rem;font-weight:700;margin-bottom:4px}
.payment-card .speed{font-size:.78rem;color:var(--green)}

/* ===== COMPARE TABLE ===== */
.table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch}
.compare-table{
  width:100%;border-collapse:collapse;
  font-size:.9rem;min-width:800px;
}
.compare-table th{
  background:var(--bg-card);
  padding:14px 16px;text-align:left;
  font-size:.8rem;font-weight:700;
  text-transform:uppercase;letter-spacing:.5px;
  color:var(--text-muted);
  border-bottom:2px solid var(--border-card);
}
.compare-table td{
  padding:16px;
  border-bottom:1px solid var(--border-card);
  vertical-align:middle;
}
.compare-table tbody tr{transition:var(--transition)}
.compare-table tbody tr:hover{background:rgba(255,255,255,.03)}
.highlight-row{background:rgba(255,59,59,.06)}
.highlight-row td{border-bottom-color:var(--accent)}
.table-rating{color:#FFB800;font-weight:700}
.td-yes{color:var(--green);font-weight:700;font-size:1.1rem}
.td-no{color:var(--accent);font-weight:700;font-size:1.1rem}

/* ===== REVIEWS ===== */
.reviews-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
  gap:20px;
}
.review-card{
  background:var(--bg-card);
  border:1px solid var(--border-card);
  border-radius:var(--radius);
  padding:28px;
  display:flex;flex-direction:column;gap:16px;
}
.review-stars{color:#FFB800;font-size:1.1rem;letter-spacing:2px}
.review-text{
  font-size:.92rem;color:var(--text-dim);
  line-height:1.65;font-style:italic;flex:1;
}
.review-author{display:flex;align-items:center;gap:12px}
.review-avatar{
  width:44px;height:44px;border-radius:50%;
  object-fit:cover;background:var(--bg-card2);
  border:2px solid var(--border-card);
}
.review-name{font-size:.9rem;font-weight:700}
.review-city{font-size:.8rem;color:var(--text-muted)}

/* ===== CTA SECTION ===== */
.cta-section{
  padding:80px 0;
  background:
    radial-gradient(ellipse at 50% 50%,rgba(255,59,59,.1) 0%,transparent 70%),
    var(--bg-deep);
}
.cta-box{
  text-align:center;
  max-width:700px;margin:0 auto;
}
.cta-box h2{
  font-size:clamp(1.6rem,4vw,2.4rem);
  font-weight:900;line-height:1.2;
  margin-bottom:18px;
}
.cta-box p{
  font-size:1rem;color:var(--text-dim);
  line-height:1.7;margin-bottom:28px;
}
.cta-trust{
  display:flex;gap:20px;justify-content:center;flex-wrap:wrap;
  margin-bottom:32px;
}
.cta-trust span{
  font-size:.85rem;color:var(--text-muted);font-weight:600;
  display:flex;align-items:center;gap:6px;
}

/* ===== FAQ ===== */
.faq-list{max-width:800px;display:flex;flex-direction:column;gap:12px}
.faq-item{
  background:var(--bg-card);
  border:1px solid var(--border-card);
  border-radius:var(--radius);
  overflow:hidden;
}
.faq-q{
  width:100%;display:flex;align-items:center;justify-content:space-between;
  padding:20px 24px;
  font-size:1rem;font-weight:700;color:var(--text);
  text-align:left;cursor:pointer;
  transition:var(--transition);
  min-height:48px;gap:16px;
}
.faq-q:hover{color:var(--accent)}
.faq-q svg{flex-shrink:0;transition:var(--transition)}
.faq-item.active .faq-q svg{transform:rotate(180deg)}
.faq-a{
  max-height:0;overflow:hidden;
  transition:max-height .35s ease,padding .35s ease;
}
.faq-item.active .faq-a{max-height:400px}
.faq-a-inner{
  padding:0 24px 20px;
  font-size:.92rem;color:var(--text-muted);line-height:1.65;
}

/* ===== AUTHOR ===== */
.author-box{
  display:flex;gap:28px;align-items:center;
  background:var(--bg-card);
  border:1px solid var(--border-card);
  border-radius:var(--radius);
  padding:36px 40px;
  max-width:800px;
}
.author-avatar-img{
  width:90px;height:90px;border-radius:50%;
  object-fit:cover;
  border:3px solid var(--accent);
  flex-shrink:0;
  background:var(--bg-card2);
}
.author-info h3{font-size:1.1rem;font-weight:700;margin-bottom:4px}
.author-info .role{font-size:.85rem;color:var(--accent);font-weight:600;margin-bottom:10px}
.author-info p{font-size:.88rem;color:var(--text-muted);line-height:1.6}

/* ===== FOOTER ===== */
.footer{
  background:var(--bg-card);
  border-top:1px solid var(--border-card);
  padding:60px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px;
  padding-bottom:48px;
  border-bottom:1px solid var(--border-card);
}
.footer-brand .logo{font-size:1.5rem;margin-bottom:14px}
.footer-brand p{font-size:.88rem;color:var(--text-muted);line-height:1.6;max-width:320px}
.footer-col h4{font-size:.9rem;font-weight:700;margin-bottom:16px;text-transform:uppercase;letter-spacing:.5px}
.footer-col a{display:block;font-size:.88rem;color:var(--text-muted);padding:5px 0;transition:var(--transition);min-height:44px;display:flex;align-items:center}
.footer-col a:hover{color:var(--accent)}

.footer-bottom{
  display:flex;justify-content:space-between;align-items:center;
  padding:24px 0;flex-wrap:wrap;gap:16px;
}
.footer-bottom p{font-size:.8rem;color:var(--text-muted)}
.footer-badges{display:flex;gap:16px;align-items:center}
.badge-18{
  width:40px;height:40px;border-radius:50%;
  background:var(--accent);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-weight:900;font-size:.85rem;
}
.footer-disclaimer{
  padding:24px 0;
  border-top:1px solid var(--border-card);
}
.footer-disclaimer p{
  font-size:.78rem;color:var(--text-muted);
  line-height:1.6;max-width:900px;
}

/* ===== MOBILE ===== */
@media(max-width:1024px){
  .slots-grid{grid-template-columns:repeat(auto-fill,minmax(220px,1fr))}
  .footer-grid{grid-template-columns:1fr 1fr}
  .reviews-grid{grid-template-columns:repeat(auto-fit,minmax(300px,1fr))}
}

@media(max-width:768px){
  .section{padding:56px 0}
  .section-title{font-size:1.6rem}

  .nav{
    position:fixed;top:68px;left:0;right:0;
    background:var(--bg-card);
    flex-direction:column;padding:24px;gap:12px;
    border-bottom:1px solid var(--border-card);
    transform:translateY(-120%);
    transition:var(--transition);
  }
  .nav.open{transform:translateY(0)}
  .nav a{min-height:48px;padding:4px 0}
  .burger{display:flex}

  .hero{padding:70px 0 56px}
  .hero h1{font-size:1.8rem}
  .hero-trust{gap:20px}

  .slots-grid{grid-template-columns:repeat(auto-fill,minmax(200px,1fr))}
  .reviews-grid{grid-template-columns:1fr}

  .guide-step{flex-direction:column;padding:24px 20px}
  .guide-step-num{margin:0}
  .bonus-box{padding:28px 20px}
  .bonus-details{grid-template-columns:1fr 1fr}
  .author-box{flex-direction:column;text-align:center;padding:28px 24px}

  .faq-q{padding:18px 20px}

  .cta-section{padding:56px 0}
  .cta-trust{gap:12px}

  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;text-align:center}
}

@media(max-width:480px){
  .hero-btns{flex-direction:column;align-items:center}
  .btn{width:100%;max-width:300px}
  .steps{grid-template-columns:1fr}
  .slots-grid{grid-template-columns:repeat(2,1fr)}
  .payments-grid{grid-template-columns:repeat(2,1fr)}
  .cta-trust{flex-direction:column;align-items:center}
}
