@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Montserrat:wght@600;700;800;900&display=swap');

/* ══ TOKENS ══ */
:root {
  --bg:      #090a14;
  --panel:   #0d0e1c;
  --tile:    #121322;
  --edge:    rgba(255,255,255,0.06);
  --hi:      #ff6a00;
  --au:      #ffb347;
  --bloom:   rgba(255,106,0,0.26);
  --ink:     #f0f0f0;
  --fog:     rgba(240,240,240,0.52);
  --rad:     14px;
  --rads:    8px;
  --pill:    999px;
  --cap:     1260px;
  --nav-h:   68px;
}

/* ══ RESET ══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); font-family: 'Poppins', sans-serif; overflow-x: hidden; line-height: 1.65; }
a { color: var(--hi); text-decoration: none; transition: color .2s; }
a:hover { color: var(--au); }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; padding: 0; margin: 0; }

/* ══ LAYOUT HELPERS ══ */
.wrap {
  max-width: var(--cap);
  margin: 0 auto;
  padding: 0 28px;
}
.block { padding: 88px 0; }
.block--shaded { background: var(--panel); }

/* ══ CTA BUTTONS ══ */
.cta, .cta-o {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  text-decoration: none;
  border-radius: var(--rads);
  transition: all .22s;
}
.cta {
  background: linear-gradient(135deg, var(--hi) 0%, var(--au) 100%);
  color: #fff;
  font-size: 14px;
  padding: 11px 24px;
  box-shadow: 0 4px 18px var(--bloom);
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,106,0,.5); color: #fff; }
.cta-o {
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  padding: 10px 22px;
  border: 1.5px solid rgba(255,255,255,.2);
}
.cta-o:hover { border-color: rgba(255,106,0,.55); color: var(--hi); }
.cta--xl, .cta-o--xl { font-size: 16px; padding: 15px 38px; border-radius: 10px; }

/* ══ LABEL CHIP ══ */
.lbl {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--hi);
  background: rgba(255,106,0,.09);
  border: 1px solid rgba(255,106,0,.28);
  padding: 5px 14px;
  border-radius: var(--pill);
}

/* ══ SECTION HEADING ══ */
.blk-hd {
  margin-bottom: 36px;
}
.blk-hd--center { text-align: center; }
.blk-ttl {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
}
.blk-ttl em { font-style: normal; color: var(--hi); }
.blk-sub {
  font-size: 14px;
  color: var(--fog);
  margin-top: 8px;
  max-width: 540px;
}
.blk-hd--center .blk-sub { margin-left: auto; margin-right: auto; }

/* ══ HEADER ══ */
.pg-hdr {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(9,10,20,.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--edge);
}
.pg-hdr__in {
  max-width: var(--cap);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.pg-logo {
  flex-shrink: 0;
  width: 185px;
  height: 33px;
  background: url('../img/logo.svg') no-repeat left center / contain;
  display: block;
}
.pg-logo--s { width: 145px; height: 27px; }
.pg-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.pg-nav__lnk {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(240,240,240,.66);
  padding: 8px 16px;
  border-radius: var(--rads);
  position: relative;
  transition: color .2s, background .2s;
}
.pg-nav__lnk:hover { color: #fff; background: rgba(255,255,255,.05); }
.pg-hdr__acts {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.pg-hdr__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.pg-hdr__burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .25s; }

/* ══ DRAWER ══ */
.pg-drw {
  position: fixed;
  top: 0; left: -310px;
  width: 290px;
  height: 100vh;
  background: var(--panel);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--edge);
  transition: left .3s ease;
}
.pg-drw.open { left: 0; }
.pg-drw__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--edge);
}
.pg-drw__cls { background: none; border: none; font-size: 28px; color: var(--ink); cursor: pointer; line-height: 1; }
.pg-drw__nav { flex: 1; padding: 16px; overflow-y: auto; display: flex; flex-direction: column; }
.pg-drw__nav a { display: block; padding: 12px 16px; font-size: 15px; font-weight: 500; color: rgba(240,240,240,.75); border-radius: var(--rads); transition: background .2s, color .2s; }
.pg-drw__nav a:hover { background: rgba(255,255,255,.06); color: #fff; }
.pg-drw__foot { padding: 18px 24px; border-top: 1px solid var(--edge); display: flex; flex-direction: column; gap: 10px; }
.pg-drw__foot .cta, .pg-drw__foot .cta-o { width: 100%; font-size: 15px; padding: 13px; border-radius: var(--rad); }

/* ══ VEIL ══ */
.pg-veil { position: fixed; inset: 0; background: rgba(0,0,0,.68); z-index: 1000; opacity: 0; pointer-events: none; transition: opacity .3s; }
.pg-veil.show { opacity: 1; pointer-events: auto; }

/* ══ INTRO / HERO — HORIZONTAL ══ */
.intro {
  padding-top: var(--nav-h);
  background: var(--bg);
  border-bottom: 1px solid var(--edge);
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding-top: 52px;
  padding-bottom: 52px;
}
.intro__left { display: flex; flex-direction: column; gap: 20px; }
.intro__left .lbl { align-self: flex-start; }
.intro__h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 3.8vw, 56px);
  font-weight: 900;
  line-height: 1.06;
  color: #fff;
}
.intro__h1 strong {
  display: block;
  background: linear-gradient(135deg, var(--hi), var(--au));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.intro__right { display: flex; flex-direction: column; gap: 20px; }
.intro__desc { font-size: 15px; color: rgba(240,240,240,.65); line-height: 1.75; margin: 0; }
.intro__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.intro__badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,106,0,.08);
  border: 1px solid rgba(255,106,0,.28);
  border-radius: var(--rad);
  padding: 14px 20px;
}
.intro__badge-amt {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--au);
  line-height: 1;
  white-space: nowrap;
}
.intro__badge-lbl { font-size: 12px; font-weight: 600; color: rgba(240,240,240,.62); line-height: 1.45; }
.intro__perks { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.perk { display: flex; align-items: center; gap: 7px; font-size: 12px; color: rgba(240,240,240,.52); }
.perk::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--hi); box-shadow: 0 0 7px var(--hi); flex-shrink: 0; }

