:root{
  --bg:#0b1020; --bg2:#0f1730; --card: rgba(17,24,39,.70);
  --text:#ffffff; --muted:#a7b0c4;
  --accent:#f47c20; --accent2:#ff8a00;
  --border: rgba(244,124,32,.18);
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --shadow2: 0 10px 35px rgba(0,0,0,.30);
  --r: 22px; --max: 1160px;
  --pad: clamp(16px, 2.8vw, 28px);
  --h1: clamp(28px, 4.4vw, 54px);
  --h2: clamp(20px, 3.0vw, 34px);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 22% 30%, rgba(244,124,32,.13) 0%, transparent 55%),
    radial-gradient(circle at 78% 65%, rgba(244,124,32,.10) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  line-height:1.65;
  overflow-x:hidden;
}
a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 var(--pad)}

/* Header */
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(16px);
  background: rgba(12,16,32,.80);
  border-bottom:1px solid var(--border);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding: 14px var(--pad);
}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.brand img{width:44px; height:44px; border-radius:12px; box-shadow:none; letter-spacing:.2px; font-size:18px}
.actions{display:flex; align-items:center; gap:10px; flex-wrap:wrap}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 11px 18px; border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(244,124,32,.08);
  text-decoration:none; font-weight:900;
  box-shadow:none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space:nowrap;
}
.btn:hover{transform: translateY(-2px); box-shadow:none;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow:none;
}
.btn--ghost{background: transparent}

/* Hero */
.hero{padding: 30px 0 10px}
.hero__card{
  background: linear-gradient(180deg, rgba(17,24,39,.78), rgba(17,24,39,.55));
  border:1px solid var(--border);
  border-radius: var(--r);
  box-shadow:none;
  padding: clamp(18px, 3vw, 28px);
  overflow:hidden;
}
.hero__kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding: 8px 12px; border-radius: 999px;
  border:1px solid var(--border);
  background: rgba(244,124,32,.10);
  color: rgba(255,255,255,.92);
  font-weight: 900; font-size: 13px;
}
.hero h1{margin: 14px 0 10px; font-size: var(--h1); line-height:1.12}
.hero__text{margin:0; color: var(--muted); font-size: 17px; max-width: 74ch}
.hero__cta{display:flex; gap:10px; margin-top: 14px; flex-wrap:wrap}

/* Big image */
.hero__image{
  margin-top: 18px;
  border-radius: var(--r);
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:none;
  background: rgba(244,124,32,.06);
}
.hero__image img{width:100%;height:auto;max-height:520px;object-fit:cover;border-radius:16px;display:block}

/* Sections */
.section{padding: 16px 0}
.card{
  background: rgba(17,24,39,.58);
  border:1px solid var(--border);
  border-radius: var(--r);
  box-shadow:none;
  padding: clamp(18px, 3vw, 26px);
}
h2{margin: 0 0 10px; font-size: var(--h2); line-height:1.2}
p{margin: 0 0 12px; color: var(--muted)}
.grid-3{display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 12px}
.note{
  border:1px solid var(--border);
  background: rgba(12,16,32,.55);
  border-radius: 18px;
  padding: 14px 14px;
}
.note b{color: rgba(255,255,255,.92)}
.small{font-size:13px; color: rgba(167,176,196,.92)}

.slot-grid{display:grid; grid-template-columns: repeat(7, minmax(0,1fr)); gap:10px; margin-top: 12px}

details{
  border:1px solid var(--border);
  background: rgba(12,16,32,.55);
  border-radius: 18px;
  padding: 12px 14px;
  margin-top: 10px;
}
summary{
  cursor:pointer;
  font-weight: 900;
  color: rgba(255,255,255,.92);
  list-style:none;
}
summary::-webkit-details-marker{display:none}

/* Bonus */

.bonus-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
}

.bonus-table th,
.bonus-table td {
  border: 1px solid var(--border);
  padding: 12px;
  text-align: left;
}

.bonus-table th {
  background: rgba(244,124,32,.12);
  font-weight: 800;
}

.bonus-table td {
  color: var(--muted);
  font-size: 15px;
}

/* Steps */
.steps-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:16px;
  margin-top:16px;
}
.step{
  border:1px solid var(--border);
  border-radius:16px;
  padding:16px;
  background: rgba(12,16,32,.55);
}
.step-head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
}
.step-num{
  width:28px;
  height:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background: rgba(244,124,32,.18);
  color: var(--accent);
  font-weight:800;
}
.step-img{
  width:100%;
  height:auto;
  border-radius:14px;
  margin:10px 0 8px;
  border:1px solid var(--border);
}
.step-list{
  margin:10px 0 0;
  padding-left:18px;
  color: var(--muted);
  line-height:1.6;
}

