/* ============================================================
   AllySpin — main stylesheet
   Palette:
   --site-bg     #232D3A   page background
   --header-bg   #461824   header / footer
   --primary     #EBDC96   CTA buttons (cream/gold)
   --secondary   #D1D2D8   secondary buttons (light gray)
   ============================================================ */

:root{
  --site-bg:#232D3A;
  --site-bg-2:#1b242f;
  --site-bg-3:#2c384a;
  --header-bg:#461824;
  --header-bg-2:#5a1d2c;
  --primary:#EBDC96;
  --primary-2:#d6c577;
  --primary-ink:#3a2a05;
  --secondary:#D1D2D8;
  --secondary-ink:#2c2f3a;
  --text:#e9ecf1;
  --text-dim:#9aa3b2;
  --text-2:#cfd4dd;
  --line:rgba(255,255,255,.08);
  --line-2:rgba(255,255,255,.14);
  --shadow:0 10px 30px rgba(0,0,0,.45);
  --shadow-sm:0 4px 14px rgba(0,0,0,.35);
  --radius:12px;
  --radius-lg:18px;
  --radius-sm:8px;
  --sidebar-w:240px;
  --header-h:72px;
  --maxw:1480px;
  --gap:18px;
  --accent:#f4d35e;
}

*,*::before,*::after{ box-sizing:border-box; }
html,body{ overflow-x:hidden; width:100%; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  margin:0;
  background:var(--site-bg);
  color:var(--text);
  font-family:"Inter",system-ui,-apple-system,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Helvetica Neue,Arial,sans-serif;
  font-size:16px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{ margin:0 0 .5em; line-height:1.2; font-weight:900; letter-spacing:.01em; }
p{ margin:0 0 1em; color:var(--text-2); }
ul,ol{ margin:0 0 1em; padding-left:1.25em; color:var(--text-2); }
ul li,ol li{ margin-bottom:.35em; }
strong{ color:#fff; font-weight:800; }
em{ color:var(--accent); font-style:italic; }
hr{ border:0; height:1px; background:var(--line); margin:18px 0; }

/* skip link */
.skip-link{
  position:absolute;left:-9999px;top:0;
  background:var(--primary);color:var(--primary-ink);
  padding:8px 14px;border-radius:6px;font-weight:800;z-index:9999;
}
.skip-link:focus{ left:12px;top:12px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position:sticky;top:0;z-index:120;
  background:linear-gradient(180deg,#5a1d2c 0%,#461824 60%,#3a131e 100%);
  border-bottom:1px solid rgba(255,255,255,.06);
  box-shadow:0 8px 22px rgba(0,0,0,.35);
}
.header-inner{
  display:flex;align-items:center;gap:14px;
  padding:10px 20px;
  min-height:var(--header-h);
  max-width:100%;
}
.burger{
  display:none;
  width:42px;height:42px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.2);
  border-radius:10px;
  flex-direction:column;justify-content:center;align-items:center;gap:5px;
  padding:0;
}
.burger span{ display:block;width:22px;height:2px;background:#fff;border-radius:2px; }

.logo{
  display:inline-flex;align-items:center;
  height:48px;flex-shrink:0;
}
.logo img{
  height:46px;width:auto;
  filter:drop-shadow(0 2px 4px rgba(0,0,0,.4));
}

.search{
  flex:1;
  display:flex;align-items:center;
  background:#2b3848;
  border:1px solid rgba(255,255,255,.08);
  border-radius:10px;
  padding:0 14px;
  height:46px;
  max-width:560px;
  margin:0 auto;
  min-width:0;
}
.search-icon{ font-size:18px;color:#9aa3b2;margin-right:10px; }
.search input{
  flex:1;background:transparent;border:0;outline:none;
  color:#fff;font-size:15px;font-weight:600;
  min-width:0;
}
.search input::placeholder{ color:#7e8696;font-weight:600; }

.header-cta{ display:flex;gap:10px;flex-shrink:0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:8px;
  min-height:46px;
  padding:12px 20px;
  border:0;border-radius:10px;
  font-weight:900;
  font-size:14px;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-style:italic;
  white-space:nowrap;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, filter .15s ease, background .15s ease;
  text-align:center;
  user-select:none;
}
.btn--primary{
  background:linear-gradient(180deg,#f3e3a0 0%,#EBDC96 50%,#cab06a 100%);
  color:var(--primary-ink);
  border:2px solid #b9994f;
  box-shadow:0 6px 0 #6b5829, 0 10px 18px rgba(0,0,0,.4);
  text-shadow:0 1px 0 rgba(255,255,255,.3);
}
.btn--primary:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 0 #6b5829, 0 14px 24px rgba(0,0,0,.5);
  filter:brightness(1.05);
}
.btn--primary:active{
  transform:translateY(2px);
  box-shadow:0 2px 0 #6b5829, 0 4px 10px rgba(0,0,0,.4);
}
.btn--ghost{
  background:linear-gradient(180deg,#e8e9ef 0%,#D1D2D8 60%,#a8aab2 100%);
  color:var(--secondary-ink);
  border:2px solid #8e909a;
  box-shadow:0 6px 0 #4a4c54, 0 10px 18px rgba(0,0,0,.35);
  text-shadow:0 1px 0 rgba(255,255,255,.5);
}
.btn--ghost:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 0 #4a4c54, 0 14px 24px rgba(0,0,0,.45);
  filter:brightness(1.05);
}
.btn--ghost:active{
  transform:translateY(2px);
  box-shadow:0 2px 0 #4a4c54, 0 4px 10px rgba(0,0,0,.35);
}
.btn--sm{ min-height:38px;padding:8px 14px;font-size:12px;border-width:2px;
  box-shadow:0 4px 0 rgba(0,0,0,.3), 0 6px 10px rgba(0,0,0,.3); }
.btn--lg{ min-height:54px;padding:14px 28px;font-size:16px; }
.btn--xl{ min-height:60px;padding:16px 34px;font-size:17px;border-radius:12px; }

/* ============================================================
   SIDEBAR (left vertical panel)
   ============================================================ */
.sidebar{
  position:fixed;top:var(--header-h);left:0;
  width:var(--sidebar-w);
  height:calc(100vh - var(--header-h));
  background:var(--site-bg-2);
  border-right:1px solid var(--line);
  z-index:110;
  overflow-y:auto;
  overflow-x:hidden;
  scrollbar-width:thin;
  scrollbar-color:#3a4a5e var(--site-bg-2);
}
.sidebar::-webkit-scrollbar{ width:6px; }
.sidebar::-webkit-scrollbar-thumb{ background:#3a4a5e;border-radius:3px; }
.sidebar-inner{ padding:14px 12px 100px; display:flex;flex-direction:column;gap:4px; }
.side-item{
  display:flex;align-items:center;gap:12px;
  padding:12px 12px;
  border-radius:10px;
  color:var(--text);
  font-weight:800;
  font-style:italic;
  font-size:14px;
  letter-spacing:.04em;
  text-transform:uppercase;
  border:2px solid transparent;
  transition:background .15s, border-color .15s, transform .1s;
  position:relative;
  min-width:0;
}
.side-item:hover{ background:rgba(255,255,255,.05);transform:translateX(2px); }
.side-item--active{
  background:linear-gradient(180deg,#5b4b9d 0%,#3f3279 100%);
  border-color:#000;
  box-shadow:0 4px 0 rgba(0,0,0,.35);
}
.side-ico{ font-size:18px;width:26px;text-align:center;flex-shrink:0; }
.side-label{ flex:1;min-width:0;overflow-wrap:anywhere; }
.badge-new{
  background:var(--primary);
  color:var(--primary-ink);
  font-size:10px;
  font-weight:900;
  padding:3px 7px;
  border-radius:5px;
  letter-spacing:.06em;
  flex-shrink:0;
  border:1px solid #b9994f;
  font-style:italic;
}
.side-sep{ background:var(--line-2);margin:8px 4px; }
.side-foot{
  display:flex;gap:8px;margin-top:14px;
}
.side-foot-btn{
  flex:1;display:flex;align-items:center;justify-content:center;
  background:var(--site-bg-3);
  border:1px solid var(--line);
  border-radius:10px;
  height:44px;font-size:18px;color:#fff;
  transition:background .15s;
}
.side-foot-btn:hover{ background:#3a4a5e; }

/* ============================================================
   MAIN
   ============================================================ */
.main{
  margin-left:var(--sidebar-w);
  padding:24px 24px 80px;
  max-width:calc(100% - var(--sidebar-w));
  min-height:calc(100vh - var(--header-h));
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  background:linear-gradient(180deg,#2a3849 0%,#1f2a37 100%);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow);
  margin-bottom:32px;
  position:relative;
}
.hero-banner{
  position:relative;
  width:100%;
  background:#1a2230;
  border-bottom:2px solid rgba(0,0,0,.3);
  overflow:hidden;
}
.hero-banner img{
  width:100%;height:auto;
  max-height:380px;
  object-fit:cover;
  display:block;
}
.hero-banner-link{
  position:absolute;inset:0;
  display:block;
}
.hero-content{
  padding:36px 28px 36px;
  text-align:center;
  background:linear-gradient(180deg,rgba(70,24,36,.4) 0%,rgba(35,45,58,0) 100%);
}
.hero-bonus{
  font-size:clamp(22px,4.5vw,46px);
  font-weight:900;
  font-style:italic;
  letter-spacing:.02em;
  margin:0 0 18px;
  color:#fff;
  text-shadow:0 4px 14px rgba(0,0,0,.5);
  line-height:1.05;
}
.hero-amount{
  display:inline-block;
  background:linear-gradient(180deg,#f7e7a2 0%,#EBDC96 50%,#c5a85e 100%);
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;
  font-size:1.25em;
  margin-top:6px;
}
.hero-cta{
  display:flex;gap:14px;justify-content:center;flex-wrap:wrap;
  margin-bottom:14px;
}
.hero-tc{
  font-size:12px;color:var(--text-dim);margin:10px 0 0;
}

/* ============================================================
   SECTION NAV (pills under header)
   ============================================================ */
.section-nav{
  display:flex;gap:10px;
  padding:14px 4px;
  margin-bottom:18px;
  overflow-x:auto;
  overflow-y:hidden;
  scrollbar-width:thin;
  scrollbar-color:#3a4a5e transparent;
}
.section-nav::-webkit-scrollbar{ height:6px; }
.section-nav::-webkit-scrollbar-thumb{ background:#3a4a5e;border-radius:3px; }
.pill{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--site-bg-3);
  border:1px solid var(--line);
  color:#fff;
  font-weight:900;
  font-style:italic;
  font-size:13px;
  letter-spacing:.06em;
  text-transform:uppercase;
  padding:10px 16px;
  border-radius:999px;
  white-space:nowrap;
  transition:background .15s, transform .15s;
  flex-shrink:0;
}
.pill:hover{ background:#3a4a5e;transform:translateY(-2px); }
.pill-ico{ font-size:16px; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section{
  background:var(--site-bg-2);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:24px;
  margin-bottom:28px;
  box-shadow:var(--shadow-sm);
}
.section-head{
  display:flex;align-items:baseline;justify-content:space-between;
  gap:14px;flex-wrap:wrap;
  margin-bottom:18px;
  padding-bottom:14px;
  border-bottom:1px solid var(--line);
}
.section-head h2{
  font-size:clamp(20px,2.4vw,28px);
  font-style:italic;
  letter-spacing:.02em;
  color:#fff;
  margin:0;
}
.link-more{
  font-size:13px;font-weight:800;font-style:italic;
  color:var(--primary);
  letter-spacing:.04em;
  text-transform:uppercase;
}
.link-more:hover{ color:#fff; }

.filter-tabs{
  display:flex;gap:8px;
  margin-bottom:18px;
  overflow-x:auto;
  padding-bottom:4px;
}
.filter-tabs::-webkit-scrollbar{ height:4px; }
.filter-tabs::-webkit-scrollbar-thumb{ background:#3a4a5e;border-radius:2px; }
.tab{
  display:inline-flex;align-items:center;
  background:transparent;
  border:1px solid var(--line-2);
  color:var(--text-2);
  padding:8px 16px;
  border-radius:8px;
  font-size:13px;font-weight:800;
  white-space:nowrap;
  transition:background .15s, color .15s, border-color .15s;
  flex-shrink:0;
}
.tab:hover{ background:rgba(255,255,255,.06);color:#fff; }
.tab--active{
  background:var(--primary);
  color:var(--primary-ink);
  border-color:#b9994f;
}

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

/* ============================================================
   JACKPOT ROW
   ============================================================ */
.jackpot-row{
  display:flex;align-items:center;justify-content:center;
  gap:16px;flex-wrap:wrap;
  background:linear-gradient(90deg,#3a131e 0%,#5a1d2c 50%,#3a131e 100%);
  border:1px solid #6b2638;
  border-radius:var(--radius);
  padding:14px 20px;
  margin-bottom:18px;
  box-shadow:inset 0 0 30px rgba(0,0,0,.3);
}
.jackpot-label{
  font-weight:800;font-style:italic;color:#fff;font-size:15px;letter-spacing:.04em;
}
.jackpot-counter{
  font-family:"Courier New",monospace;
  font-size:clamp(20px,3vw,32px);
  font-weight:900;
  color:var(--primary);
  text-shadow:0 0 16px rgba(235,220,150,.55), 0 2px 0 #000;
  letter-spacing:.04em;
  min-width:0;
}

/* ============================================================
   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(--site-bg-3);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  transition:transform .2s, box-shadow .2s, border-color .2s;
  min-width:0;
}
.game-card:hover{
  transform:translateY(-4px);
  border-color:var(--primary);
  box-shadow:0 12px 24px rgba(0,0,0,.4), 0 0 0 2px rgba(235,220,150,.25);
}
.media{
  position:relative;
  width:100%;
  background:#10161e;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}
.media img{
  width:100%;
  height:auto;
  max-height:240px;
  object-fit:cover;
  aspect-ratio:1/1;
  display:block;
}
.game-info{
  padding:10px 12px 6px;
  display:flex;flex-direction:column;gap:2px;
  min-width:0;
}
.game-info h3{
  font-size:14px;font-weight:800;font-style:italic;
  color:#fff;margin:0;
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
.game-info span{
  font-size:11px;color:var(--text-dim);text-transform:uppercase;letter-spacing:.05em;font-weight:700;
}
.game-actions{
  display:flex;gap:6px;padding:8px 10px 12px;
}
.game-actions .btn{
  flex:1;font-size:11px;min-height:32px;padding:6px 8px;letter-spacing:.04em;
  box-shadow:0 3px 0 rgba(0,0,0,.4), 0 4px 8px rgba(0,0,0,.3);
}
.badge-hot,.badge-new-tile{
  position:absolute;top:8px;left:8px;z-index:2;
  padding:3px 8px;border-radius:5px;
  font-size:10px;font-weight:900;font-style:italic;letter-spacing:.06em;
  border:1px solid rgba(0,0,0,.4);
}
.badge-hot{ background:#e84545;color:#fff; }
.badge-new-tile{ background:var(--primary);color:var(--primary-ink); }

/* ============================================================
   LIVE GRID
   ============================================================ */
.live-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.live-card{
  display:flex;flex-direction:column;
  background:var(--site-bg-3);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  transition:transform .2s, border-color .2s, box-shadow .2s;
  min-width:0;
}
.live-card:hover{
  transform:translateY(-4px);
  border-color:var(--primary);
  box-shadow:0 16px 30px rgba(0,0,0,.45);
}
.media--live img{
  aspect-ratio:16/10;
  max-height:260px;
  object-fit:cover;
}
.live-info{
  padding:14px 14px 16px;
  display:flex;flex-direction:column;gap:8px;
}
.live-info h3{
  font-size:16px;font-weight:900;font-style:italic;color:#fff;margin:0;
}
.live-meta{
  font-size:12px;color:var(--text-dim);font-weight:700;letter-spacing:.02em;
}
.live-info .btn{ align-self:flex-start; }

/* ============================================================
   PROMOTIONS
   ============================================================ */
.promo-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  margin-bottom:24px;
}
.promo-card{
  display:flex;flex-direction:column;
  background:var(--site-bg-3);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  transition:transform .2s, border-color .2s;
  min-width:0;
}
.promo-card:hover{ transform:translateY(-3px);border-color:var(--primary); }
.promo-card--lead{
  border-color:var(--primary);
  background:linear-gradient(180deg,#3a131e 0%,#2c384a 100%);
  box-shadow:0 0 0 2px rgba(235,220,150,.2);
}
.promo-card .media img{
  aspect-ratio:16/9;max-height:200px;object-fit:cover;
}
.promo-body{
  padding:14px 14px 16px;
  display:flex;flex-direction:column;gap:6px;
  min-width:0;
}
.promo-body h3{
  font-size:16px;font-weight:900;font-style:italic;color:#fff;margin:0;
}
.promo-value{
  font-size:18px;font-weight:900;color:var(--primary);
  margin:0 0 4px;
}
.promo-value strong{ color:#fff; }
.promo-desc{
  font-size:13px;color:var(--text-2);margin:0 0 10px;line-height:1.5;
}
.promo-body .btn{ align-self:flex-start; }

.loyalty{
  background:linear-gradient(135deg,#3a131e 0%,#2c384a 100%);
  border:1px solid var(--line-2);
  border-radius:var(--radius);
  padding:24px;
  display:flex;align-items:center;justify-content:space-between;
  gap:24px;flex-wrap:wrap;
}
.loyalty-text{ flex:1;min-width:240px; }
.loyalty-text h3{ color:#fff;font-size:18px;font-style:italic;margin:0 0 8px; }

/* ============================================================
   PROVIDERS
   ============================================================ */
.provider-strip{
  display:grid;
  grid-template-columns:repeat(8,minmax(0,1fr));
  gap:12px;
  background:var(--site-bg-3);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  margin-bottom:28px;
}
.prov-tile{
  display:flex;align-items:center;justify-content:center;
  background:#fff;
  border-radius:8px;
  padding:14px 10px;
  min-height:64px;
  transition:transform .15s, box-shadow .15s;
  min-width:0;
}
.prov-tile:hover{ transform:translateY(-3px);box-shadow:0 10px 20px rgba(0,0,0,.45); }
.prov-tile img{
  max-height:36px;width:auto;max-width:100%;object-fit:contain;
}

/* ============================================================
   SEO TEXT
   ============================================================ */
.seo{
  background:var(--site-bg-3);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px 28px;
}
.seo h2{
  font-size:24px;color:#fff;margin-bottom:14px;
  font-style:italic;border-bottom:1px solid var(--line);padding-bottom:10px;
}
.seo h3{
  font-size:18px;color:var(--primary);margin-top:22px;margin-bottom:10px;font-style:italic;
}
.seo p{ color:var(--text-2);font-size:15px;line-height:1.7; }
.seo ul{ color:var(--text-2);font-size:15px;line-height:1.7;padding-left:1.4em; }
.seo ul li{ margin-bottom:.5em; }

/* ============================================================
   WHO WE ARE
   ============================================================ */
.who-intro{ margin-bottom:24px; }
.who-intro p{ font-size:16px;line-height:1.7;color:var(--text-2);max-width:900px; }
.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;margin-bottom:24px;
}
.trust-card{
  background:var(--site-bg-3);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:20px;
  text-align:center;
  display:flex;flex-direction:column;align-items:center;gap:10px;
  transition:transform .15s, border-color .15s;
  min-width:0;
}
.trust-card:hover{ transform:translateY(-3px);border-color:var(--primary); }
.trust-media{
  width:64px;height:64px;border-radius:50%;
  border:2px solid var(--primary);
  background:#1a2230;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.trust-media img{
  width:100%;height:100%;object-fit:cover;
}
.trust-card h3{
  font-size:15px;color:#fff;margin:0;font-style:italic;
}
.trust-card p{
  font-size:13px;color:var(--text-2);margin:0;line-height:1.5;
}
.stats-row{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
  background:linear-gradient(135deg,#3a131e 0%,#2c384a 100%);
  border:1px solid var(--line-2);
  border-radius:var(--radius);
  padding:20px;
  margin-bottom:18px;
}
.stat{ text-align:center;min-width:0; }
.stat-num{
  display:block;font-size:clamp(22px,3vw,32px);font-weight:900;font-style:italic;
  color:var(--primary);text-shadow:0 2px 6px rgba(0,0,0,.4);
}
.stat-lbl{
  display:block;font-size:12px;color:var(--text-dim);
  text-transform:uppercase;letter-spacing:.06em;font-weight:700;margin-top:4px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list{ display:flex;flex-direction:column;gap:12px; }
.faq-item{
  background:var(--site-bg-3);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  transition:border-color .15s;
}
.faq-item[open]{ border-color:var(--primary); }
.faq-item summary{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:18px 22px;
  cursor:pointer;
  font-weight:900;font-style:italic;font-size:16px;
  color:#fff;
  list-style:none;
  user-select:none;
  background:linear-gradient(180deg,#2c384a 0%,#283344 100%);
  transition:background .15s;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary:hover{ background:#324054; }
.faq-arrow{
  font-size:18px;color:var(--primary);
  transition:transform .2s;
  flex-shrink:0;
}
.faq-item[open] .faq-arrow{ transform:rotate(180deg); }
.faq-body{
  padding:18px 22px 22px;
  border-top:1px solid var(--line);
  background:var(--site-bg-2);
}
.faq-body p,.faq-body li{ font-size:14px;line-height:1.65;color:var(--text-2); }
.faq-body h4{
  font-size:14px;color:var(--primary);
  margin:14px 0 8px;font-style:italic;text-transform:uppercase;letter-spacing:.04em;
}
.faq-body ul,.faq-body ol{ padding-left:1.4em; }
.faq-body li{ margin-bottom:.45em; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  background:linear-gradient(180deg,#3a131e 0%,#461824 60%,#2e0f17 100%);
  border-top:1px solid rgba(255,255,255,.08);
  margin-left:var(--sidebar-w);
  padding:32px 24px 24px;
  color:var(--text-2);
}
.footer-top{
  display:flex;justify-content:center;gap:14px;flex-wrap:wrap;
  margin-bottom:28px;padding-bottom:24px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.foot-pill{
  display:inline-flex;align-items:center;gap:10px;
  background:#3a4a5e;border:1px solid rgba(255,255,255,.08);
  color:#fff;font-weight:800;font-style:italic;
  padding:14px 26px;border-radius:8px;font-size:14px;letter-spacing:.04em;
  transition:background .15s, transform .15s;
}
.foot-pill:hover{ background:#4a5a6e;transform:translateY(-2px); }

.footer-grid{
  display:grid;
  grid-template-columns:repeat(7,minmax(0,1fr));
  gap:24px;
  margin-bottom:30px;
}
.foot-col{ min-width:0; }
.foot-col h4{
  color:#fff;font-size:13px;font-style:italic;
  text-transform:uppercase;letter-spacing:.06em;
  margin:0 0 12px;font-weight:900;
}
.foot-col h4 + h4{ margin-top:22px; }
.foot-col ul{
  list-style:none;padding:0;margin:0 0 6px;
  display:flex;flex-direction:column;gap:8px;
}
.foot-col li a{
  color:#bdc4cf;font-size:14px;font-weight:600;
  transition:color .15s;
  overflow-wrap:anywhere;word-break:break-word;
}
.foot-col li a:hover{ color:#fff; }
.foot-link-accent{ color:var(--accent) !important; }

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:20px;
  display:flex;flex-direction:column;align-items:center;gap:14px;
  text-align:center;
}
.footer-logo img{ height:48px;width:auto; }
.foot-tag{ font-size:13px;color:#cfd4dd;max-width:760px;margin:0; }
.foot-pay{
  display:flex;flex-wrap:wrap;justify-content:center;gap:8px;
}
.foot-pay span{
  background:#fff;color:#222;padding:6px 12px;border-radius:6px;
  font-size:11px;font-weight:800;letter-spacing:.04em;
}
.foot-copy{
  font-size:12px;color:var(--text-dim);margin:6px 0 0;
}
.foot-copy a{ color:var(--text-dim);text-decoration:underline; }
.foot-copy a:hover{ color:#fff; }
.age{
  display:inline-block;background:#e84545;color:#fff;
  padding:2px 8px;border-radius:50px;font-weight:900;font-size:11px;
}

/* ============================================================
   CATFISH (bottom bar)
   ============================================================ */
.catfish{
  position:fixed;
  left:50%;transform:translateX(-50%);
  bottom:env(safe-area-inset-bottom,0);
  width:calc(100% - 24px);
  max-width:760px;
  z-index:200;
  background:linear-gradient(180deg,#5a1d2c 0%,#3a131e 100%);
  border:1px solid var(--primary);
  border-radius:14px 14px 0 0;
  box-shadow:0 -10px 30px rgba(0,0,0,.5);
  margin:0 auto;
}
.catfish-inner{
  display:flex;align-items:center;gap:12px;
  padding:12px 14px;
}
.catfish-text{
  flex:1;font-size:13px;color:#fff;font-weight:700;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;
  overflow:hidden;
  min-width:0;
}
.catfish-text strong{ color:var(--primary); }
.catfish-close{
  background:transparent;border:1px solid rgba(255,255,255,.3);
  color:#fff;font-size:18px;line-height:1;
  width:32px;height:32px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.catfish-close:hover{ background:rgba(255,255,255,.1); }

/* ============================================================
   EXIT POPUP
   ============================================================ */
.exit-overlay{
  position:fixed;inset:0;z-index:300;
  background:rgba(0,0,0,.75);
  display:flex;align-items:center;justify-content:center;
  padding:20px;
  backdrop-filter:blur(4px);
}
.exit-modal{
  position:relative;
  background:linear-gradient(180deg,#2c384a 0%,#1b242f 100%);
  border:2px solid var(--primary);
  border-radius:18px;
  padding:30px 24px 28px;
  max-width:460px;width:100%;
  text-align:center;
  box-shadow:0 30px 60px rgba(0,0,0,.7);
  animation:exitIn .3s ease-out;
}
@keyframes exitIn{
  from{ transform:scale(.9);opacity:0; }
  to{ transform:scale(1);opacity:1; }
}
.exit-close{
  position:absolute;top:10px;right:10px;
  background:transparent;border:1px solid rgba(255,255,255,.2);
  color:#fff;font-size:20px;line-height:1;
  width:34px;height:34px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
}
.exit-close:hover{ background:rgba(255,255,255,.1); }
.exit-media{
  width:100%;max-height:160px;border-radius:12px;margin-bottom:14px;
  border:1px solid var(--line);
}
.exit-media img{ width:100%;height:100%;object-fit:cover;max-height:160px; }
.exit-modal h3{
  color:#fff;font-size:24px;font-style:italic;margin:0 0 8px;
}
.exit-bonus{
  font-size:18px;color:var(--primary);font-weight:900;font-style:italic;
  margin:8px 0 12px;
}
.exit-modal p{ color:var(--text-2);font-size:14px;margin-bottom:16px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1280px){
  .game-grid{ grid-template-columns:repeat(4,minmax(0,1fr)); }
  .footer-grid{ grid-template-columns:repeat(4,minmax(0,1fr)); }
  .promo-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .provider-strip{ grid-template-columns:repeat(4,minmax(0,1fr)); }
}

@media (max-width:1024px){
  :root{ --sidebar-w:0px; }
  .burger{ display:flex; }
  .sidebar{
    transform:translateX(-100%);
    transition:transform .25s ease;
    width:280px;
    box-shadow:8px 0 24px rgba(0,0,0,.5);
  }
  .sidebar.open{ transform:translateX(0); }
  .main{ margin-left:0;max-width:100%;padding:18px 16px 80px; }
  .site-footer{ margin-left:0; }
  .live-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .trust-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .header-cta .btn{ padding:10px 14px;font-size:12px;min-height:42px; }
}

@media (max-width:760px){
  .header-inner{ padding:8px 12px;gap:8px; }
  .logo img{ height:38px; }
  .search{ display:none; }
  .header-cta{ gap:6px; }
  .header-cta .btn{ padding:9px 12px;font-size:11px;min-height:40px; }
  .game-grid{ grid-template-columns:repeat(2,minmax(0,1fr));gap:12px; }
  .live-grid{ grid-template-columns:1fr;gap:14px; }
  .promo-grid{ grid-template-columns:1fr;gap:14px; }
  .trust-grid{ grid-template-columns:1fr;gap:14px; }
  .stats-row{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .provider-strip{ grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;padding:14px; }
  .footer-grid{ grid-template-columns:repeat(2,minmax(0,1fr));gap:18px; }
  .section{ padding:18px 14px; }
  .seo{ padding:18px 16px; }
  .hero-content{ padding:24px 16px; }
  .hero-cta{ flex-direction:column;gap:10px; }
  .hero-cta .btn{ width:100%; }
  .section-cta .btn{ width:100%; }
  .loyalty{ flex-direction:column;align-items:stretch; }
  .loyalty .btn{ width:100%; }
  .faq-item summary{ padding:14px 16px;font-size:14px; }
  .faq-body{ padding:14px 16px 18px; }
  .catfish{ width:calc(100% - 12px); }
  .catfish-inner{ padding:10px 12px;gap:8px; }
  .catfish-text{ font-size:12px; }
}

@media (max-width:420px){
  .header-cta .btn{ padding:8px 10px;font-size:10px;min-height:38px; }
  .logo img{ height:34px; }
  .pill{ padding:8px 12px;font-size:11px; }
  .tab{ padding:7px 12px;font-size:12px; }
  .game-info h3{ font-size:13px; }
  .game-actions .btn{ font-size:10px;padding:6px 6px; }
  .footer-grid{ grid-template-columns:1fr; }
  .provider-strip{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .stats-row{ grid-template-columns:1fr; }
}

/* table fallback */
table{ width:100%;border-collapse:collapse;table-layout:fixed; }
table td,table th{
  overflow-wrap:anywhere;word-break:break-word;hyphens:auto;
  padding:8px;border-bottom:1px solid var(--line);
}

/* utility */
[hidden]{ display:none !important; }