/* ══ TRUST STRIP ══ */
.trust {
  background: var(--panel);
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
}
.trust__row {
  max-width: var(--cap);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 20px;
  border-right: 1px solid var(--edge);
}
.trust__item:last-child { border-right: none; }
.trust__ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,106,0,.1);
  border: 1px solid rgba(255,106,0,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.trust__txt strong { display: block; font-size: 13px; font-weight: 700; color: #fff; line-height: 1.2; }
.trust__txt span { font-size: 11px; color: var(--fog); }

/* ══ WELCOME DEAL — HORIZONTAL ══ */
.deal {
  background: var(--tile);
  border: 1px solid var(--edge);
  border-radius: var(--rad);
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
}
.deal__left {
  background: linear-gradient(160deg, var(--hi) 0%, var(--au) 100%);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 260px;
}
.deal__left .deal__total {
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.deal__left p { font-size: 13px; color: rgba(255,255,255,.8); font-weight: 600; margin-bottom: 24px; }
.deal__left .cta { background: #fff; color: var(--hi); box-shadow: none; font-size: 15px; padding: 12px 28px; }
.deal__left .cta:hover { background: rgba(255,255,255,.9); color: var(--hi); transform: translateY(-2px); }
.deal__steps {
  padding: 40px 36px;
  display: flex;
  align-items: stretch;
  gap: 0;
}
.deal__step {
  flex: 1;
  padding: 24px 28px;
  border-right: 1px solid var(--edge);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.deal__step:last-child { border-right: none; }
.deal__step-n {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(255,106,0,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--hi);
}
.deal__step-pct {
  font-family: 'Montserrat', sans-serif;
  font-size: 46px;
  font-weight: 900;
  color: var(--hi);
  line-height: 1;
}
.deal__step-desc { font-size: 12px; color: var(--fog); line-height: 1.5; }
.deal__step-spins { font-size: 13px; font-weight: 700; color: var(--au); }

/* ══ GAME ARENA ══ */
.arena__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.gc {
  border-radius: var(--rad);
  background: var(--tile);
  border: 1px solid var(--edge);
  overflow: hidden;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.gc:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.6), 0 0 0 1px rgba(255,106,0,.35);
  border-color: rgba(255,106,0,.35);
}
.gc__frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.gc__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .4s, filter .35s;
}
.gc:hover .gc__img { transform: scale(1.12); filter: brightness(.45); }
.gc__actions {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  opacity: 0;
  transition: opacity .25s;
  z-index: 2;
}
.gc:hover .gc__actions { opacity: 1; }
.gc__actions .cta { font-size: 12px; padding: 8px 20px; border-radius: var(--rads); }
.gc__ghost {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.36);
  padding: 6px 16px;
  border-radius: var(--rads);
  transition: background .2s;
  text-decoration: none;
}
.gc__ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
.gc__foot {
  padding: 10px 13px 13px;
}
.gc__name {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .3px;
  line-height: 1.3;
  margin-bottom: 3px;
}
.gc__by { font-size: 10px; color: var(--fog); letter-spacing: .4px; }

/* ══ GAME TABS ══ */
.tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--pill);
  background: var(--tile);
  border: 1px solid var(--edge);
  color: var(--fog);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}
