/* ============================================================
   SUPERBET CASINO – AT
   Palette
   ------------------------------------------------------------
   --bg          #0C0509   – page background
   --header      #33051F   – sticky header
   --surface     #1B0913   – cards & sidebar
   --surface-2   #2A0E1E   – hover / inset
   --primary     #97185A   – CTA pink
   --primary-2   #B0246F   – CTA hover
   --secondary   #552C42   – ghost / secondary
   --line        #3A1424   – borders
   --text        #F4E9EE   – main text
   --muted       #C4A5B2   – muted text
   ============================================================ */

:root{
  --bg:#0C0509;
  --header:#33051F;
  --header-2:#1F0312;
  --surface:#160812;
  --surface-2:#22091B;
  --surface-3:#2C0E24;
  --primary:#97185A;
  --primary-2:#B0246F;
  --primary-3:#7A1148;
  --secondary:#552C42;
  --secondary-2:#6B3855;
  --line:#3A1424;
  --line-2:#2A0E1E;
  --text:#F4E9EE;
  --muted:#C4A5B2;
  --muted-2:#8B6877;
  --gold:#F0C57A;
  --green:#16C172;
  --red:#E5345A;
  --shadow:0 14px 38px rgba(0,0,0,.55);
  --radius:14px;
  --radius-sm:10px;
  --radius-lg:22px;
  --container:1440px;
  --sidebar-w:240px;
  --header-h:64px;
}

*,*::before,*::after{box-sizing:border-box}
html,body{
  overflow-x:hidden;
  width:100%;
  margin:0;
  padding:0;
  background:var(--bg);
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-size:15px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
body{min-height:100vh;display:flex;flex-direction:column}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer}
ul,ol{list-style:none;margin:0;padding:0}
h1,h2,h3,h4,h5,p{margin:0;overflow-wrap:anywhere;word-break:break-word;hyphens:auto}
hr{border:0;border-top:1px solid var(--line);margin:12px 0}

