/* ===== 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:0 auto 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(210px,1fr));
  gap:18px;
}
.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:0 8px 32px rgba(0,0,0,.55);
}
/* Image wrapper — portrait 3:4 */
.slot-img-wrap{
  position:relative;width:100%;
  aspect-ratio:3/4;overflow:hidden;
  background:var(--bg-card2);
}
.slot-img-wrap img{
  width:100%;height:100%;
  object-fit:cover;display:block;
  transition:transform .4s ease;
}
.slot-card:hover .slot-img-wrap img{transform:scale(1.07)}
/* RTP badge over image (top-right) */
.slot-rtp-tag{
  position:absolute;top:8px;right:8px;
  background:var(--green);color:#fff;
  font-size:.7rem;font-weight:800;
  padding:3px 8px;border-radius:4px;
  z-index:2;letter-spacing:.3px;
}
/* Hot/Neu badge (top-left on image) */
.slot-badge{
  position:absolute;top:8px;left:8px;
  padding:3px 9px;border-radius:4px;
  font-size:.7rem;font-weight:800;
  text-transform:uppercase;letter-spacing:.5px;z-index:2;
}
.slot-badge.hot{background:var(--accent);color:#fff}
.slot-badge.new{background:#2196F3;color:#fff}
/* Play button overlay on hover */
.slot-hover-overlay{
  position:absolute;inset:0;
  background:rgba(0,0,0,.56);
  display:flex;align-items:center;justify-content:center;
  opacity:0;transition:opacity .25s ease;z-index:3;
}
.slot-card:hover .slot-hover-overlay{opacity:1}
/* Text footer below image */
.slot-card-foot{padding:10px 13px 13px}
.slot-card-foot h3{font-size:.93rem;font-weight:700;margin-bottom:2px}
.slot-card-foot h3 a{color:inherit;text-decoration:none}
.slot-card-foot h3 a:hover{color:var(--accent)}
.slot-provider{font-size:.78rem;color:var(--text-muted)}
/* Legacy classes (kept for detail-page tables) */
.slot-img{width:100%;height:180px;background:var(--bg-card2);overflow:hidden}
.slot-img img{width:100%;height:100%;object-fit:cover}
.slot-info{padding:16px}.slot-info h3{font-size:1rem;font-weight:700;margin-bottom:4px}
.slot-meta{display:flex;justify-content:space-between;gap:6px;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:12px}
.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;
  margin:0 auto;
}
.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:0 auto 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;
  margin:0 auto;
}
.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;margin:0 auto;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;
  margin:0 auto;
}
.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}
}

/* ===== ANCHOR NAV (below hero) ===== */
.anchor-nav{
  background:var(--bg-card);
  border-bottom:1px solid var(--border-card);
  position:sticky;top:68px;z-index:90;
  overflow-x:auto;-webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.anchor-nav::-webkit-scrollbar{display:none}
.anchor-nav .container{
  display:flex;align-items:stretch;
  gap:0;min-width:max-content;
}
.anchor-nav a{
  padding:13px 22px;
  font-size:.84rem;font-weight:600;
  color:var(--text-muted);
  white-space:nowrap;
  transition:var(--transition);
  border-bottom:3px solid transparent;
  display:flex;align-items:center;
}
.anchor-nav a:hover{
  color:var(--accent);
  background:rgba(255,59,59,.04);
  border-bottom-color:var(--accent);
}

/* ===== SLOT BTNS (2 buttons per card) ===== */
.slot-btns{display:flex;gap:8px;flex-wrap:wrap;margin-top:4px}
.slot-btns .btn{flex:1;min-width:110px;text-align:center}

/* ===== RATING STARS ===== */
.star-bar{display:flex;align-items:center;gap:12px;margin-bottom:8px}
.stars-fill{color:#FFB800;font-size:1.2rem;letter-spacing:1px}
.rating-score{font-size:2.2rem;font-weight:900;color:var(--text);line-height:1}
.rating-count{font-size:.82rem;color:var(--text-muted)}
.rating-breakdown{display:flex;flex-direction:column;gap:8px;margin:20px 0}
.rating-row{display:flex;align-items:center;gap:12px;font-size:.88rem}
.rating-bar-wrap{flex:1;height:8px;background:rgba(255,255,255,.1);border-radius:4px;overflow:hidden}
.rating-bar-fill{height:100%;background:var(--accent);border-radius:4px}
.rating-label{width:40px;color:var(--text-muted)}
.rating-pct{width:32px;text-align:right;color:var(--text-muted)}

/* ===== CRYPTO CARD ===== */
.crypto-card{
  background:var(--bg-card);border:1px solid var(--border-card);
  border-radius:var(--radius);padding:28px 24px;
  display:flex;flex-direction:column;gap:10px;
}
.crypto-card:hover{border-color:var(--accent)}
.crypto-symbol{font-size:2.4rem;font-weight:900;color:var(--accent);line-height:1}
.crypto-name{font-size:1rem;font-weight:700}
.crypto-meta{font-size:.82rem;color:var(--text-muted)}
.crypto-speed{font-size:.82rem;color:var(--green);font-weight:600}

/* ===== SPORT CARD ===== */
.sport-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px}
.sport-card{
  background:var(--bg-card);border:1px solid var(--border-card);
  border-radius:var(--radius);padding:28px 24px;text-align:center;
  transition:var(--transition);
}
.sport-card:hover{border-color:var(--accent);transform:translateY(-3px)}
.sport-icon{font-size:2.8rem;margin-bottom:12px}
.sport-card h3{font-size:1rem;font-weight:700;margin-bottom:8px}
.sport-card p{font-size:.85rem;color:var(--text-muted);line-height:1.5}

/* ===== AUTHOR PAGE ===== */
.author-hero{
  padding:80px 0 60px;
  background:radial-gradient(ellipse at 50% 0%,rgba(255,59,59,.08) 0%,transparent 60%),var(--bg-deep);
}
.author-hero-inner{
  display:flex;gap:48px;align-items:center;flex-wrap:wrap;
}
.author-hero-img{
  width:160px;height:160px;border-radius:50%;
  border:4px solid var(--accent);object-fit:cover;flex-shrink:0;
}
.author-meta{display:flex;flex-direction:column;gap:12px}
.author-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,59,59,.1);border:1px solid rgba(255,59,59,.25);
  border-radius:50px;padding:6px 16px;
  font-size:.82rem;font-weight:700;color:var(--accent);
  width:fit-content;
}