.tab.active, .tab:hover { background: var(--hi); border-color: var(--hi); color: #fff; box-shadow: 0 4px 14px var(--bloom); }
.blk-more { font-size: 13px; font-weight: 600; color: var(--hi); white-space: nowrap; }
.blk-more:hover { color: var(--au); }
.blk-hd-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 24px; }

/* ══ CASINO / SPORTS PICK ══ */
.pick__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.pick-tile {
  position: relative;
  height: 200px;
  border-radius: var(--rad);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  text-decoration: none;
  transition: transform .3s;
}
.pick-tile:hover { transform: scale(1.02); }
.pick-tile__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .4s;
}
.pick-tile:hover .pick-tile__bg { transform: scale(1.07); }
.pick-tile--casino .pick-tile__bg { background-image: url('../img/Casino-v3.png'); }
.pick-tile--sports .pick-tile__bg { background-image: url('../img/Sport-v1.png'); }
.pick-tile__shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(255,106,0,.65) 0%, transparent 60%);
  z-index: 1;
}
.pick-tile__name {
  position: relative; z-index: 2;
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.45);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pick-ico { width: 26px; height: 26px; background-size: contain; background-repeat: no-repeat; background-position: center; flex-shrink: 0; }
.pick-ico--c { background-image: url('../img/casino_icon.png'); }
.pick-ico--s { background-image: url('../img/sports_icon.png'); }

/* ══ PAYMENTS ══ */
.bank {
  background: var(--panel);
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
  padding: 34px 0;
}
.bank__in { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.bank__cap {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hi);
  flex-shrink: 0;
  white-space: nowrap;
}
.bank__logos {
  height: 52px;
  background-image: url('../img/payments.jpg');
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
  flex: 1;
  min-width: 200px;
}

/* ══ PROVIDERS ══ */
.studio__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.studio__tag {
  background: var(--tile);
  border: 1px solid var(--edge);
  border-radius: var(--rads);
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(240,240,240,.68);
  transition: all .2s;
  cursor: default;
}
.studio__tag:hover { border-color: rgba(255,106,0,.4); color: #fff; background: rgba(255,106,0,.08); }

/* ══ MOBILE PROMO (no image) ══ */
.m-banner {
  background: linear-gradient(135deg, rgba(255,106,0,.12) 0%, rgba(255,179,71,.06) 100%);
  border-top: 1px solid rgba(255,106,0,.18);
  border-bottom: 1px solid rgba(255,106,0,.18);
  padding: 52px 0;
}
.m-banner__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.m-banner__text { flex: 1; min-width: 0; }
.m-banner__text .lbl { margin-bottom: 16px; }
.m-banner__h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}
.m-banner__text p {
  font-size: 15px;
  color: var(--fog);
  line-height: 1.72;
  margin-bottom: 22px;
}
.m-banner__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 26px;
}
.m-banner__check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(240,240,240,.8);
}
.m-banner__check::before {
  content: '✓';
  color: var(--hi);
  font-weight: 800;
  font-size: 12px;
}
.m-banner__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
  background: rgba(9,10,20,.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,106,0,.22);
  border-radius: var(--rad);
  padding: 28px 44px;
  gap: 4px;
}
.m-banner__stat strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--hi);
  line-height: 1;
}
.m-banner__stat span { font-size: 12px; color: var(--fog); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ══ ARTICLE ══ */
.art-panel {
  background: var(--panel);
  border: 1px solid var(--edge);
  border-radius: 18px;
  padding: 60px 64px;
}
.art-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  font-size: 12px;
  color: var(--fog);
  margin-bottom: 32px;
  padding: 10px 16px;
  background: rgba(255,106,0,.05);
  border-left: 3px solid var(--hi);
  border-radius: 0 var(--rads) var(--rads) 0;
}
.art-meta span { display: flex; align-items: center; gap: 5px; }
.art-body { max-width: 840px; margin: 0 auto; }
.art-body h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 20px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--edge);
}
.art-body img { display: none; }
.art-body h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 700;
  color: #fff;
  margin: 42px 0 14px;
  padding-left: 14px;
  border-left: 4px solid var(--hi);
  line-height: 1.3;
}
.art-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(15px, 1.9vw, 19px);
  font-weight: 600;
  color: rgba(240,240,240,.88);
  margin: 28px 0 12px;
  line-height: 1.4;
}
.art-body p { font-size: 15px; line-height: 1.8; color: rgba(240,240,240,.8); margin: 0 0 18px; }
.art-body ul, .art-body ol { padding-left: 22px; margin: 0 0 18px; list-style: disc; }
.art-body ol { list-style: decimal; }
.art-body li { font-size: 15px; line-height: 1.76; color: rgba(240,240,240,.8); margin-bottom: 8px; }
.art-body a { color: var(--ink); }
.art-body a:hover { color: var(--ink); text-decoration: underline; }
.art-body div[style*="overflow-x"] { margin: 16px 0 28px; border-radius: var(--rad); }