/* ===== HEADER ============================================== */
.header{
  position:sticky;top:0;z-index:50;
  background:linear-gradient(180deg,var(--header) 0%,var(--header-2) 100%);
  border-bottom:1px solid var(--line);
  height:var(--header-h);
}
.header-inner{
  max-width:var(--container);
  height:100%;
  margin:0 auto;
  padding:0 22px;
  display:flex;align-items:center;gap:18px;
}
.burger{
  display:none;
  width:40px;height:40px;
  border-radius:10px;
  align-items:center;justify-content:center;
  flex-direction:column;gap:4px;
}
.burger span{display:block;width:20px;height:2px;background:var(--text);border-radius:2px}
.logo{display:flex;align-items:center;flex-shrink:0}
.logo img{height:30px;width:auto}
.logo-text{
  font-weight:900;font-size:22px;letter-spacing:.02em;
  background:linear-gradient(180deg,#fff 0%,#F0C0D5 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.header-nav{
  display:flex;gap:6px;align-items:center;
  margin-left:18px;flex:1;min-width:0;
  overflow-x:auto;scrollbar-width:none;
}
.header-nav::-webkit-scrollbar{display:none}
.header-nav a{
  position:relative;
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 14px;
  font-weight:700;font-size:14.5px;
  color:var(--text);
  border-radius:8px;
  white-space:nowrap;
  transition:color .15s ease, background .15s ease;
}
.header-nav a:hover{background:rgba(255,255,255,.05);color:#fff}
.header-nav .nav-divider{
  margin-left:14px;padding-left:22px;
  border-left:1px solid var(--line);
}
.dot-icon{
  width:18px;height:18px;border-radius:50%;
  background:radial-gradient(circle at 30% 30%,#fff 0,#fff 35%,#000 36%,#000 60%,#fff 61%);
  display:inline-block;
}
.header-actions{display:flex;align-items:center;gap:10px;flex-shrink:0}
.icon-btn{
  width:38px;height:38px;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  color:var(--muted);
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  transition:all .15s ease;
}
.icon-btn:hover{color:#fff;background:rgba(255,255,255,.09)}

/* ===== BUTTONS ============================================= */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:14px 22px;
  min-height:46px;
  font-weight:800;font-size:14.5px;letter-spacing:.01em;
  border-radius:999px;
  border:1px solid transparent;
  cursor:pointer;
  text-align:center;
  white-space:nowrap;
  transition:transform .12s ease, box-shadow .12s ease, background .15s ease, border-color .15s ease;
  position:relative;
  -webkit-tap-highlight-color:transparent;
}
.btn--xs{min-height:32px;padding:8px 12px;font-size:12.5px;font-weight:800;border-radius:8px}
.btn--sm{min-height:38px;padding:10px 16px;font-size:13.5px}
.btn--xl{min-height:54px;padding:16px 30px;font-size:16px;font-weight:900;letter-spacing:.02em}

.btn--primary{
  background:linear-gradient(180deg,var(--primary-2) 0%, var(--primary) 60%, var(--primary-3) 100%);
  color:#fff;
  border-color:rgba(255,255,255,.15);
  box-shadow:0 6px 18px rgba(151,24,90,.45),inset 0 1px 0 rgba(255,255,255,.18);
}
.btn--primary:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 26px rgba(151,24,90,.55),inset 0 1px 0 rgba(255,255,255,.22);
  background:linear-gradient(180deg,#C72A82 0%, var(--primary-2) 60%, var(--primary) 100%);
}
.btn--primary:active{transform:translateY(0);box-shadow:0 4px 14px rgba(151,24,90,.45)}

.btn--ghost{
  background:rgba(85,44,66,.55);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06), 0 4px 12px rgba(0,0,0,.35);
}
.btn--ghost:hover{
  background:rgba(107,56,85,.7);
  border-color:rgba(255,255,255,.28);
  transform:translateY(-1px);
}
.btn--ghost:active{transform:translateY(0)}

/* ===== LAYOUT ============================================== */
.layout{
  max-width:var(--container);
  width:100%;
  margin:0 auto;
  display:grid;
  grid-template-columns:var(--sidebar-w) minmax(0,1fr);
  gap:0;
  flex:1;
}

/* ===== SIDEBAR ============================================= */
.sidebar{
  position:sticky;top:var(--header-h);
  align-self:flex-start;
  height:calc(100vh - var(--header-h));
  overflow-y:auto;
  padding:14px 12px 20px;
  background:linear-gradient(180deg,#0E0309 0%,#0A0207 100%);
  border-right:1px solid var(--line);
  scrollbar-width:thin;
  scrollbar-color:var(--line) transparent;
}
.sidebar nav{display:flex;flex-direction:column;gap:2px}
.side-link{
  display:flex;align-items:center;gap:12px;
  padding:11px 14px;
  border-radius:999px;
  color:var(--muted);
  font-weight:700;font-size:14px;
  transition:background .15s ease,color .15s ease;
  position:relative;
}
.side-link:hover{background:rgba(255,255,255,.04);color:#fff}
.side-link.is-active{
  color:#FF66A6;
  background:linear-gradient(90deg,rgba(151,24,90,.35) 0%,rgba(151,24,90,0) 100%);
}
.side-link.is-active::before{
  content:"";position:absolute;left:0;top:8px;bottom:8px;width:3px;
  border-radius:0 3px 3px 0;
  background:linear-gradient(180deg,var(--primary-2),var(--primary));
}
.side-icon{
  width:32px;height:32px;border-radius:50%;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  display:inline-flex;align-items:center;justify-content:center;
  color:currentColor;
  flex-shrink:0;
}
.side-link.is-active .side-icon{
  background:rgba(151,24,90,.25);border-color:rgba(151,24,90,.6);color:#FFB1D2;
}
.sidebar-promo{
  margin-top:18px;
  padding:14px;
  background:linear-gradient(160deg,#2C0E24 0%, #160812 100%);
  border:1px solid var(--line);
  border-radius:var(--radius);
  text-align:center;
}
.sidebar-promo img{
  width:100%;height:78px;object-fit:cover;border-radius:10px;margin-bottom:10px;
  border:1px solid var(--line);
}
.sidebar-promo p{font-size:12.5px;color:var(--muted);margin-bottom:10px;line-height:1.45}
.sidebar-promo strong{color:#FFB1D2}

/* ===== CONTENT ============================================= */
.content{
  padding:22px 28px 60px;
  min-width:0;
  display:flex;flex-direction:column;gap:38px;
}

/* ===== HERO ================================================ */
.hero{
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  background:linear-gradient(140deg,#3A0A24 0%, #1B0612 60%, #0C0509 100%);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.hero-banner{
  position:relative;
  display:block;
  overflow:hidden;
}
.hero-banner img{
  width:100%;
  max-height:340px;
  object-fit:cover;
  display:block;
  filter:saturate(1.05) contrast(1.02);
}
.hero-badge{
  position:absolute;left:18px;top:18px;
  padding:7px 14px;
  background:rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.2);
  border-radius:999px;
  font-size:11.5px;font-weight:800;letter-spacing:.12em;
  color:#FFD2E4;
  backdrop-filter:blur(8px);
}
.hero-text{
  padding:32px 36px 36px;
  text-align:left;
  display:flex;flex-direction:column;gap:18px;
  align-items:flex-start;
}
.hero-text h1{
  font-size:clamp(26px,3.6vw,46px);
  font-weight:900;
  line-height:1.05;
  letter-spacing:-.01em;
  background:linear-gradient(180deg,#fff 0%, #FFB1D2 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
  text-shadow:0 1px 0 rgba(0,0,0,.2);
}
.hero-sub{
  color:var(--muted);
  font-size:clamp(14px,1.2vw,16px);
  max-width:62ch;
  line-height:1.55;
}
.hero-ctas{display:flex;flex-wrap:wrap;gap:12px;width:100%}
.hero-terms{font-size:12px;color:var(--muted-2);margin-top:6px}

/* ===== CATEGORIES STRIP ==================================== */
.categories{margin-top:-4px}
.cat-strip{
  display:flex;gap:18px;
  overflow-x:auto;
  padding:6px 4px 14px;
  scrollbar-width:none;
}
.cat-strip::-webkit-scrollbar{display:none}
.cat-pill{
  flex:0 0 auto;
  display:flex;flex-direction:column;align-items:center;gap:10px;
  width:90px;
  text-align:center;
  font-size:12.5px;font-weight:700;
  color:var(--text);
}
.cat-circle{
  width:64px;height:64px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:0 6px 16px rgba(0,0,0,.35);
  transition:transform .15s ease,box-shadow .15s ease,border-color .15s ease;
}
.cat-circle img{width:100%;height:100%;object-fit:cover}
.cat-pill:hover .cat-circle{transform:translateY(-2px);box-shadow:0 10px 22px rgba(151,24,90,.35);border-color:rgba(151,24,90,.55)}
.cat-c1{background:radial-gradient(circle at 30% 30%, #E94560 0%, #8A0E1E 100%)}
.cat-c2{background:radial-gradient(circle at 30% 30%, #6E42C1 0%, #2A0E54 100%)}
.cat-c3{background:radial-gradient(circle at 30% 30%, #2A0E54 0%, #0E0420 100%)}
.cat-c4{background:radial-gradient(circle at 30% 30%, #B0246F 0%, #4A0E2C 100%)}
.cat-c5{background:radial-gradient(circle at 30% 30%, #36C2C5 0%, #08484A 100%)}
.cat-c6{background:radial-gradient(circle at 30% 30%, #F0C57A 0%, #6E4A12 100%)}
.cat-c7{background:radial-gradient(circle at 30% 30%, #E5345A 0%, #6E0820 100%)}
.cat-c8{background:radial-gradient(circle at 30% 30%, #B0246F 0%, #2A0612 100%)}
.cat-c9{background:radial-gradient(circle at 30% 30%, #F0C57A 0%, #8A4A0E 100%)}
.cat-c10{background:radial-gradient(circle at 30% 30%, #E84B36 0%, #4A0608 100%)}

/* ===== SECTION HEADS ======================================= */
.section-head{
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  margin-bottom:14px;
  flex-wrap:wrap;
}
.section-head h2{
  font-size:clamp(20px,2vw,26px);
  font-weight:900;
  letter-spacing:-.005em;
}
.see-all{
  font-size:13px;font-weight:700;color:var(--muted);
  padding:6px 12px;border-radius:999px;
  border:1px solid var(--line);
  transition:all .15s ease;
}
.see-all:hover{color:#fff;border-color:var(--primary);background:rgba(151,24,90,.15)}

/* ===== FILTER TABS ========================================= */
.filter-tabs{
  display:flex;gap:8px;
  overflow-x:auto;
  padding-bottom:8px;
  margin-bottom:14px;
  scrollbar-width:none;
}
.filter-tabs::-webkit-scrollbar{display:none}
.tab{
  flex:0 0 auto;
  padding:8px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:var(--surface);
  font-size:13px;font-weight:700;
  color:var(--muted);
  white-space:nowrap;
  transition:all .15s ease;
}
.tab:hover{color:#fff;border-color:var(--secondary-2)}
.tab.is-active{
  background:linear-gradient(180deg,var(--primary-2),var(--primary));
  color:#fff;
  border-color:transparent;
  box-shadow:0 4px 12px rgba(151,24,90,.35);
}

/* ===== JACKPOT ROW ========================================= */
.jackpot-row{
  display:flex;align-items:center;justify-content:space-between;
  gap:12px;
  padding:14px 18px;
  background:
    radial-gradient(circle at 0% 0%,rgba(151,24,90,.35) 0%,transparent 60%),
    linear-gradient(90deg,#2C0E24 0%,#160812 100%);
  border:1px solid var(--line);
  border-radius:var(--radius);
  margin-bottom:18px;
  flex-wrap:wrap;
}
.jp-label{
  font-size:12.5px;font-weight:800;letter-spacing:.18em;
  color:var(--muted);text-transform:uppercase;
}
.jp-amount{
  flex:1;text-align:center;
  font-size:clamp(22px,2.6vw,32px);
  font-weight:900;letter-spacing:.02em;
  font-variant-numeric:tabular-nums;
  background:linear-gradient(180deg,#FFD27A 0%, #F0A23A 50%, #C9760F 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
  text-shadow:0 0 22px rgba(240,165,58,.25);
}

/* ===== GAME GRID =========================================== */
.game-grid{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:14px;
}
.game-card{
  position:relative;
  display:flex;flex-direction:column;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  transition:transform .18s ease, box-shadow .18s ease, border-color .15s ease;
}
.game-card:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 30px rgba(0,0,0,.5),0 0 0 1px rgba(151,24,90,.3);
  border-color:rgba(151,24,90,.45);
}
.game-thumb{
  display:block;
  position:relative;
  aspect-ratio:1/1;
  overflow:hidden;
  border-bottom:1px solid var(--line);
  background:#0a0207;
}
.game-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.game-card:hover .game-thumb img{transform:scale(1.04)}
.game-thumb img{transition:transform .35s ease}
.game-meta{display:flex;flex-direction:column;padding:10px 12px 6px;gap:2px;min-width:0}
.game-title{font-size:13.5px;font-weight:800;color:#fff;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.game-prov{font-size:11.5px;color:var(--muted-2);font-weight:600}
.game-cta{display:flex;gap:6px;padding:0 10px 10px;flex-wrap:wrap}
.game-cta .btn{flex:1;min-width:0}

.badge{
  position:absolute;top:8px;left:8px;
  padding:3px 8px;
  font-size:10.5px;font-weight:900;letter-spacing:.08em;
  border-radius:6px;
  z-index:2;
  text-transform:uppercase;
}
.badge--hot{background:linear-gradient(180deg,#E5345A,#8A0E1E);color:#fff}
.badge--new{background:linear-gradient(180deg,#16C172,#0E7E48);color:#fff}

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

/* ===== LIVE GRID =========================================== */
.live-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.live-card{
  position:relative;
  display:flex;flex-direction:column;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  transition:transform .18s ease, box-shadow .18s ease, border-color .15s ease;
}
.live-card:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 30px rgba(0,0,0,.5);
  border-color:rgba(151,24,90,.45);
}
.live-thumb{
  display:block;
  aspect-ratio:16/10;
  overflow:hidden;
  border-bottom:1px solid var(--line);
  background:#0a0207;
}
.live-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}
.live-card:hover .live-thumb img{transform:scale(1.04)}
.live-info{padding:14px 16px 16px;display:flex;flex-direction:column;gap:6px}
.live-title{font-size:16px;font-weight:900;color:#fff}
.live-row{font-size:12.5px;color:var(--muted);display:flex;align-items:center;gap:6px}
.dot{width:8px;height:8px;border-radius:50%;display:inline-block;background:var(--muted-2)}
.live-on{background:#16C172;box-shadow:0 0 0 4px rgba(22,193,114,.2)}

/* ===== PROMOS ============================================== */
.promo-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  grid-template-rows:auto auto;
  gap:14px;
}
.promo-card{
  display:flex;flex-direction:column;
  background:linear-gradient(160deg,#22091B 0%, #160812 100%);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  transition:transform .18s ease,box-shadow .18s ease,border-color .15s ease;
  min-width:0;
}
.promo-card:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(0,0,0,.45);
  border-color:rgba(151,24,90,.5);
}
.promo-card--lead{
  grid-row:span 2;
  background:linear-gradient(160deg,#3A0A24 0%, #160812 100%);
}
.promo-card--vip{
  grid-column:span 2;
  flex-direction:row;
  align-items:stretch;
}
.promo-img{
  display:block;
  overflow:hidden;
  background:#0a0207;
  border-bottom:1px solid var(--line);
}
.promo-img img{width:100%;height:100%;max-height:180px;object-fit:cover;display:block}
.promo-card--lead .promo-img img{max-height:260px}
.promo-card--vip .promo-img{flex:0 0 38%;border-bottom:0;border-right:1px solid var(--line)}
.promo-card--vip .promo-img img{height:100%;max-height:none}
.promo-body{padding:18px 20px 20px;display:flex;flex-direction:column;gap:10px;min-width:0}
.promo-tag{
  font-size:11px;font-weight:900;letter-spacing:.18em;
  color:#FFB1D2;
}
.promo-card h3{font-size:18px;font-weight:900;color:#fff}
.promo-card--lead h3{font-size:24px}
.promo-body p{color:var(--muted);font-size:13.5px;line-height:1.5;flex:1}
.promo-body .btn{align-self:flex-start;margin-top:6px}

/* ===== PROVIDERS =========================================== */
.prov-strip{
  display:flex;gap:14px;
  overflow-x:auto;
  padding:18px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  scrollbar-width:thin;
  scrollbar-color:var(--line) transparent;
  margin-bottom:24px;
}
.prov-item{
  flex:0 0 auto;
  width:130px;height:60px;
  display:inline-flex;align-items:center;justify-content:center;
  padding:8px 12px;
  background:#0e0309;
  border:1px solid var(--line);
  border-radius:10px;
  transition:all .15s ease;
  filter:grayscale(.2) brightness(.95);
}
.prov-item:hover{
  border-color:rgba(151,24,90,.55);
  filter:grayscale(0) brightness(1.05);
  transform:translateY(-1px);
}
.prov-item img{max-width:100%;max-height:36px;width:auto;object-fit:contain}

/* ===== SEO BLOCK =========================================== */
.seo-block{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px 32px;
  display:flex;flex-direction:column;gap:14px;
}
.seo-block h2{font-size:24px;font-weight:900;color:#fff;margin-bottom:4px}
.seo-block h3{font-size:18px;font-weight:800;color:#FFB1D2;margin-top:14px}
.seo-block p{color:var(--muted);font-size:14.5px;line-height:1.7}
.seo-block strong{color:#fff}
.seo-block ul{display:flex;flex-direction:column;gap:6px;padding-left:20px;list-style:disc;color:var(--muted)}
.seo-block ul li::marker{color:var(--primary-2)}

/* ===== WHO ================================================ */
.who-lead{
  background:linear-gradient(160deg,#22091B 0%,#160812 100%);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px 28px;
}
.who-lead p{color:var(--muted);font-size:15px;line-height:1.65}
.who-lead strong{color:#fff}
.who-cards{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}
.who-card{
  display:flex;flex-direction:column;gap:10px;
  padding:18px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  transition:all .15s ease;
}
.who-card:hover{transform:translateY(-2px);border-color:rgba(151,24,90,.45);box-shadow:0 10px 24px rgba(0,0,0,.4)}
.who-icon{
  width:56px;height:56px;border-radius:14px;
  background:linear-gradient(160deg,#3A0A24 0%, #160812 100%);
  border:1px solid var(--line);
  overflow:hidden;
  display:flex;align-items:center;justify-content:center;
}
.who-icon img{width:100%;height:100%;object-fit:cover;opacity:.85}
.who-card h3{font-size:16px;font-weight:900;color:#fff}
.who-card p{font-size:13.5px;color:var(--muted);line-height:1.5}

.who-stats{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  margin-top:18px;
  padding:18px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
}
.who-stats li{
  display:flex;flex-direction:column;align-items:center;gap:2px;
  padding:6px 4px;
  text-align:center;min-width:0;
}
.who-stats strong{
  font-size:clamp(20px,2.4vw,28px);
  font-weight:900;
  background:linear-gradient(180deg,#fff,#FFB1D2);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.who-stats span{font-size:12.5px;color:var(--muted);font-weight:600}

/* ===== FAQ ================================================ */
.faq-list{display:flex;flex-direction:column;gap:10px}
.faq-item{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
}
.faq-item[open]{border-color:rgba(151,24,90,.55)}
.faq-item summary{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:18px 22px;
  cursor:pointer;
  list-style:none;
  font-size:15.5px;font-weight:800;color:#fff;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-arrow{
  width:24px;height:24px;flex-shrink:0;
  position:relative;
  border:1px solid var(--line);
  border-radius:50%;
  background:var(--surface-2);
  transition:transform .2s ease,background .2s ease;
}
.faq-arrow::before,
.faq-arrow::after{
  content:"";position:absolute;top:50%;left:50%;
  width:9px;height:1.5px;background:var(--text);
  transform:translate(-50%,-50%);transition:transform .2s ease;
  border-radius:2px;
}
.faq-arrow::after{transform:translate(-50%,-50%) rotate(90deg)}
.faq-item[open] .faq-arrow{background:var(--primary);border-color:transparent}
.faq-item[open] .faq-arrow::after{transform:translate(-50%,-50%) rotate(0)}
.faq-body{
  padding:0 22px 20px;
  color:var(--muted);
  font-size:14.5px;line-height:1.7;
  display:flex;flex-direction:column;gap:12px;
}
.faq-body h4{font-size:15px;color:#FFB1D2;font-weight:800;margin-top:6px}
.faq-body strong{color:#fff}
.faq-body em{color:var(--text)}
.faq-body ul,.faq-body ol{
  display:flex;flex-direction:column;gap:6px;
  padding-left:22px;
  list-style:disc;
}
.faq-body ol{list-style:decimal}
.faq-body li::marker{color:var(--primary-2)}
.faq-body a{color:#FFB1D2;text-decoration:underline}

/* ===== FOOTER ============================================== */
.footer{
  background:linear-gradient(180deg,#160510 0%, #0A0207 100%);
  border-top:1px solid var(--line);
  padding:40px 0 22px;
  margin-top:auto;
}
.footer-top,
.footer-mid,
.footer-bot{
  max-width:var(--container);
  margin:0 auto;
  padding:0 28px;
}
.footer-top{
  display:grid;
  grid-template-columns:1.4fr repeat(4,1fr);
  gap:32px;
  padding-bottom:32px;
}
.footer-col{display:flex;flex-direction:column;gap:8px;min-width:0}
.footer-col h4{font-size:13px;font-weight:900;letter-spacing:.18em;text-transform:uppercase;color:#fff;margin-bottom:6px}
.footer-col a{font-size:13.5px;color:var(--muted);transition:color .15s ease}
.footer-col a:hover{color:#fff}
.footer-logo img{height:34px;width:auto}
.footer-tag{font-size:13.5px;color:var(--muted);line-height:1.55;margin-top:4px;max-width:32ch}
.pay-list{display:flex;flex-wrap:wrap;gap:6px}
.pay-list li{
  font-size:11.5px;font-weight:700;
  padding:5px 10px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:6px;
  color:var(--muted);
}

.footer-mid{
  display:flex;flex-direction:column;gap:14px;align-items:flex-start;
  border-top:1px solid var(--line);
  padding-top:22px;padding-bottom:22px;
}
.badges{display:flex;flex-wrap:wrap;gap:10px}
.badge-item{
  padding:6px 12px;
  border:1px solid var(--line);
  border-radius:6px;
  font-size:12px;font-weight:800;
  background:rgba(255,255,255,.04);
  color:var(--muted);
  letter-spacing:.05em;
}
.responsible{font-size:12.5px;color:var(--muted);line-height:1.55;max-width:80ch}
.responsible a{color:#FFB1D2;text-decoration:underline}

.footer-bot{
  border-top:1px solid var(--line);
  padding-top:18px;
  display:flex;flex-direction:column;gap:8px;
}
.footer-bot p{font-size:11.5px;color:var(--muted-2);line-height:1.55}
.copyr{font-size:11.5px;color:var(--muted-2)}

/* ===== CATFISH ============================================= */
.catfish{
  position:fixed;left:12px;right:12px;bottom:max(12px,env(safe-area-inset-bottom));
  z-index:60;
  background:linear-gradient(180deg,#3A0A24 0%, #160812 100%);
  border:1px solid rgba(151,24,90,.55);
  border-radius:14px;
  box-shadow:0 16px 38px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.05);
  max-width:calc(100% - 24px);
  transform:translateY(140%);
  transition:transform .35s cubic-bezier(.2,.7,.3,1);
}
.catfish.is-shown{transform:translateY(0)}
.catfish-inner{
  display:flex;align-items:center;gap:14px;
  padding:12px 50px 12px 14px;
  min-width:0;
}
.catfish-img{
  width:54px;height:54px;border-radius:10px;
  object-fit:cover;flex-shrink:0;
  border:1px solid var(--line);
}
.catfish-text{display:flex;flex-direction:column;gap:2px;min-width:0;flex:1}
.catfish-text strong{
  font-size:14.5px;color:#fff;font-weight:800;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.catfish-text span{font-size:12px;color:var(--muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.catfish-x{
  position:absolute;top:6px;right:8px;
  width:30px;height:30px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:20px;line-height:1;color:var(--muted);
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
}
.catfish-x:hover{color:#fff;background:rgba(255,255,255,.1)}

/* ===== EXIT MODAL ========================================== */
.exit-overlay{
  position:fixed;inset:0;
  background:rgba(8,3,5,.78);
  backdrop-filter:blur(6px);
  display:flex;align-items:center;justify-content:center;
  padding:20px;z-index:80;
}
.exit-overlay[hidden]{display:none}
.exit-modal{
  position:relative;
  width:100%;max-width:460px;
  background:linear-gradient(160deg,#3A0A24 0%, #0E0309 100%);
  border:1px solid rgba(151,24,90,.55);
  border-radius:18px;
  padding:30px 26px 26px;
  text-align:center;
  box-shadow:0 30px 80px rgba(0,0,0,.7),0 0 0 1px rgba(255,255,255,.05);
}
.exit-x{
  position:absolute;top:10px;right:12px;
  width:32px;height:32px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:22px;line-height:1;color:var(--muted);
  background:rgba(255,255,255,.04);border:1px solid var(--line);
}
.exit-x:hover{color:#fff}
.exit-img{width:88px;height:88px;border-radius:14px;margin:0 auto 14px;object-fit:cover;border:1px solid var(--line)}
.exit-eyebrow{font-size:11px;letter-spacing:.2em;font-weight:900;color:#FFB1D2;margin-bottom:6px}
.exit-modal h3{font-size:22px;font-weight:900;color:#fff;line-height:1.2;margin-bottom:8px}
.exit-modal p{font-size:14px;color:var(--muted);margin-bottom:16px}
.exit-modal .btn{width:100%}
.exit-decline{
  margin-top:10px;
  font-size:13px;color:var(--muted-2);
  text-decoration:underline;text-underline-offset:3px;
  width:100%;padding:10px;
}
.exit-decline:hover{color:#fff}

/* ===== MOBILE DRAWER ======================================= */
.mobile-drawer{
  position:fixed;inset:0;z-index:90;
  background:rgba(8,3,5,.75);backdrop-filter:blur(4px);
  display:flex;
}
.mobile-drawer[hidden]{display:none}
.drawer-inner{
  width:min(86vw,320px);
  height:100%;
  background:linear-gradient(180deg,#1B0613 0%, #0A0207 100%);
  border-right:1px solid var(--line);
  padding:18px 16px;
  display:flex;flex-direction:column;gap:6px;
  overflow-y:auto;
  animation:slideIn .25s ease;
}
@keyframes slideIn{from{transform:translateX(-100%)}to{transform:translateX(0)}}
.drawer-close{
  align-self:flex-end;
  width:34px;height:34px;border-radius:50%;
  background:rgba(255,255,255,.05);border:1px solid var(--line);
  font-size:20px;line-height:1;color:var(--muted);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:6px;
}
.drawer-inner .side-link{padding:13px 16px}

/* ===== RESPONSIVE ========================================== */
@media (max-width:1100px){
  :root{--sidebar-w:208px}
  .game-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
  .who-cards{grid-template-columns:repeat(2,minmax(0,1fr))}
  .footer-top{grid-template-columns:1fr 1fr 1fr}
  .promo-grid{grid-template-columns:1fr 1fr;grid-template-rows:auto auto auto}
  .promo-card--lead{grid-row:auto;grid-column:span 2}
  .promo-card--vip{grid-column:span 2;flex-direction:column}
  .promo-card--vip .promo-img{flex:0 0 auto;border-right:0;border-bottom:1px solid var(--line)}
  .promo-card--vip .promo-img img{max-height:200px}
}

@media (max-width:880px){
  :root{--header-h:60px}
  .burger{display:flex}
  .header-nav{display:none}
  .header-actions .btn--ghost{display:none}
  .layout{grid-template-columns:1fr}
  .sidebar{display:none}
  .content{padding:18px 16px 80px}
  .live-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .who-stats{grid-template-columns:repeat(2,minmax(0,1fr))}
  .footer-top{grid-template-columns:1fr 1fr;gap:24px}
  .hero-text{padding:24px 22px 26px}
  .hero-text h1{font-size:28px}
  .hero-banner img{max-height:240px}
  .seo-block{padding:22px 18px}
}

@media (max-width:600px){
  .game-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
  .live-grid{grid-template-columns:1fr;gap:12px}
  .who-cards{grid-template-columns:1fr}
  .promo-grid{grid-template-columns:1fr}
  .promo-card--lead,.promo-card--vip{grid-column:auto}
  .footer-top{grid-template-columns:1fr;gap:24px;padding-bottom:24px}
  .hero-text h1{font-size:24px}
  .hero-banner img{max-height:180px}
  .header-inner{padding:0 14px;gap:10px}
  .icon-btn{width:36px;height:36px}
  .btn{padding:13px 18px;min-height:46px}
  .btn--xl{padding:15px 22px;min-height:52px;font-size:15px}
  .hero-ctas .btn{flex:1;width:100%}
  .grid-cta .btn{width:100%}
  .cat-pill{width:78px;font-size:11.5px}
  .cat-circle{width:56px;height:56px}
  .seo-block{padding:18px 14px}
  .seo-block h2{font-size:20px}
  .faq-item summary{padding:15px 16px;font-size:14.5px}
  .faq-body{padding:0 16px 18px;font-size:14px}
  .who-lead{padding:18px 16px}
  .footer-top{padding:0 16px}
  .footer-mid,.footer-bot{padding:0 16px}
  .catfish-inner{padding:10px 44px 10px 10px;gap:10px}
  .catfish-img{width:46px;height:46px}
  .catfish-text strong{font-size:13.5px}
  .catfish .btn{padding:8px 12px;min-height:36px;font-size:12.5px}
}

@media (max-width:380px){
  .game-grid{gap:8px}
  .game-title{font-size:12.5px}
  .game-cta{padding:0 8px 8px}
  .filter-tabs{gap:6px}
  .tab{padding:7px 12px;font-size:12.5px}
  .jp-amount{font-size:20px}
}

/* prevent layout jump while images load */
img[loading="lazy"]{background:#0a0207}
.superbet-slotguide{
  background:linear-gradient(160deg,#22091B 0%, #160812 100%);
  border:1px solid #3A1424;
  border-radius:14px;
  padding:1.25rem 1rem;
  display:flex;
  flex-direction:column;
  gap:1.25rem;
  color:#F4E9EE;
}
.superbet-slotguide__title{
  font-size:1.35rem;
  font-weight:900;
  line-height:1.2;
  color:#fff;
  letter-spacing:-0.005em;
  background:linear-gradient(180deg,#fff 0%,#FFB1D2 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.superbet-slotguide__lead{
  background:rgba(151,24,90,0.08);
  border:1px solid #3A1424;
  border-radius:12px;
  padding:1rem 1rem;
}
.superbet-slotguide__lead p{
  margin:0;
  font-size:0.95rem;
  line-height:1.65;
  color:#C4A5B2;
}
.superbet-slotguide__article{
  display:flex;
  flex-direction:column;
  gap:0.65rem;
  padding-top:0.25rem;
  border-top:1px solid rgba(58,20,36,0.6);
}
.superbet-slotguide__article:first-of-type{
  border-top:0;
  padding-top:0;
}
.superbet-slotguide__h3{
  font-size:1.1rem;
  font-weight:800;
  color:#FFB1D2;
  line-height:1.3;
  margin:0;
}
.superbet-slotguide__h4{
  font-size:0.98rem;
  font-weight:800;
  color:#fff;
  margin:0.4rem 0 0.1rem;
}
.superbet-slotguide__article p,
.superbet-slotguide__aside p{
  margin:0;
  font-size:0.92rem;
  line-height:1.7;
  color:#C4A5B2;
}
.superbet-slotguide__article strong,
.superbet-slotguide__aside strong,
.superbet-slotguide__lead strong{
  color:#fff;
}
.superbet-slotguide__list,
.superbet-slotguide__olist{
  margin:0;
  padding-left:1.25rem;
  display:flex;
  flex-direction:column;
  gap:0.4rem;
  color:#C4A5B2;
  font-size:0.92rem;
  line-height:1.65;
}
.superbet-slotguide__list{
  list-style:disc;
}
.superbet-slotguide__olist{
  list-style:decimal;
}
.superbet-slotguide__list li::marker,
.superbet-slotguide__olist li::marker{
  color:#B0246F;
}
.superbet-slotguide__table{
  width:100%;
  border-collapse:collapse;
  margin-top:0.5rem;
  font-size:0.85rem;
  background:#160812;
  border:1px solid #3A1424;
  border-radius:10px;
  overflow:hidden;
  display:block;
  overflow-x:auto;
}
.superbet-slotguide__table thead{
  background:linear-gradient(180deg,#3A0A24 0%,#22091B 100%);
}
.superbet-slotguide__table th,
.superbet-slotguide__table td{
  text-align:left;
  padding:0.6rem 0.7rem;
  border-bottom:1px solid #2A0E1E;
  vertical-align:top;
  color:#C4A5B2;
  line-height:1.45;
}
.superbet-slotguide__table th{
  color:#fff;
  font-weight:800;
  font-size:0.82rem;
  letter-spacing:0.02em;
  white-space:nowrap;
}
.superbet-slotguide__table tbody tr:last-child td{
  border-bottom:0;
}
.superbet-slotguide__table tbody tr:hover td{
  background:rgba(151,24,90,0.06);
  color:#F4E9EE;
}
.superbet-slotguide__aside{
  background:linear-gradient(160deg,#3A0A24 0%,#160812 100%);
  border:1px solid rgba(151,24,90,0.45);
  border-radius:12px;
  padding:1rem 1rem;
  display:flex;
  flex-direction:column;
  gap:0.6rem;
}
.superbet-slotguide__aside .superbet-slotguide__h3{
  color:#fff;
}

@media (min-width:37.5em){
  .superbet-slotguide{
    padding:1.5rem 1.4rem;
    gap:1.5rem;
  }
  .superbet-slotguide__title{
    font-size:1.55rem;
  }
  .superbet-slotguide__lead{
    padding:1.1rem 1.2rem;
  }
  .superbet-slotguide__lead p{
    font-size:1rem;
  }
  .superbet-slotguide__h3{
    font-size:1.2rem;
  }
  .superbet-slotguide__h4{
    font-size:1.02rem;
  }
  .superbet-slotguide__article p,
  .superbet-slotguide__aside p,
  .superbet-slotguide__list,
  .superbet-slotguide__olist{
    font-size:0.95rem;
  }
  .superbet-slotguide__table{
    font-size:0.9rem;
  }
  .superbet-slotguide__aside{
    padding:1.2rem 1.3rem;
  }
}

@media (min-width:56.25em){
  .superbet-slotguide{
    padding:1.75rem 1.75rem;
    border-radius:14px;
  }
  .superbet-slotguide__title{
    font-size:1.75rem;
  }
  .superbet-slotguide__h3{
    font-size:1.25rem;
  }
  .superbet-slotguide__h4{
    font-size:1.05rem;
  }
  .superbet-slotguide__article p,
  .superbet-slotguide__aside p,
  .superbet-slotguide__list,
  .superbet-slotguide__olist,
  .superbet-slotguide__lead p{
    font-size:0.95rem;
    line-height:1.75;
  }
  .superbet-slotguide__table{
    display:table;
    overflow-x:visible;
    font-size:0.92rem;
  }
  .superbet-slotguide__table th,
  .superbet-slotguide__table td{
    padding:0.75rem 0.9rem;
  }
}

@media (min-width:75em){
  .superbet-slotguide{
    padding:2rem 2rem;
  }
  .superbet-slotguide__title{
    font-size:1.85rem;
  }
}
