/* ====== duel — refined dark theme ====== */

:root{
  --c-bg:        #0a1129;   /* deep navy */
  --c-surface:   #0e1736;   /* nav, sections */
  --c-card:      #131c3d;   /* cards, panels */
  --c-card-2:    #182549;   /* hover, raised */
  --c-line:      rgba(255,255,255,.06);
  --c-text:      #f4f6ff;
  --c-text-mute: #9aa3c2;
  --c-accent:    #6c63ff;   /* primary button, links */
  --c-accent-2:  #5b54e6;
  --c-gold:      #ffae3d;   /* balance, win amount */
  --c-success:   #3fb950;
  --c-danger:    #ff4f6c;
}

html{scroll-behavior:smooth}
body{
  background:var(--c-bg);
  font-feature-settings:"ss01","cv11";
}

/* ====== gradient text (subtle) ====== */
.text-gradient-neon{
  background: linear-gradient(92deg,#a59cff 0%,#6c63ff 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* ====== primary CTA (subtle violet) ====== */
.btn-primary{
  background:linear-gradient(180deg,#7a72ff,#6c63ff 60%,#5b54e6);
  color:#fff;
  position:relative;
  isolation:isolate;
  box-shadow:0 6px 18px -8px rgba(108,99,255,.6),inset 0 1px 0 rgba(255,255,255,.18);
  transition:transform .15s ease,box-shadow .25s ease,background .2s ease;
}
.btn-primary:hover{
  background:linear-gradient(180deg,#8a82ff,#7269ff 60%,#6259e8);
  transform:translateY(-1px);
  box-shadow:0 10px 24px -8px rgba(108,99,255,.7);
}
.btn-primary:active{transform:translateY(0)}

/* ====== logo mark ====== */
.logo-mark{
  width:26px;height:26px;
  border-radius:8px;
  background:linear-gradient(135deg,#7a72ff,#5b54e6);
  position:relative;
  display:inline-flex;align-items:center;justify-content:center;
  box-shadow:0 4px 14px -4px rgba(108,99,255,.6);
}
.logo-mark::after{
  content:"";
  position:absolute; inset:5px;
  background:#0a1129; border-radius:4px;
}
.logo-pulse{
  position:absolute;width:5px;height:5px;border-radius:99px;background:#fff;z-index:1;
  box-shadow:0 0 10px rgba(255,255,255,.8);
  animation:pulseDot 2.4s ease-in-out infinite;
}
@keyframes pulseDot{
  0%,100%{transform:scale(.7);opacity:.6}
  50%{transform:scale(1);opacity:1}
}

/* ====== nav icons (top bar) ====== */
.nav-link{
  display:inline-flex;align-items:center;gap:.45rem;
  padding:.35rem 0;
  color:var(--c-text-mute);
  font-weight:500;
  position:relative;
}
.nav-link svg{width:16px;height:16px;opacity:.85}
.nav-link:hover{color:#fff}
.nav-link.is-active{color:#fff}
.nav-link.is-active::after{
  content:"";
  position:absolute;left:0;right:0;bottom:-22px;
  height:2px;border-radius:2px;
  background:var(--c-accent);
  box-shadow:0 0 14px rgba(108,99,255,.7);
}

/* ====== balance pill (header) ====== */
.balance-pill{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.45rem .85rem;border-radius:10px;
  background:#0a1129;
  border:1px solid var(--c-line);
  font-weight:600;font-size:13px;color:#fff;
}
.balance-pill .coin{
  width:18px;height:18px;border-radius:99px;
  background:radial-gradient(circle at 35% 30%,#ffd17a,#ffae3d 60%,#c8761e);
  display:inline-block;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.25);
}

/* ====== filter chips ====== */
.chip{
  display:inline-flex;align-items:center;gap:.45rem;
  padding:.5rem .85rem;
  border-radius:10px;
  background:transparent;
  color:var(--c-text-mute);
  font-weight:500;
  font-size:13px;
  transition:background .15s ease,color .15s ease;
  border:1px solid transparent;
}
.chip:hover{background:rgba(255,255,255,.04);color:#fff}
.chip-active{
  background:rgba(108,99,255,.14);
  color:#fff;
  border-color:rgba(108,99,255,.28);
}
.chip svg{width:14px;height:14px}

/* ====== section heading row ====== */
.section-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:14px}
.section-title{
  display:inline-flex;align-items:center;gap:.55rem;
  font-family:"Space Grotesk",sans-serif;
  font-weight:700;font-size:18px;color:#fff;
}
.section-title svg{width:18px;height:18px;color:var(--c-accent)}
.section-arrows{display:inline-flex;align-items:center;gap:.4rem}
.section-arrows .view-all{
  font-size:12px;font-weight:600;color:var(--c-text-mute);
  padding:.4rem .7rem;border-radius:8px;
}
.section-arrows .view-all:hover{color:#fff;background:rgba(255,255,255,.05)}
.section-arrows .arrow-btn{
  width:30px;height:30px;border-radius:8px;
  display:inline-flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.04);
  color:var(--c-text-mute);
  transition:all .15s ease;
}
.section-arrows .arrow-btn:hover{background:rgba(255,255,255,.08);color:#fff}
.section-arrows .arrow-btn svg{width:14px;height:14px}

/* ====== game tiles (tall poster cards, like real lobby) ====== */
.game-card{
  display:block;
  position:relative;
  aspect-ratio:3/4;
  border-radius:12px;
  overflow:hidden;
  background:var(--c-card);
  transition:transform .18s ease,box-shadow .18s ease;
  isolation:isolate;
  width:100%;
  min-width:0;
}
.game-card:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 30px -12px rgba(0,0,0,.5);
}
.game-card-overlay{
  position:absolute;left:0;right:0;bottom:0;
  padding:9px 10px 10px;
  background:linear-gradient(180deg,transparent,rgba(7,12,32,.92) 70%);
  display:flex;flex-direction:column;gap:2px;
}
.game-title{
  font-family:"Space Grotesk",sans-serif;
  font-weight:700;font-size:13px;
  line-height:1.15;color:#fff;
  text-shadow:0 1px 2px rgba(0,0,0,.5);
}
.game-prov{
  font-size:10px;color:rgba(255,255,255,.6);
  text-transform:uppercase;letter-spacing:.08em;
}
.game-rtp{
  font-size:10px;color:var(--c-success);
  font-weight:600;margin-top:1px;
}
.game-tag{
  position:absolute;top:8px;left:8px;
  padding:3px 7px;border-radius:5px;
  background:rgba(10,17,41,.75);backdrop-filter:blur(6px);
  font-size:9px;font-weight:700;letter-spacing:.08em;
  text-transform:uppercase;color:var(--c-success);
  border:1px solid rgba(63,185,80,.3);
}
.game-tag.tag-zero{color:#a59cff;border-color:rgba(165,156,255,.35);background:rgba(108,99,255,.12)}

/* Game-card art: covers the whole tile. Supports either CSS background var (legacy)
   or an actual <img class="game-card-art"> for accessibility/SEO. */
.game-card-art{
  position:absolute;inset:0;
  background-size:cover;
  background-position:center;
}
.game-card-art[style*="--art-img"]{
  background-image: var(--art-img);
}
img.game-card-art{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
}

/* tile art — no neon, restrained gradients */
.game-tile-crash    { background:linear-gradient(160deg,#1a2456 0%,#3d2570 60%,#0c1234 100%); }
.game-tile-plinko   { background:linear-gradient(160deg,#3d2570 0%,#1a2456 70%); }
.game-tile-mines    { background:linear-gradient(160deg,#0d3a2a 0%,#10204a 70%); }
.game-tile-dice     { background:linear-gradient(160deg,#3d2570 0%,#a04a3c 100%); }
.game-tile-castle   { background:linear-gradient(160deg,#3d2570 0%,#5b2da4 50%,#0c1234 100%); }
.game-tile-blackjack{ background:linear-gradient(160deg,#0c1234 0%,#1a2456 70%,#3d2570 110%); }
.game-tile-keno     { background:linear-gradient(160deg,#a04a3c 0%,#1a2456 80%); }
.game-tile-poker    { background:linear-gradient(160deg,#0d3a2a 0%,#10204a 60%,#3d2570 110%); }
.game-tile-beef     { background:linear-gradient(160deg,#a04a3c 0%,#3d2570 100%); }
.game-tile-roulette { background:linear-gradient(160deg,#5b2da4 0%,#10204a 70%); }
.game-tile-bj       { background:linear-gradient(160deg,#10204a 0%,#0c1234 60%,#5b2da4 110%); }
.game-tile-baccarat { background:linear-gradient(160deg,#0c1234 0%,#a04a3c 100%); }
.game-tile-show     { background:linear-gradient(160deg,#3d2570 0%,#5b2da4 50%,#0d3a2a 100%); }

/* slot tiles row (compact, top of lobby) */
.slot-tile{
  aspect-ratio:3/4;border-radius:10px;
  position:relative;overflow:hidden;
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:9px 10px;
  background:var(--c-card);
  transition:transform .18s ease;
  width:100%;
  min-width:0;
}
.slot-tile:hover{transform:translateY(-2px)}
.slot-tile::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 55%,rgba(7,12,32,.92) 100%);
  z-index:1;
}
img.slot-art{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  display:block;
  z-index:0;
}
.slot-name{position:relative;z-index:2;font-family:"Space Grotesk",sans-serif;font-weight:700;font-size:13px;line-height:1.15;color:#fff;text-shadow:0 1px 2px rgba(0,0,0,.5)}
.slot-prov{position:relative;z-index:2;font-size:10px;color:rgba(255,255,255,.7);margin-top:2px;text-transform:uppercase;letter-spacing:.08em}

/* ====== USP strip (compact) ====== */
.usp-card{
  background:var(--c-card);
  border:1px solid var(--c-line);
  border-radius:14px;
  padding:18px 18px 20px;
  transition:border-color .2s ease,background .2s ease;
}
.usp-card:hover{border-color:rgba(108,99,255,.3);background:var(--c-card-2)}
.usp-icon{
  width:36px;height:36px;border-radius:10px;
  display:inline-flex;align-items:center;justify-content:center;
  background:rgba(108,99,255,.15);
  color:#a59cff;
}
.usp-icon svg{width:18px;height:18px}

/* ====== promo cards ====== */
.promo-card{
  position:relative;
  border-radius:16px;
  padding:22px;
  background:var(--c-card);
  border:1px solid var(--c-line);
  overflow:hidden;
  transition:transform .2s ease,border-color .2s ease;
}
.promo-card:hover{transform:translateY(-2px);border-color:var(--accent,rgba(108,99,255,.4))}
.promo-card-pink   { --accent:rgba(255,79,108,.4); }
.promo-card-violet { --accent:rgba(108,99,255,.4); }
.promo-card-lime   { --accent:rgba(63,185,80,.4); }

/* ====== payment tiles ====== */
.pay-tile{
  height:48px;
  display:flex;align-items:center;justify-content:center;
  border-radius:10px;
  background:var(--c-card);
  border:1px solid var(--c-line);
  font-weight:700;
  letter-spacing:.04em;
  color:#dfe4f3;
  font-family:"Space Grotesk",sans-serif;
  font-size:13px;
  transition:all .2s ease;
}
.pay-tile:hover{
  background:var(--c-card-2);
  border-color:rgba(108,99,255,.35);
  color:#fff;
}

/* ====== faq ====== */
.faq-item{
  border:1px solid var(--c-line);
  border-radius:12px;
  background:var(--c-card);
  overflow:hidden;
}
.faq-item[open]{border-color:rgba(108,99,255,.35)}
.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:14px 18px;
  display:flex;align-items:center;justify-content:space-between;
  font-family:"Space Grotesk",sans-serif;
  font-weight:600;font-size:15px;
  color:#fff;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-arrow{
  width:11px;height:11px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg);
  transition:transform .2s ease;
  opacity:.5;
}
.faq-item[open] .faq-arrow{transform:rotate(-135deg);opacity:1;color:#a59cff}
.faq-item p{padding:0 18px 18px;color:var(--c-text-mute);line-height:1.6;font-size:14px}

/* ====== ticker ====== */
.ticker{position:relative}
.ticker-track{animation:tickerScroll 60s linear infinite;will-change:transform}
.ticker:hover .ticker-track{animation-play-state:paused}
@keyframes tickerScroll{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}
.ticker-item{
  display:inline-flex;align-items:center;gap:.5rem;
  font-size:12px;color:var(--c-text-mute);
}
.ticker-item .ti-game{color:#dfe4f3;font-weight:600}
.ticker-item .ti-amount{color:var(--c-gold);font-weight:700;font-family:"Space Grotesk",sans-serif}

/* ====== VIP page tiers ====== */
.tier-rail{
  position:relative;height:5px;border-radius:99px;
  background:rgba(255,255,255,.05);
  overflow:hidden;
}
.tier-fill{
  position:absolute;inset:0;
  background:linear-gradient(90deg,#cd7f32 0%,#c0c0c0 25%,#ffd700 50%,#a59cff 75%,#7eebff 100%);
}
.tier-row{
  background:var(--c-card);
  border:1px solid var(--c-line);
  border-radius:14px;
  padding:18px 22px;
  transition:all .2s ease;
}
.tier-row:hover{border-color:rgba(108,99,255,.35);background:var(--c-card-2)}
.tier-name{font-family:"Space Grotesk",sans-serif;font-weight:700;font-size:1.25rem}
.tier-perk{font-size:13px;color:var(--c-text-mute)}

/* ====== originals page rows ====== */
.originals-row{
  display:grid;
  grid-template-rows:auto 1fr;
  border-radius:14px;
  background:var(--c-card);
  border:1px solid var(--c-line);
  overflow:hidden;
  transition:transform .2s ease,border-color .2s ease;
}
.originals-row:hover{transform:translateY(-2px);border-color:rgba(108,99,255,.3)}
.originals-tile{
  display:block;aspect-ratio:16/9;
  position:relative;
  overflow:hidden;
  background:var(--c-card-2);
}
.originals-tile img{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  display:block;
}
.originals-tile::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 60%,rgba(7,12,32,.6) 100%);
  z-index:1;
}
.originals-meta{padding:18px 20px 20px}
.originals-stats{
  display:grid;grid-template-columns:1fr 1fr;gap:.65rem;
  margin-top:14px;padding-top:14px;
  border-top:1px solid var(--c-line);
}
.originals-stats > div{display:flex;flex-direction:column;gap:.1rem}
.originals-label{
  font-size:10px;text-transform:uppercase;letter-spacing:.1em;
  color:var(--c-text-mute);font-weight:600;
}

/* ====== language menu ====== */
#lang-menu{background:var(--c-card);border:1px solid var(--c-line)}
#lang-menu li > a,
#lang-menu li > button{
  width:100%;display:flex;align-items:center;gap:.55rem;
  padding:.5rem .85rem;text-align:left;
  color:#dfe4f3;
  text-decoration:none;
  transition:background .15s ease;
}
#lang-menu li > a:hover,
#lang-menu li > button:hover{background:rgba(255,255,255,.04)}
#lang-menu li > a[aria-current="true"],
#lang-menu li > button[aria-current="true"]{background:rgba(108,99,255,.12);color:#fff}
#lang-menu li > a[aria-current="true"] .lang-tick,
#lang-menu li > button[aria-current="true"] .lang-tick{opacity:1}
.lang-tick{margin-left:auto;opacity:0;color:#a59cff;flex-shrink:0}

/* ====== pill (live casino tags) ====== */
.pill{
  display:inline-flex;align-items:center;
  padding:.3rem .7rem;border-radius:99px;
  background:var(--c-card);
  border:1px solid var(--c-line);
  font-size:12px;font-weight:500;color:var(--c-text-mute);
}

/* ====== SEO long-form prose ====== */
.seo-prose{ max-width:1200px; }
.seo-header{ max-width:760px; }
.seo-prose .seo-lead{
  margin-top:1.1rem;
  font-size:16px;
  line-height:1.7;
  color:rgba(255,255,255,.78);
}
.seo-block{
  margin-top:2.25rem;
  padding-top:1.75rem;
  border-top:1px solid var(--c-line);
}
.seo-block:first-of-type{margin-top:2.75rem}
.seo-h3{
  font-family:"Space Grotesk",sans-serif;
  font-weight:700;
  font-size:20px;
  letter-spacing:-.01em;
  color:#fff;
  margin-bottom:.75rem;
  line-height:1.25;
}
.seo-block p{
  font-size:15px;
  line-height:1.7;
  color:rgba(255,255,255,.7);
}
.seo-block p + p{margin-top:.7rem}

/* desktop: 2-column block — sticky H3 on the left, content on the right */
@media (min-width: 1024px){
  .seo-h3{ font-size:22px; margin-bottom:0; }
  .seo-block{
    display:grid;
    grid-template-columns: minmax(200px, 1fr) minmax(0, 2.4fr);
    gap:2.5rem;
    align-items:start;
  }
  .seo-block > .seo-h3{
    position:sticky;
    top:5rem;
    grid-column:1;
    padding-right:1rem;
  }
  .seo-block > *:not(.seo-h3){ grid-column:2; }
}

/* small screens: tighter heading */
@media (max-width: 640px){
  .seo-prose .seo-lead{ font-size:15px; }
  .seo-h3{ font-size:18px; }
  .seo-block{ margin-top:2rem; padding-top:1.5rem; }
  .seo-block p{ font-size:14.5px; line-height:1.65; }
}

/* table */
.seo-table-wrap{
  margin-top:1.1rem;
  border:1px solid var(--c-line);
  border-radius:12px;
  overflow:hidden;
  background:var(--c-card);
  -webkit-overflow-scrolling:touch;
}
@media (max-width: 640px){
  .seo-table-wrap{ overflow-x:auto; }
}
.seo-table{
  width:100%;
  border-collapse:collapse;
  font-size:14px;
  min-width:480px;
}
.seo-table thead th{
  text-align:left;
  padding:.7rem 1rem;
  background:rgba(255,255,255,.025);
  font-weight:600;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:rgba(255,255,255,.5);
  border-bottom:1px solid var(--c-line);
}
.seo-table tbody td{
  padding:.7rem 1rem;
  border-top:1px solid var(--c-line);
  color:rgba(255,255,255,.78);
}
.seo-table tbody tr:first-child td{border-top:none}
.seo-table tbody tr:hover td{background:rgba(255,255,255,.02)}
.seo-table td:first-child{font-weight:600;color:#fff}
.seo-table td:last-child{color:#3fb950;font-weight:600}

/* steps */
.seo-steps{
  margin-top:1rem;
  display:grid;
  grid-template-columns:1fr;
  gap:.7rem;
  list-style:none;
  padding:0;
}
@media (min-width: 768px){
  .seo-steps{ grid-template-columns:repeat(3,1fr); gap:.8rem; }
}
.seo-steps li{
  display:flex;
  gap:.85rem;
  padding:1rem 1.1rem;
  background:var(--c-card);
  border:1px solid var(--c-line);
  border-radius:12px;
}
.seo-step-num{
  flex-shrink:0;
  width:30px;height:30px;border-radius:8px;
  background:rgba(108,99,255,.14);
  border:1px solid rgba(108,99,255,.28);
  color:#a59cff;
  display:flex;align-items:center;justify-content:center;
  font-family:"Space Grotesk",sans-serif;
  font-weight:700;font-size:14px;
}
.seo-steps h4{
  font-family:"Space Grotesk",sans-serif;
  font-size:14px;
  font-weight:700;
  color:#fff;
  margin-bottom:.25rem;
}
.seo-steps p{
  font-size:13px !important;
  line-height:1.55 !important;
  color:rgba(255,255,255,.62) !important;
  margin:0 !important;
}

/* list with check icons */
.seo-list{
  margin-top:1rem;
  list-style:none;
  padding:0;
  display:grid;
  gap:.55rem;
  max-width:60ch;
}
.seo-list li{
  display:flex;
  gap:.65rem;
  align-items:flex-start;
  font-size:14.5px;
  line-height:1.55;
  color:rgba(255,255,255,.78);
}
.seo-list li::before{
  content:"";
  flex-shrink:0;
  width:18px;height:18px;
  margin-top:1px;
  border-radius:99px;
  background:rgba(108,99,255,.18);
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23a59cff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='m3.5 8.5 3 3 6-7'/></svg>");
  background-size:11px;
  background-position:center;
  background-repeat:no-repeat;
}
.seo-list li b, .seo-list li strong{color:#fff;font-weight:600}

/* ====== bottom-right floating chat dot ====== */
.live-chat-fab{
  position:fixed;right:18px;bottom:18px;
  width:46px;height:46px;border-radius:99px;
  background:var(--c-card);
  border:1px solid var(--c-line);
  display:flex;align-items:center;justify-content:center;
  color:#dfe4f3;
  box-shadow:0 8px 22px -8px rgba(0,0,0,.5);
  z-index:50;
  transition:all .2s ease;
}
.live-chat-fab:hover{background:var(--c-card-2);color:#fff;border-color:rgba(108,99,255,.4)}
.live-chat-fab svg{width:18px;height:18px}

/* ====== breadcrumbs ====== */
.breadcrumb{
  font-size:12px;
  color:var(--c-text-mute);
  padding:1rem 0 0;
}
.breadcrumb ol{
  list-style:none;
  margin:0;padding:0;
  display:flex;align-items:center;flex-wrap:wrap;gap:.4rem;
}
.breadcrumb li{display:inline-flex;align-items:center;gap:.4rem}
.breadcrumb li + li::before{
  content:"/";
  color:rgba(255,255,255,.25);
  margin-right:.1rem;
}
.breadcrumb a{color:var(--c-text-mute);transition:color .15s ease}
.breadcrumb a:hover{color:#fff}
.breadcrumb [aria-current="page"]{color:#fff;font-weight:500}

/* sr-only utility */
.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

/* ====== misc ====== */
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important;scroll-behavior:auto!important}
}

/* scrollbar */
::-webkit-scrollbar{width:8px;height:8px}
::-webkit-scrollbar-track{background:var(--c-bg)}
::-webkit-scrollbar-thumb{background:var(--c-card-2);border-radius:99px;border:2px solid var(--c-bg)}
::-webkit-scrollbar-thumb:hover{background:#243067}