/* ══ TABLE ══ */
.casino-table { width: 100%; border-collapse: collapse; min-width: 500px; font-size: 14px; }
.casino-table th { background: var(--hi); color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700; padding: 13px 18px; text-align: left; white-space: nowrap; }
.casino-table td { padding: 12px 18px; color: rgba(240,240,240,.86); border-bottom: 1px solid rgba(255,255,255,.04); }
.casino-table tbody tr:nth-child(odd)  td { background: rgba(9,10,20,.5); }
.casino-table tbody tr:nth-child(even) td { background: rgba(18,19,34,.5); }
.casino-table tbody tr:hover           td { background: rgba(255,106,0,.1); }
.casino-table tbody tr:last-child      td { border-bottom: none; }
.casino-table th p, .casino-table td p { margin: 0; }

/* ══ FAQ — 2-COLUMN GRID ══ */
.qna__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.qna-item {
  background: var(--tile);
  border: 1px solid var(--edge);
  border-radius: var(--rad);
  overflow: hidden;
  transition: border-color .2s;
}
.qna-item:hover, .qna-item.open { border-color: rgba(255,106,0,.38); }
.qna-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  transition: color .2s;
}
.qna-item.open .qna-item__q { color: var(--hi); }
.qna-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,106,0,.09);
  border: 1px solid rgba(255,106,0,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--hi);
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  transition: transform .25s, background .2s;
}
.qna-item.open .qna-arrow { transform: rotate(45deg); background: rgba(255,106,0,.18); }
.qna-item__a { display: none; padding: 0 22px 18px; }
.qna-item.open .qna-item__a { display: block; }
.qna-item__a p { font-size: 13.5px; line-height: 1.72; color: rgba(240,240,240,.72); margin: 0; }