/* Games */
.games-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:14px;
}
.game-card{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:12px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(12,16,32,.55);
  text-decoration:none;
}
.game-card img{
  width:100%;
  height:auto;
  border-radius:14px;
  border:1px solid var(--border);
}
.game-card span{
  font-weight:800;
  color: rgba(255,255,255,.92);
  font-size:14px;
  line-height:1.3;
}

/* Responsive */
@media (max-width: 900px){
  .steps-grid{ grid-template-columns: 1fr; }
  .games-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 520px){
  .games-grid{ grid-template-columns: 1fr; }
}

/* FAQ (accordion) */
.faq-item{
  border:1px solid var(--border);
  border-radius:16px;
  margin-top:12px;
  background: rgba(12,16,32,.55);
  overflow:hidden;
}
.faq-question{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  cursor:pointer;
  padding:14px 18px;
}
.faq-question h3{
  margin:0;
  font-size:18px;
  font-weight:800;
  color: rgba(255,255,255,.95);
}
.faq-toggle{
  font-size:22px;
  font-weight:800;
  color: var(--accent);
  transition: transform .2s ease;
}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition: max-height .25s ease;
  padding:0 18px;
}
.faq-answer p{
  margin:0;
  padding:0 0 16px;
  color: var(--muted);
  font-size:15px;
  line-height:1.6;
}
.faq-item.is-open .faq-answer{
  max-height: 220px; 
}
.faq-item.is-open .faq-toggle{
  transform: rotate(45deg); 
}

footer{
  margin-top: 18px;
  padding: 22px 0 30px;
  border-top: 1px solid var(--border);
  background: rgba(12,16,32,.55);
}
@media (max-width: 980px){
  .grid-3{grid-template-columns: 1fr}
  .slot-grid{grid-template-columns: repeat(3, minmax(0,1fr))}
}
.steps-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:16px;
  margin-top:16px;
}
.step{
  border:1px solid var(--border);
  border-radius:16px;
  padding:16px;
  background: rgba(12,16,32,.55);
}
.step-head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
}
.step-num{
  width:28px;
  height:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background: rgba(244,124,32,.18);
  color: var(--accent);
  font-weight:800;
}
.step-img{
  width:100%;
  height:auto;
  border-radius:14px;
  margin:10px 0 8px;
  border:1px solid var(--border);
}
.step-list{
  margin:10px 0 0;
  padding-left:18px;
  color: var(--muted);
  line-height:1.6;
}
@media (max-width: 900px){
  .steps-grid{ grid-template-columns: 1fr; }
}
.pay-cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:14px;
}

.pay-card{
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px;
  background: rgba(12,16,32,.55);
}

.pay-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}

.pay-top h3{
  margin:0;
  font-size:16px;
  line-height:1.2;
  font-weight:900;
}

.pay-badges{
  display:flex;
  gap:6px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.badge{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.88);
  white-space:nowrap;
}

.badge.ok{
  border-color: rgba(244,124,32,.35);
  background: rgba(244,124,32,.14);
}

.badge.no{
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.78);
}

.pay-row{
  margin:8px 0 0;
  color: var(--muted);
  line-height:1.55;
  font-size:14px;
}

.pay-row strong{
  color: rgba(255,255,255,.90);
  font-weight:800;
}