/* ===== BREADCRUMB ===== */
.breadcrumb{
  display:flex;align-items:center;gap:8px;flex-wrap:wrap;
  font-size:.82rem;color:var(--text-muted);margin-bottom:24px;
}
.breadcrumb a{color:var(--text-muted);transition:var(--transition)}
.breadcrumb a:hover{color:var(--accent)}
.breadcrumb span{color:var(--text-dim)}

/* ===== SLOT DETAIL PAGE ===== */
.slot-hero{
  padding:80px 0 60px;
  background:radial-gradient(ellipse at 50% 0%,rgba(255,59,59,.08) 0%,transparent 60%),var(--bg-deep);
}
.slot-hero-inner{display:flex;gap:48px;align-items:flex-start;flex-wrap:wrap}
.slot-hero-img{
  width:340px;flex-shrink:0;border-radius:var(--radius);
  overflow:hidden;border:1px solid var(--border-card);
}
.slot-hero-img img{width:100%;height:220px;object-fit:cover;display:block}
.slot-hero-info{flex:1;min-width:260px}
.slot-stats-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));
  gap:12px;margin:20px 0 28px;
}
.slot-stat,.stat-box{
  background:var(--bg-card);border:1px solid var(--border-card);
  border-radius:var(--radius-sm);padding:14px 16px;
}
.slot-stat-label,.stat-label{font-size:.75rem;color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px;margin-bottom:4px}
.slot-stat-value,.stat-value{font-size:1.1rem;font-weight:800;color:var(--text)}
.slot-stat-value.green,.stat-value.green{color:var(--green)}
.slot-stat-value.accent,.stat-value.accent{color:var(--accent)}

/* ===== LIVE GAME CARDS ===== */
.live-games-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(268px,1fr));
  gap:22px;
}
.live-game-card{
  background:var(--bg-card);
  border:1px solid var(--border-card);
  border-radius:var(--radius);
  overflow:hidden;
  transition:var(--transition);
  display:flex;flex-direction:column;
}
.live-game-card:hover{
  border-color:var(--accent);
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}
.live-card-img{
  position:relative;
  width:100%;
  aspect-ratio:3/4;
  overflow:hidden;
  flex-shrink:0;
}
.live-card-img img{
  width:100%;height:100%;
  object-fit:cover;display:block;
  transition:transform .4s ease;
}
.live-game-card:hover .live-card-img img{transform:scale(1.06)}
.live-game-card:hover .slot-hover-overlay{opacity:1}
.live-card-body{padding:18px 20px 20px;display:flex;flex-direction:column;flex:1}
.live-card-body h3{font-size:1.08rem;font-weight:700;margin-bottom:2px}
.live-card-provider{font-size:.8rem;color:var(--text-muted);margin-bottom:10px}
.live-card-desc{font-size:.875rem;color:var(--text-dim);line-height:1.55;flex:1;margin-bottom:14px}
.live-card-meta{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:14px}
.live-card-tag{
  font-size:.72rem;padding:3px 10px;border-radius:50px;
  background:rgba(255,255,255,.07);color:var(--text-dim);font-weight:600;
}

@media(max-width:768px){
  .slot-hero-img{width:100%}
  .author-hero-inner{flex-direction:column;align-items:center;text-align:center}
  .author-hero-img{width:120px;height:120px}
  .live-games-grid{grid-template-columns:repeat(2,1fr)}
}

@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}
  .live-games-grid{grid-template-columns:1fr}
}