/* ══ FOOTER ══ */
.pg-foot {
  background: var(--panel);
  border-top: 1px solid var(--edge);
  padding: 64px 0 0;
}
.pg-foot__cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--edge);
}
.ft-logo {
  display: block;
  width: 185px; height: 33px;
  background: url('../img/logo.svg') no-repeat left center / contain;
  margin-bottom: 16px;
}
.pg-foot__brand p { font-size: 13px; color: var(--fog); line-height: 1.68; margin-bottom: 20px; max-width: 270px; }
.soc-list { display: flex; gap: 8px; }
.soc-a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06);
  border-radius: var(--rads);
  color: rgba(240,240,240,.65);
  transition: background .2s, color .2s, transform .2s;
}
.soc-a:hover { background: var(--hi); color: #fff; transform: translateY(-2px); }
.ft-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,106,0,.25);
}
.ft-col ul { list-style: none; padding: 0; margin: 0; }
.ft-col li { margin-bottom: 10px; }
.ft-col a { font-size: 13px; color: rgba(240,240,240,.52); transition: color .2s; }
.ft-col a:hover { color: #fff; }
.pg-foot__bottom { border-top: 1px solid var(--edge); padding: 22px 0; }
.pg-foot__row { display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.ft-lic { width: 78px; height: 38px; background: url('../img/razed-licence.png') no-repeat center / contain; flex-shrink: 0; display: block; }
.ft-copy { flex: 1; text-align: center; }
.ft-copy p { font-size: 11px; color: rgba(240,240,240,.38); line-height: 1.65; margin: 0; }
.ft-copy p + p { margin-top: 4px; }
.ft-copy a { color: rgba(240,240,240,.38); }
.ft-copy a:hover { color: rgba(240,240,240,.7); }
.ft-age { width: 42px; height: 42px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; color: #111; flex-shrink: 0; }

/* ══ BOTTOM MOBILE NAV ══ */
.mob-nav {
  position: fixed;
  inset: auto 0 0;
  background: var(--panel);
  border-top: 1px solid var(--edge);
  display: none;
  justify-content: space-around;
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
  z-index: 800;
}
.mob-nav__btn { display: flex; flex-direction: column; align-items: center; gap: 3px; background: none; border: none; color: var(--fog); cursor: pointer; padding: 4px 10px; font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 500; min-width: 52px; border-radius: var(--rads); transition: color .2s; }
.mob-nav__btn:hover { color: var(--hi); }
.mob-nav__ico { width: 22px; height: 22px; background-size: contain; background-position: center; background-repeat: no-repeat; }
.mob-nav__ico--menu   { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="%23ff6a00" viewBox="0 0 24 24"><path d="M3 18v-2h18v2H3zm0-5v-2h18v2H3zm0-5V6h18v2H3z"/></svg>'); }
.mob-nav__ico--search { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="%23ff6a00" stroke-width="2.2" stroke-linecap="round" viewBox="0 0 24 24"><circle cx="11" cy="11" r="8"/><path d="m21 21-4.35-4.35"/></svg>'); }
.mob-nav__ico--dice   { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="%23ff6a00" viewBox="0 0 24 24"><rect x="2" y="2" width="20" height="20" rx="3"/><circle cx="7" cy="7" r="1.3" fill="white"/><circle cx="17" cy="7" r="1.3" fill="white"/><circle cx="12" cy="12" r="1.3" fill="white"/><circle cx="7" cy="17" r="1.3" fill="white"/><circle cx="17" cy="17" r="1.3" fill="white"/></svg>'); }
.mob-nav__ico--chat   { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="%23ff6a00" viewBox="0 0 24 24"><path d="M12 1C5.93 1 1 5.93 1 12v4c0 1.66 1.34 3 3 3h1V12H4c0-4.42 3.58-8 8-8s8 3.58 8 8h-1v7h1c1.66 0 3-1.34 3-3v-4c0-6.07-4.93-11-11-11z"/></svg>'); }

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  .intro { grid-template-columns: 58% 42%; }
  .arena__grid { grid-template-columns: repeat(4, 1fr); }
  .pg-foot__cols { grid-template-columns: 1fr 1fr 1fr; }
  .pg-foot__brand { grid-column: 1 / -1; }
  .deal { grid-template-columns: 1fr; }
  .deal__left { padding: 32px 40px; flex-direction: row; align-items: center; flex-wrap: wrap; gap: 16px; min-width: 0; }
  .deal__left .deal__total { font-size: 40px; margin-bottom: 0; }
  .deal__left p { margin-bottom: 0; }
  .qna__grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .intro__grid { grid-template-columns: 1fr; gap: 28px; padding-top: 44px; padding-bottom: 44px; }
  .trust__row { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(2) { border-right: none; }
  .trust__item:nth-child(3) { border-top: 1px solid var(--edge); }
  .arena__grid { grid-template-columns: repeat(3, 1fr); }
  .pg-foot__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .pg-nav { display: none; }
  .pg-hdr__acts { display: none; }
  .pg-hdr__burger { display: flex; }
  .mob-nav { display: flex; }
  body { padding-bottom: 66px; }
  .block { padding: 56px 0; }
  .intro__btns { flex-direction: column; align-items: flex-start; }
  .pick__row { grid-template-columns: 1fr; gap: 12px; }
  .pick-tile { height: 155px; }
  .arena__grid { grid-template-columns: repeat(2, 1fr); }
  .art-panel { padding: 28px 20px; }
  .art-body h1 { font-size: 23px; }
  .art-body h2 { font-size: 18px; }
  .pg-foot__cols { grid-template-columns: 1fr 1fr; gap: 22px; }
  .pg-foot__row { flex-direction: column; text-align: center; }
  .deal__steps { flex-direction: column; }
  .deal__step { border-right: none; border-bottom: 1px solid var(--edge); }
  .deal__step:last-child { border-bottom: none; }
  .m-banner { padding: 36px 0; }
  .m-banner__in { flex-direction: column; align-items: flex-start; gap: 0; }
  .m-banner__stat { display: none; }
}
@media (max-width: 480px) {
  .arena__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .trust__row { grid-template-columns: 1fr; }
  .trust__item { border-right: none; border-bottom: 1px solid var(--edge); }
  .trust__item:last-child { border-bottom: none; }
  .pg-foot__cols { grid-template-columns: 1fr; }
  .art-panel { padding: 18px 14px; }
  .casino-table th, .casino-table td { padding: 9px 12px; font-size: 13px; }
  .qna-item__q { font-size: 13px; padding: 15px 16px; }
}