@media (max-width: 980px){
  .pay-cards{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px){
  .pay-cards{ grid-template-columns: 1fr; }
}
.pay-top h3{
  margin:0;
  font-size:16px;
  line-height:1.2;
  font-weight:900;
  color: #f47c20; 
}
.games-cta {
  margin-top: 48px;
  text-align: center;
}

.btn-cta-big {
  display: inline-block;
  background: linear-gradient(180deg, #ff9a2f, #f47c20);
  color: #ffffff;
  padding: 20px 64px;
  font-size: 22px;
  font-weight: 900;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  box-shadow:none;
}

.btn-cta-big:hover {
  background: linear-gradient(180deg, #f47c20, #e56f18);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow:none;
}
.vip-wrap{
  padding: 22px;
}

.vip-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
}

.vip-title h2{
  margin:0 0 8px;
}

.vip-sub{
  margin:0;
  color: var(--muted);
  line-height:1.6;
  max-width: 820px;
}

.vip-join{
  white-space:nowrap;
  padding: 12px 18px;
  border-radius: 999px;
}

.vip-hero{
  display:grid;
  grid-template-columns: 1.35fr 1fr;
  gap:14px;
  margin-top:16px;
}

.vip-hero-img img,
.vip-priv-img img{
  width:100%;
  height:auto;
  display:block;
  border-radius:16px;
  border:1px solid var(--border);
}

.vip-hero-box{
  border:1px solid var(--border);
  border-radius:16px;
  padding:18px;
  background: rgba(12,16,32,.55);
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:10px;
}

.vip-hero-box h3{
  margin:0;
  font-size:18px;
  font-weight:900;
}

.vip-hero-box p{
  margin:0;
  color: var(--muted);
  line-height:1.6;
}

.vip-h3{
  margin:22px 0 6px;
  font-size:20px;
  font-weight:900;
}

.vip-note{
  margin:0 0 14px;
  color: var(--muted);
}

.vip-levels-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}

.vip-level-card{
  border:1px solid var(--border);
  border-radius:16px;
  padding:16px;
  background: rgba(12,16,32,.55);
}

.vip-badge{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:14px;
  margin-bottom:10px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}

.vip-mini{
  margin:6px 0 6px;
  color: var(--muted);
  font-size:14px;
}

.vip-amount{
  font-size:22px;
  font-weight:900;
  margin-bottom:8px;
}

.vip-desc{
  margin:0;
  color: var(--muted);
  line-height:1.6;
}

.vip-gold .vip-badge{ border-color: rgba(255,205,64,.25); background: rgba(255,205,64,.10); }
.vip-gold .vip-amount{ color: #ffcd40; }

.vip-platinum .vip-badge{ border-color: rgba(210,210,210,.25); background: rgba(210,210,210,.10); }
.vip-platinum .vip-amount{ color: #e6e6e6; }

.vip-diamond .vip-badge{ border-color: rgba(80,200,255,.25); background: rgba(80,200,255,.10); }
.vip-diamond .vip-amount{ color: #50c8ff; }

.vip-priv{
  margin-top:16px;
  display:grid;
  grid-template-columns: 1.35fr 1fr;
  gap:14px;
  align-items:stretch;
}

.vip-priv-text{
  border:1px solid var(--border);
  border-radius:16px;
  padding:18px;
  background: rgba(12,16,32,.55);
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:10px;
}

.vip-priv-text h3{
  margin:0;
  font-size:18px;
  font-weight:900;
}

.vip-priv-text p{
  margin:0;
  color: var(--muted);
  line-height:1.6;
}

@media (max-width: 980px){
  .vip-hero,
  .vip-priv{
    grid-template-columns: 1fr;
  }
  .vip-levels-grid{
    grid-template-columns: 1fr;
  }
  .vip-head{
    flex-direction:column;
    align-items:flex-start;
  }
}

.pay-strip{
  width:100%;
  height:auto;
  display:block;
  margin-top:14px;
  border-radius:14px;
  border:1px solid var(--border);
}

.cta-center{display:flex;justify-content:center;margin-top:18px}

.cta-center a{
  margin-left: auto;
  margin-right: auto;
}
/* FAQ */
[itemscope][itemtype="https://schema.org/FAQPage"]{
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

[itemscope][itemtype="https://schema.org/FAQPage"] .faq-item{
  margin-bottom: 14px;
}

[itemscope][itemtype="https://schema.org/FAQPage"] + *{
  margin-top: 48px;
}
[itemscope][itemtype="https://schema.org/FAQPage"]{
  background: rgba(255,255,255,.02);
  border-radius: 16px;
  padding: 32px 24px;
}

/* Desktop hero text full width */
@media (min-width: 1024px){
  .hero-content, .hero-text{ max-width: 100%; }
}

/* FAQ section separation */
#faq{ margin-top: 18px; }
#faq .card{ padding-top: 22px; }
#faq h2{ margin-bottom: 10px; }
#faq [itemscope][itemtype="https://schema.org/FAQPage"]{ margin-top: 8px; }

/* FAQ accessibility */
.faq-question{ outline: none; }
.faq-question:focus-visible{
  box-shadow:none;
  border-radius: 12px;
}
.faq-answer{ will-change: max-height; }

/* CTA center robust */
.cta-center{display:flex;justify-content:center;margin-top:18px}

/* Vip button */
.vip-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 22px;
  border-radius:999px;
  font-size:14px;
  font-weight:800;
  text-decoration:none;
  color:#ffffff;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  transition: background .2s ease, transform .15s ease, border-color .2s ease;
}

.vip-btn:hover{
  background: rgba(244,124,32,.15);
  border-color: rgba(244,124,32,.45);
  transform: translateY(-1px);
  color:#ffffff;
}

/* Slot cards – hover effect */
.slot{
  position: relative;
  background: rgba(255,255,255,.03);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.slot img{width:100%;height:auto;aspect-ratio:1/1;object-fit:cover;display:block;background:#0b0f1c;transition:transform .18s ease}

.slot .cap{padding:10px 12px;font-weight:700;text-align:center;background:rgba(255,255,255,.06);transition:background .18s ease,color .18s ease}

/* Hover games */
.slot:hover{
  background: rgba(244,124,32,.12);
  transform: translateY(-4px);
  box-shadow:none;
}

.slot:hover img{
  transform: scale(1.05);
}


.mt-12{margin-top:12px}

.slot:hover .cap{background: rgba(244,124,32,.18); color:#fff}
