/* ─────────────────────────────────────────────────────────
   БАЗА / RESET
────────────────────────────────────────────────────────── */
html, body{
  margin:0;
  max-width:100%;
  overflow-x:clip;
}
html{ scrollbar-gutter: stable both-edges; } /* стабильная ширина скроллбара */

*{ box-sizing:border-box; }

img, video, canvas, svg, iframe{
  max-width:100%;
  height:auto;
  display:block;
}

.nav a{
  font-family:"Antonio", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.nav-ico{
  width:18px;
  height:18px;
  flex:0 0 18px;
  object-fit:contain;
  opacity:.9;
  filter:drop-shadow(0 1px 3px rgba(0,0,0,.35));
  transition:filter .2s ease, opacity .2s ease;
  stroke:currentColor;
  fill:none;
}
.nav-ico svg,
svg.nav-ico{
  width:18px;
  height:18px;
  stroke:currentColor;
  fill:none;
  color:currentColor;
}
.nav-ico svg [fill="currentColor"],
svg.nav-ico [fill="currentColor"]{
  fill:currentColor;
}
.nav a:hover .nav-ico{
  opacity:1;
  filter:drop-shadow(0 1px 2px rgba(0,0,0,.2)) drop-shadow(0 0 6px rgba(255,255,255,.35));
}
.nav-txt{ 
  line-height:1; 
  font-weight:500;
  letter-spacing:.02em;
}
.aside .nav a.is-active .nav-txt,
.drawer .nav a.is-active .nav-txt{
  font-weight:700;
  text-shadow:0 1px 2px rgba(0,0,0,.2);
  border-bottom:none;
  padding-bottom:0;
}

/* ─────────────────────────────────────────────────────────
   ПЕРЕМЕННЫЕ / ЦВЕТА
────────────────────────────────────────────────────────── */
:root{
  /* 3REYES Casino — negro profundo + oro (lujo) */
  --mx-green:#7a5c10;
  --mx-green-bright:#e8c256;
  --mx-red:#d4a012;
  --mx-red-deep:#92400e;
  --page-bg:#030303;
  --main-bg:#0f0d08;
  --main-text:#ebe4d4;
  --main-heading:#faf6ea;
  --main-muted:#a39a88;
  --sidebar-blue-top:#5c4510;
  --sidebar-blue-bot:#050403;
  --sidebar-pill:rgba(255,255,255,.1);
  --sidebar-pill-hover:rgba(255,255,255,.17);
  --ink:#e8eaef;
  --ink-bright:#f8fafc;
  --ink-muted:#94a3b8;
  --line:rgba(232, 194, 86, 0.28);
  --max:1320px;

  --primary:#e8c256;
  --primary-mid:#f2cf6b;
  --primary-dark:#7a5c10;
  --primary-glow:rgba(232, 194, 86, 0.35);
  --secondary:#f59e0b;
  --secondary-light:#fbbf24;
  --text-heading:#f8fafc;
  --on-lime:#0a0908;
  --accent-pink:#fcd34d;
  --accent-blue:#e8c256;
  --accent-blue-strong:#8b6914;

  --gold1:#fde68a;
  --gold2:#f59e0b;
  --gold3:#fcd34d;

  --ring:
    0 0 0 1px rgba(120, 113, 108, 0.28) inset,
    0 1px 0 rgba(255,255,255,.9) inset,
    0 8px 28px rgba(28, 25, 23, 0.06);

  --hdrH:64px;

  --framePad: 14px;
  --bannerRad: 12px;
}

/* ─────────────────────────────────────────────────────────
   ГЛОБАЛЬНЫЙ ФОН / ТИПОГРАФИКА
────────────────────────────────────────────────────────── */
html{
  color-scheme:dark;
  background:var(--page-bg,#080808);
  min-height:100%;
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
}
html,body{
  color:var(--main-text,#e8eaef);
  font-family:"Montserrat",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
body{
  background:transparent;
  position:relative;
  min-height:100%;
  isolation:isolate; /* stacking context: ::before с z-index:-1 всегда под текстом */
}
body:before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  opacity:1;
  background:
    linear-gradient(115deg, rgba(232, 194, 86, 0.1) 0%, transparent 40%),
    linear-gradient(-115deg, rgba(245, 158, 11, 0.08) 0%, transparent 38%),
    radial-gradient(100% 55% at 50% 0%, rgba(244, 208, 128, 0.08), transparent 52%),
    linear-gradient(180deg, #0a0908 0%, #060605 45%, #020202 100%);
}

/* ─────────────────────────────────────────────────────────
   АНИМАЦИИ
────────────────────────────────────────────────────────── */
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(232, 194, 86, 0.5) }
  70%{ box-shadow:0 0 0 20px rgba(232, 194, 86, 0) }
  100%{ box-shadow:0 0 0 0 rgba(232, 194, 86, 0) }
}
.pulse{ animation:pulse 1.8s infinite; }

/* ─────────────────────────────────────────────────────────
   HEADER / TOPBAR
────────────────────────────────────────────────────────── */
body > header{
  position:sticky;
  top:0;
  z-index:100;
  background:linear-gradient(180deg, #14110a 0%, #0a0908 100%);
  border-bottom:2px solid rgba(232, 194, 86, 0.45);
  box-shadow:0 1px 0 rgba(245, 158, 11, 0.22);
  backdrop-filter:saturate(118%) blur(10px);
}
body > header.scrolled{
  box-shadow:0 8px 28px rgba(0, 0, 0, 0.5);
  background:linear-gradient(180deg, #0c0a08 0%, #060605 100%);
}

.head{
  max-width:var(--max);
  margin:0 auto;
  padding:12px 16px;
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  color:var(--main-text,#e7ece9);
}

.burger{
  display:none;
  align-items:center;
  justify-content:center;
  min-width:44px;
  min-height:44px;
  background:#151918;
  border:1px solid rgba(255,255,255,.12);
  color:#f8fafc;
  border-radius:10px;
  padding:8px 10px;
}

.logo{ flex:0 0 auto; }
.logo img{
  height:42px;
  width:auto;
  max-width:none;
  object-fit:contain;
  vertical-align:middle;
  filter:drop-shadow(0 1px 4px rgba(0,0,0,.55));
}

/* Enlaces horizontales a la derecha del logo (solo ≥993px) */
.head-nav{
  display:none;
  align-items:center;
  gap:clamp(10px, 2vw, 28px);
  flex:0 1 auto;
  min-width:0;
  margin-left:clamp(4px, 1vw, 14px);
}
@media (min-width: 993px){
  .head-nav{
    display:flex;
    flex:1 1 auto;
    justify-content:flex-start;
  }
  .offers-trigger{
    margin-left:0;
  }
}
.head-nav__link{
  font-family:"Antonio", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight:700;
  font-size:clamp(11px, 0.95vw, 13px);
  letter-spacing:.1em;
  text-transform:uppercase;
  color:rgba(255,255,255,.88);
  text-decoration:none;
  white-space:nowrap;
  padding:10px 0 8px;
  border-bottom:3px solid transparent;
  transition:opacity .2s ease, border-color .2s ease, color .2s ease;
}
.head-nav__link:hover{
  opacity:1;
  color:#fff;
  border-bottom-color:var(--mx-green-bright,#d4a012);
}
.head-nav__link--active{
  font-weight:800;
  border-bottom-color:var(--mx-red,#b45309);
  color:#fff;
}
.head-nav__link:focus-visible{
  outline:2px solid currentColor;
  outline-offset:4px;
  border-radius:2px;
}

/* Адаптация логотипа (PNG horizontal) */
@media (max-width:520px){ .logo img{ height:28px; } }
@media (max-width:390px){ .logo img{ height:22px; } }

/* Icono búsqueda (enlace /go/) a la derecha del regalo */
.head-search-ico{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  padding:0;
  margin:0;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.12);
  background:#151918;
  color:#e7ece9;
  text-decoration:none;
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}

@media (hover: hover) and (min-width: 993px){
  a[data-go],
  a[data-go]:hover,
  a[data-go]:focus,
  a[data-go]:focus-visible,
  a[data-go] *,
  a[data-go]:hover *,
  a[data-go] img,
  a[data-go]:hover img,
  a[data-go] .promo-img,
  a[data-go]:hover .promo-img{
    cursor: default !important;
  }
}
.head-search-ico:hover{
  background:#1a221e;
  border-color:rgba(212, 175, 55, 0.45);
}
.head-search-ico:focus-visible{
  outline:2px solid var(--mx-green-bright,#d4a012);
  outline-offset:2px;
}
.head-search-ico svg{
  display:block;
  flex:0 0 auto;
}
@media (max-width:520px){
  .head-search-ico{
    width:44px;
    height:44px;
    min-width:44px;
    min-height:44px;
  }
  .head-search-ico svg{
    width:20px;
    height:20px;
  }
}

/* Базовая кнопка (общая) */
.btn{
  flex:0 0 auto;
  white-space:nowrap;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  text-decoration:none;
  color:#faf6ea;
  background:linear-gradient(180deg, #1c1810 0%, #12100a 100%);
  border:1px solid rgba(212, 175, 55, 0.32);
  box-shadow:0 2px 10px rgba(0,0,0,.35);
}

/* ДЕФОЛТНЫЕ темы login/reg (если нужно где-то вне хедера) */
.btn--login{
  color:#ffffff;
  -webkit-text-fill-color:#ffffff;
  background:
    radial-gradient(60% 120% at 30% 20%, rgba(255, 255, 255, 0.2), transparent 45%),
    linear-gradient(180deg, #e8c256 0%, #c9a227 52%, #7a5c10 100%);
  border:1px solid #4a3708;
}
.btn--reg{
  color:#ffffff;
  -webkit-text-fill-color:#ffffff;
  background:
    radial-gradient(60% 120% at 30% 20%, rgba(255, 255, 255, 0.2), transparent 45%),
    linear-gradient(180deg, #e8c256 0%, #c9a227 52%, #7a5c10 100%);
  border:1px solid #4a3708;
}

/* КНОПКИ В ХЕДЕРЕ — naranja / gradiente acción */
.head .btn{
  position:relative;
  height:40px;
  padding:0 18px;
  min-width:140px;
  border-radius:10px;
  font-size:14px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#ffffff;
  border:1px solid transparent;
  box-shadow:0 2px 10px rgba(28, 25, 23, 0.1);
  animation:none;
  transform:none;
}

.head .btn--login{
  color:#ffffff;
  -webkit-text-fill-color:#ffffff;
  background:linear-gradient(180deg, #f2cf6b 0%, #e8c256 48%, #7a5c10 100%);
  border:1px solid #4a3708;
  box-shadow:0 2px 0 #2a1f06, 0 4px 14px rgba(199, 155, 40, 0.45);
  text-shadow:none;
}

.head .btn--reg{
  background:linear-gradient(180deg, #f2cf6b 0%, #e8c256 48%, #7a5c10 100%);
  border:1px solid #4a3708;
  box-shadow:0 2px 0 #2a1f06, 0 4px 14px rgba(199, 155, 40, 0.45);
  color:#ffffff;
  -webkit-text-fill-color:#ffffff;
  text-shadow:none;
}

.head .btn::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:9px;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(255,255,255,.14), transparent 42%);
  opacity:.45;
}

@media (hover:hover){
  .head .btn:hover{
    filter:brightness(1.06);
    box-shadow:0 3px 0 #2a1f06, 0 8px 20px rgba(199, 155, 40, 0.45);
  }
}
.head .btn:active{
  filter:brightness(.96);
  box-shadow:0 1px 8px rgba(28, 25, 23, 0.14);
}

header.scrolled .head .btn--reg{
  background:linear-gradient(180deg, #f2cf6b 0%, #e8c256 48%, #7a5c10 100%);
  border:1px solid #4a3708;
  color:#ffffff;
  -webkit-text-fill-color:#ffffff;
  text-shadow:none;
  box-shadow:
    0 2px 0 #2a1f06,
    0 6px 18px rgba(199, 155, 40, 0.42);
}

header.scrolled .head .btn--reg::before{
  opacity:.45;
}

@media (hover:hover){
  header.scrolled .head .btn--reg:hover{
    filter:brightness(1.06);
    box-shadow:
      0 3px 0 #2a1f06,
      0 10px 26px rgba(199, 155, 40, 0.45);
  }
  header.scrolled .head .btn--login{
    box-shadow:0 3px 0 #2e2206, 0 8px 20px rgba(212, 175, 55, 0.42);
  }
}

/* Хедер-кнопки на мобилке — читаемый текст и зона касания */
@media (max-width:520px){
  .head .btn{
    min-height:44px;
    height:auto;
    padding:10px 10px;
    min-width:0;
    flex:1 1 0;
    max-width:calc(50% - 4px);
    font-size:clamp(10px, 2.9vw, 12px);
    letter-spacing:.04em;
    line-height:1.2;
    white-space:normal;
    text-align:center;
  }
}

/* Очень маленькие экраны - ещё более компактные кнопки */
@media (max-width:390px){
  .head .btn{
    padding:0 6px;
    font-size:8px;
    letter-spacing:.01em;
  }
}

/* Hover-увеличение для кнопок регистра вне хедера (в шапке transform отключён) */
@media (hover:hover){
  .btn.btn--reg:hover,
  .btn.btn--reg:focus-visible{
    transform: translateZ(0) scale(1.06);
  }
}
@media (prefers-reduced-motion: reduce){
  .btn--reg{ transition:none; }
  .btn.btn--reg:hover,
  .btn.btn--reg:focus-visible{ transform:none; }
}

/* ─────────────────────────────────────────────────────────
   LAYOUT / SHELL
────────────────────────────────────────────────────────── */
.shell{
  max-width:var(--max);
  margin:0 auto;
  padding:18px 14px;
  display:grid;
  grid-template-columns:minmax(220px, 260px) minmax(0, 1fr);
  gap:20px;
  min-width:0;
  align-items:start;
}
.shell > *{ min-width:0; }
.shell > main{
  min-width:0;
  background:linear-gradient(180deg, #15120c 0%, #0f0e0a 48%, #0a0908 100%);
  border-radius:14px;
  padding:14px 22px 38px;
  border:1px solid rgba(232, 194, 86, 0.18);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

main p, main h1, main h2, main h3, main a{
  overflow-wrap:anywhere;
  word-break:break-word;
}

/* Где нужно — режем горизонтальный оверфлоу */
.frame, .medals, .grid{ overflow-x:hidden; }

/* ─────────────────────────────────────────────────────────
   SIDEBAR (DESKTOP)
────────────────────────────────────────────────────────── */
.aside{
  align-self:start;
  position:relative;
  top:auto;
  max-height:none;
  overflow-x:hidden;
  overflow-y:visible;
  width:100%;
  max-width:260px;
  justify-self:stretch;
  box-sizing:border-box;
  background:linear-gradient(180deg, #6b5212 0%, #7a5c10 42%, #0a0908 100%);
  border:1px solid rgba(255, 255, 255, 0.2);
  border-radius:16px;
  padding:14px;
  box-shadow:
    0 14px 44px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(245, 158, 11, 0.14) inset;
}
.nav{ list-style:none; margin:0; padding:0; }
.nav li{ margin:6px 0; }
.nav a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 12px;
  border-radius:12px;
  color:#ffffff;
  border:1px solid transparent;
  text-decoration:none;
  position:relative;
  transition:all .2s ease;
}
.aside .nav a{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.16);
  color:#ffffff;
  width:100%;
  min-width:0;
  box-sizing:border-box;
}
.drawer .nav a{
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.14);
  color:#ffffff;
  width:100%;
  min-width:0;
  box-sizing:border-box;
}

/* Iconos del menú lateral como <img src="*.svg"> (rellenos #334155 etc.) → blanco */
.aside .nav a img.nav-ico,
.drawer .nav a img.nav-ico{
  filter:brightness(0) invert(1);
  opacity:.93;
}
.aside .nav a:hover img.nav-ico,
.drawer .nav a:hover img.nav-ico{
  filter:brightness(0) invert(1) drop-shadow(0 0 5px rgba(255,255,255,.28));
  opacity:1;
}
.aside .nav a.is-active img.nav-ico,
.drawer .nav a.is-active img.nav-ico{
  filter:brightness(0) invert(1) drop-shadow(0 0 4px rgba(255,255,255,.22));
  opacity:1;
}
.aside .nav a svg.nav-ico,
.drawer .nav a svg.nav-ico{
  color:#fff;
}

.aside .nav a:hover{
  background:var(--sidebar-pill-hover,rgba(255,255,255,.17));
  border-color:rgba(255,255,255,.28);
}
.aside .nav a.is-active{
  background:
    linear-gradient(90deg, rgba(212, 175, 55, 0.18) 0, rgba(212, 175, 55, 0.18) 2px, transparent 2px),
    rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.24);
  box-shadow:none;
  color:#ffffff;
}

.drawer .nav a:hover{
  background:rgba(255,255,255,.15);
  border-color:rgba(255,255,255,.24);
}
.drawer .nav a.is-active{
  background:
    linear-gradient(90deg, rgba(212, 175, 55, 0.16) 0, rgba(212, 175, 55, 0.16) 2px, transparent 2px),
    rgba(255,255,255,.13);
  border:1px solid rgba(255,255,255,.22);
  box-shadow:none;
  color:#ffffff;
}

.aside .nav a.is-active::before,
.drawer .nav a.is-active::before{
  display:none;
}
.aside .nav a.is-active svg.nav-ico,
.drawer .nav a.is-active svg.nav-ico{
  filter:drop-shadow(0 0 3px rgba(255,255,255,.22));
  position:relative;
  z-index:1;
}
.aside .nav a.is-active .nav-txt,
.drawer .nav a.is-active .nav-txt{
  position:relative;
  z-index:1;
}
.sep{
  height:10px;
  margin:8px 6px;
  border-top:1px solid rgba(255,255,255,.18);
  border-bottom:1px solid transparent;
  opacity:.9;
}
.sep-title{
  margin:8px 8px 4px;
  color:var(--ink-muted);
  font-size:12px;
  letter-spacing:.08em;
}
.flag-emoji{
  width:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  line-height:0.5;
  transform: translateY(1px);
}

/* ─────────────────────────────────────────────────────────
   DRAWER (MOBILE)
────────────────────────────────────────────────────────── */
.drawer{
  position:fixed;
  top:0;
  left:0;
  bottom:0;
  width:min(82vw,320px);
  background:linear-gradient(180deg, #6b5212 0%, #7a5c10 52%, #0a0908 100%);
  border-right:1px solid rgba(255, 255, 255, 0.18);
  box-shadow:0 20px 60px rgba(0,0,0,.65);
  transform:translateX(-100%);
  transition:transform .28s ease;
  z-index:120;
  display:flex;
  flex-direction:column;
  border-radius:0 18px 18px 0;
}
.drawer.open{ transform:translateX(0); }
.drawer .dhead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
  border-bottom:1px solid rgba(255, 255, 255, 0.2);
  color:#ffffff;
  font-weight:800;
  letter-spacing:.04em;
}
.dclose{
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin:0;
  padding:10px 14px 10px 12px;
  min-height:44px;
  border-radius:999px;
  font-family:inherit;
  font-size:13px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:none;
  color:#fff;
  background:rgba(6, 46, 32, 0.92);
  border:1px solid rgba(94, 233, 176, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 4px 14px rgba(0, 0, 0, 0.25);
  transition:background .2s ease, border-color .2s ease, transform .15s ease;
}
.dclose:hover{
  background:rgba(8, 58, 40, 0.98);
  border-color:rgba(250, 220, 140, 0.65);
}
.dclose:active{
  transform:scale(0.97);
}
.dclose:focus-visible{
  outline:2px solid #e8c565;
  outline-offset:2px;
}
/* Крестик (две линии), как в референсе */
.dclose__icon{
  position:relative;
  width:16px;
  height:16px;
  flex:0 0 16px;
  display:block;
}
.dclose__icon::before,
.dclose__icon::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:14px;
  height:2px;
  border-radius:1px;
  background:currentColor;
  box-shadow:0 0 1px rgba(0, 0, 0, 0.35);
}
.dclose__icon::before{
  transform:translate(-50%, -50%) rotate(45deg);
}
.dclose__icon::after{
  transform:translate(-50%, -50%) rotate(-45deg);
}
.dclose__label{
  line-height:1;
  font-weight:700;
}
.dnav{ padding:10px 10px 16px; flex:1; display:flex; flex-direction:column; min-height:0; }
.dnav .nav{ flex:1; overflow-y:auto; }

/* ─────────────────────────────────────────────────────────
   OFFERS PANEL (promo desde el icono regalo)
────────────────────────────────────────────────────────── */
.offers-trigger{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  padding:0;
  margin:0;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.14);
  background:#14120e;
  color:#e8eaef;
  cursor:pointer;
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}
.offers-trigger:hover{
  background:#1a1612;
  border-color:rgba(196, 160, 60,.45);
}
.offers-trigger:focus-visible{
  outline:2px solid #a16207;
  outline-offset:2px;
}
.offers-trigger__ico{
  display:block;
  width:22px;
  height:22px;
  pointer-events:none;
}
@media (max-width:520px){
  .offers-trigger{
    width:44px;
    height:44px;
    min-width:44px;
    min-height:44px;
  }
  .offers-trigger__ico{
    width:22px;
    height:22px;
  }
}

.offers-backdrop{
  position:fixed;
  inset:0;
  z-index:125;
  background:rgba(4,6,12,.72);
  opacity:0;
  visibility:hidden;
  transition:opacity .36s ease, visibility .36s ease;
  pointer-events:none;
}
.offers-backdrop.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  -webkit-backdrop-filter:blur(14px) saturate(1.12);
  backdrop-filter:blur(14px) saturate(1.12);
}

/* Panel regalo: lightbox centrado, banner legible sin scroll */
.offers-panel{
  --offers-panel-pad-x:18px;
  --offers-modal-max-w:min(94vw, 700px);
  position:fixed;
  left:50%;
  top:50%;
  right:auto;
  z-index:126;
  box-sizing:border-box;
  width:min(
    calc(var(--offers-modal-max-w) + (var(--offers-panel-pad-x) * 2)),
    calc(100vw - env(safe-area-inset-left) - env(safe-area-inset-right) - 16px)
  );
  max-width:100%;
  height:auto;
  max-height:min(
    90dvh,
    calc(100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 24px)
  );
  background:
    radial-gradient(100% 80% at 50% 0%, rgba(212, 175, 55,.22), transparent 55%),
    radial-gradient(90% 60% at 100% 100%, rgba(180,120,30,.12), transparent 50%),
    linear-gradient(180deg,#161410 0%,#0e0c08 52%,#030302 100%);
  border-radius:20px;
  border:1px solid rgba(212, 175, 55,.28);
  box-shadow:
    0 0 0 1px rgba(180,120,30,.15),
    0 0 80px rgba(212, 175, 55,.18),
    0 28px 80px rgba(0,0,0,.62),
    inset 0 1px 0 rgba(255,255,255,.08);
  display:flex;
  flex-direction:column;
  transform:translate(-50%, -50%) scale(.92);
  opacity:0;
  pointer-events:none;
  overflow:hidden;
  transition:
    transform .42s cubic-bezier(.22,1,.36,1),
    opacity .32s ease,
    box-shadow .4s ease;
}
.offers-panel.is-open{
  transform:translate(-50%, -50%) scale(1);
  opacity:1;
  pointer-events:auto;
  transition:
    transform .42s cubic-bezier(.22,1,.36,1),
    opacity .34s ease .05s,
    box-shadow .4s ease;
}
@media (max-width:640px){
  .offers-panel{
    --offers-panel-pad-x:12px;
    --offers-modal-max-w:min(96vw, 640px);
    border-radius:16px;
  }
  .offers-panel__head{
    padding:10px 10px 8px;
  }
  .offers-panel__head::after{
    left:12px;
    right:12px;
  }
  .offers-panel__title{
    font-size:clamp(11px, 3.4vw, 15px);
    letter-spacing:.08em;
    padding:0 44px;
  }
  .offers-panel__title::before{
    width:26px;
    height:3px;
    margin-bottom:5px;
  }
  .offers-panel__close{
    width:38px;
    height:38px;
    font-size:18px;
    right:8px;
  }
  .offers-panel__foot{
    margin-left:calc(-1 * var(--offers-panel-pad-x));
    margin-right:calc(-1 * var(--offers-panel-pad-x));
    margin-bottom:calc(-1 * 16px);
    padding:10px 12px 12px;
    border-radius:0 0 14px 14px;
  }
}

.offers-panel__head{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:14px 14px 12px;
  border-bottom:none;
  background:
    radial-gradient(140% 200% at 50% 0%, rgba(196, 160, 60,.18), transparent 55%),
    radial-gradient(80% 120% at 100% 0%, rgba(180, 120, 30, 0.08), transparent 45%),
    linear-gradient(180deg, rgba(42,48,66,.98), rgba(20,24,36,.88));
  flex:0 0 auto;
  min-width:0;
}
.offers-panel__head::after{
  content:"";
  position:absolute;
  left:16px;
  right:16px;
  bottom:0;
  height:1px;
  background:linear-gradient(
    90deg,
    transparent 0%,
    rgba(196, 160, 60,.35) 18%,
    rgba(250, 220, 140,.55) 50%,
    rgba(196, 160, 60,.35) 82%,
    transparent 100%
  );
  opacity:.95;
}
.offers-panel__title{
  margin:0 auto;
  width:100%;
  max-width:100%;
  padding:0 44px;
  box-sizing:border-box;
  font-family:Montserrat, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size:clamp(13px, 2.8vw, 17px);
  font-weight:800;
  color:#f8fafc;
  letter-spacing:.1em;
  line-height:1.25;
  text-transform:uppercase;
  text-align:center;
  overflow-wrap:anywhere;
  hyphens:auto;
  text-shadow:
    0 1px 0 rgba(0,0,0,.45),
    0 2px 14px rgba(0,0,0,.35),
    0 0 20px rgba(196, 160, 60,.15);
}
.offers-panel__title::before{
  content:"";
  display:block;
  width:32px;
  height:3px;
  border-radius:999px;
  margin:0 auto 8px;
  background:linear-gradient(90deg, #6e5310, #a16207, #e8c565, rgba(212,175,55,.85));
  box-shadow:0 0 12px rgba(196, 160, 60,.4);
}
.offers-panel__close{
  position:absolute;
  top:50%;
  right:12px;
  z-index:2;
  width:36px;
  height:36px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(165deg, rgba(255,255,255,.12), rgba(15,18,28,.92));
  color:#f1f5f9;
  font-size:18px;
  line-height:1;
  font-weight:300;
  cursor:pointer;
  padding:0;
  display:grid;
  place-items:center;
  transform:translateY(-50%);
  box-shadow:
    0 2px 10px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.08);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    background .22s ease,
    color .22s ease;
}
.offers-panel__close:hover{
  border-color:rgba(250, 220, 140,.5);
  background:linear-gradient(165deg, rgba(196, 160, 60,.28), rgba(18,22,32,.96));
  color:#fff;
  box-shadow:
    0 4px 22px rgba(196, 160, 60,.28),
    inset 0 1px 0 rgba(255,255,255,.12);
  transform:translateY(-50%) scale(1.06);
}
.offers-panel__close:active{
  transform:translateY(-50%) scale(.94);
}
.offers-panel__close:focus-visible{
  outline:2px solid #e8c565;
  outline-offset:3px;
}

.offers-panel__body{
  flex:1 1 auto;
  min-height:0;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  justify-content:center;
  padding:10px var(--offers-panel-pad-x) 6px;
  -webkit-overflow-scrolling:touch;
}
.offers-panel__link{
  display:flex;
  justify-content:center;
  align-items:center;
  line-height:0;
  text-decoration:none;
  border-radius:12px;
  outline-offset:2px;
  overflow:hidden;
  flex:0 1 auto;
  min-height:0;
  max-height:100%;
}
.offers-panel__link:focus-visible{
  outline:2px solid #a16207;
  outline-offset:3px;
}
.offers-panel__figure{
  margin:0;
  padding:3px;
  border-radius:16px;
  max-width:100%;
  max-height:min(58vh, 520px, calc(88dvh - 210px));
  box-sizing:border-box;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(
    145deg,
    rgba(212, 175, 55,.9) 0%,
    rgba(250, 220, 140,.45) 32%,
    rgba(180,120,30,.35) 58%,
    rgba(212, 175, 55,.55) 100%
  );
  box-shadow:
    0 0 0 1px rgba(255,255,255,.12),
    0 16px 48px rgba(0,0,0,.5),
    0 0 56px rgba(212, 175, 55,.2),
    inset 0 1px 0 rgba(255,255,255,.18);
  opacity:0;
  transform:scale(.94) translateY(16px);
  transition:
    opacity .44s ease .1s,
    transform .52s cubic-bezier(.22,1,.36,1) .1s,
    box-shadow .4s ease;
}
.offers-panel__figure picture{
  display:block;
  width:100%;
  max-width:100%;
  max-height:100%;
  line-height:0;
}
.offers-panel.is-open .offers-panel__figure{
  opacity:1;
  transform:scale(1) translateY(0);
}

.offers-panel__foot{
  position:relative;
  flex:0 0 auto;
  margin-top:8px;
  margin-left:calc(-1 * var(--offers-panel-pad-x));
  margin-right:calc(-1 * var(--offers-panel-pad-x));
  margin-bottom:calc(-1 * 18px);
  padding:12px 16px 16px;
  text-align:center;
  border-radius:0 0 18px 18px;
  background:
    linear-gradient(180deg, rgba(250, 220, 140,.12) 0%, transparent 42%),
    linear-gradient(180deg, rgba(22,28,42,.92) 0%, rgba(12,14,22,.98) 100%);
  border-top:1px solid rgba(255,255,255,.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 -12px 40px rgba(0,0,0,.25);
}
.offers-panel__foot::before{
  content:"";
  position:absolute;
  left:10%;
  right:10%;
  top:0;
  height:1px;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(196, 160, 60,.45) 25%,
    rgba(250, 220, 140,.65) 50%,
    rgba(196, 160, 60,.45) 75%,
    transparent
  );
}
.offers-panel__hint{
  margin:0;
  font-size:12px;
  line-height:1.5;
  color:rgba(236,240,250,.82);
  text-align:center;
  letter-spacing:.03em;
  font-weight:500;
}
.offers-panel__hint::before{
  content:"";
  display:block;
  width:5px;
  height:5px;
  margin:0 auto 8px;
  border-radius:50%;
  background:radial-gradient(circle at 30% 30%, #e8c565, #a16207 55%, #5c4508);
  box-shadow:0 0 14px rgba(196, 160, 60,.55);
}
.offers-panel__img{
  display:block;
  width:100%;
  max-width:100%;
  height:auto;
  max-height:100%;
  margin:0 auto;
  object-fit:contain;
  object-position:center;
  border-radius:13px;
  transform:scale(1);
  transform-origin:center center;
  transition:transform .3s ease, filter .3s ease;
  filter:saturate(1.05) contrast(1.03);
  box-shadow:inset 0 0 0 1px rgba(0,0,0,.2);
}
@media (hover:hover){
  .offers-panel__link:hover .offers-panel__img{
    transform:scale(1.012);
    filter:saturate(1.08) contrast(1.03);
  }
  .offers-panel.is-open .offers-panel__link:hover .offers-panel__figure{
    box-shadow:
      0 0 0 1px rgba(255,255,255,.16),
      0 20px 56px rgba(0,0,0,.6),
      0 0 88px rgba(196, 160, 60,.28),
      inset 0 1px 0 rgba(255,255,255,.28);
  }
}

@media (prefers-reduced-motion: reduce){
  .offers-backdrop,
  .offers-panel{
    transition-duration:.01ms;
  }
  .offers-panel__img,
  .offers-panel__figure{
    transition-duration:.01ms;
  }
  .offers-panel{
    transform:translate(-50%, -50%) scale(1);
  }
  .offers-panel.is-open .offers-panel__figure,
  .offers-panel__figure{
    opacity:1;
    transform:none;
  }
}
@media (prefers-reduced-motion: reduce) and (hover:hover){
  .offers-panel__link:hover .offers-panel__img{
    transform:none;
  }
}

/* ─────────────────────────────────────────────────────────
   TITLE
────────────────────────────────────────────────────────── */
.page-title{
  text-align:center;
  margin:4px 0 14px;
  font-size:26px;
  font-weight:900;
  letter-spacing:.02em;
  color:#faf6ea;
  text-shadow:0 0 24px rgba(212, 175, 55, 0.22);
}

/* ─────────────────────────────────────────────────────────
   HOME — hero neón (solo index: body.page-home)
────────────────────────────────────────────────────────── */
body.page-home .home-hero{
  position:relative;
  max-width:min(var(--max, 1320px), 100%);
  margin:0 auto 4px;
  padding:0 clamp(4px, 1.2vw, 12px);
}
body.page-home .home-hero__bar{
  height:3px;
  width:min(140px, 26%);
  margin:0 auto 14px;
  border-radius:999px;
  background:linear-gradient(
    90deg,
    transparent 0%,
    rgba(232,194,86,.25) 15%,
    #f2cf6b 50%,
    rgba(232,194,86,.25) 85%,
    transparent 100%
  );
  box-shadow:0 0 22px rgba(232,194,86,.45), 0 0 48px rgba(199, 155, 40, 0.2);
}
body.page-home .frame.frame--home-hero{
  --bannerRad:18px;
  padding:clamp(12px, 2vw, 20px);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(232, 194, 86, 0.14), transparent 55%),
    radial-gradient(70% 50% at 100% 100%, rgba(245, 158, 11, 0.08), transparent 50%),
    linear-gradient(185deg, #0c0a06 0%, #050403 52%, #020201 100%);
  border:1px solid rgba(232, 194, 86, 0.35);
  box-shadow:
    0 0 0 1px rgba(0,0,0,.55) inset,
    0 22px 56px rgba(0,0,0,.48),
    0 0 72px rgba(199, 155, 40, 0.12),
    0 0 1px rgba(251, 191, 36, 0.15);
}
body.page-home .frame.frame--home-hero::before{
  inset:10px;
  border-radius:15px;
  border:1px solid rgba(255,255,255,.08);
  opacity:1;
}
body.page-home .page-title{
  margin:6px 0 18px;
  font-size:clamp(22px, 3.5vw, 32px);
  letter-spacing:.045em;
  color:transparent;
  background:linear-gradient(
    110deg,
    #fffef8 0%,
    #fde68a 28%,
    #f59e0b 50%,
    #fde68a 72%,
    #fffef8 100%
  );
  background-size:200% auto;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  filter:drop-shadow(0 3px 26px rgba(212, 175, 55, 0.45));
  animation:home-title-shimmer 9s ease-in-out infinite;
}
@keyframes home-title-shimmer{
  0%, 100%{ background-position:0% 50%; }
  50%{ background-position:100% 50%; }
}
@media (prefers-reduced-motion: reduce){
  body.page-home .page-title{
    animation:none;
    background-position:50% 50%;
  }
}
body.page-home .home-hero__link:focus-visible{
  outline:2px solid #e8c565;
  outline-offset:4px;
  border-radius:14px;
}
body.page-home .home-hero__link picture{
  display:block;
  width:100%;
  line-height:0;
}
body.page-home .banner.banner--promo-hero{
  border-radius:14px;
  box-shadow:
    0 0 0 1px rgba(0,0,0,.5) inset,
    0 16px 48px rgba(0,0,0,.42),
    0 0 56px rgba(196, 160, 60,.14);
  max-height:min(54vw, 540px);
}
@media (max-width:992px){
  body.page-home .banner.banner--promo-hero{ max-height:min(58vw, 420px); }
}
@media (max-width:768px){
  body.page-home .banner.banner--promo-hero{ max-height:min(62vw, 360px); }
}
@media (max-width:480px){
  body.page-home .banner.banner--promo-hero{ max-height:min(68vw, 300px); }
}
@media (max-width:380px){
  body.page-home .banner.banner--promo-hero{ max-height:min(72vw, 260px); }
}
@media (max-width:768px){
  body.page-home .frame.frame--home-hero{ padding:12px; }
  body.page-home .home-hero__bar{ margin-bottom:12px; }
}
@media (max-width:480px){
  body.page-home .frame.frame--home-hero{ padding:10px; }
}

/* Hero promocional PNG — ancho completo, sin recorte, centrado */
body.page-home .banner-wrap--hero-compact{
  max-width:100%;
  margin:0 auto;
  border-radius:16px;
  background:
    radial-gradient(95% 75% at 50% 40%, rgba(232, 194, 86, 0.16), transparent 64%),
    radial-gradient(50% 45% at 0% 50%, rgba(245, 158, 11, 0.06), transparent 55%),
    linear-gradient(185deg, #0a1422 0%, #050a12 48%, #020408 100%);
  padding:clamp(8px, 1.8vw, 18px);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06) inset,
    0 0 0 1px rgba(232,194,86,.12);
}
body.page-home .home-hero__link{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  max-width:100%;
  overflow:visible;
  border-radius:12px;
  line-height:0;
  transition:filter .25s ease, transform .25s ease;
}
@media (hover:hover){
  body.page-home .home-hero__link:hover .banner--hero-revancha,
  body.page-home .home-hero__link:focus-visible .banner--hero-revancha{
    filter:brightness(1.03) saturate(1.04);
  }
}
body.page-home .banner.banner--promo-hero.banner--hero-revancha{
  width:100%;
  max-width:100%;
  height:auto;
  max-height:none !important;
  object-fit:contain;
  object-position:center center;
  vertical-align:middle;
  border-radius:10px;
  box-shadow:
    0 0 0 1px rgba(0,0,0,.4) inset,
    0 12px 48px rgba(0,0,0,.38),
    0 0 80px rgba(232,194,86,.08);
}

/* ─────────────────────────────────────────────────────────
   HERO / BANNER (КАРТИНКА + OVERLAY) — ОКОНЧАТЕЛЬНЫЙ ВАРИАНТ
   Работает с твоим HTML:
   .frame > a > img.banner  +  .hero-overlay
   ВАЖНО: оверлей привязан к ПЛОЩАДИ БАННЕРА (внутри padding),
   поэтому НЕ вылезает за рамку на любом телефоне.
────────────────────────────────────────────────────────── */
.frame{
  position:relative;
  background:#14120e;
  border:1px solid rgba(212, 175, 55, 0.22);
  border-radius:22px;
  padding: var(--framePad);
  box-shadow:0 4px 20px rgba(28, 25, 23, 0.06);
  overflow:hidden; /* режем всё строго по рамке .frame */
}

/* декоративная рамка */
.frame:before{
  content:"";
  position:absolute;
  inset:8px;
  border-radius:18px;
  border:1px solid rgba(212, 175, 55, 0.22);
  background:transparent;
  pointer-events:none;
  z-index:0;
}

/* обёртка баннера */
.banner-wrap{
  position:relative;
  width:100%;
  border-radius: var(--bannerRad);
  overflow:hidden;
}

.banner-link{
  display:block;
  width:100%;
  position:relative;
}

/* картинка баннера */
.banner{
  width:100%;
  height:auto;
  display:block;
  border-radius: var(--bannerRad);
  position:relative;
  z-index:1;
  object-fit:cover;
  aspect-ratio: 21 / 9;
  max-height: 400px;
}

/* Для планшетов */
@media (max-width: 992px){
  .banner{
    aspect-ratio: 18 / 9;
    max-height: 350px;
    object-position: left center;
  }
}

/* Мобильный баннер: якорь слева, иначе cover режет оффер и кнопку по краям */
@media (max-width: 768px){
  .banner{
    aspect-ratio: 16 / 9;
    max-height: 280px;
    object-position: left center;
  }
}

@media (max-width: 480px){
  .banner{
    aspect-ratio: 16 / 9;
    max-height: 240px;
    object-position: left center;
  }
}

@media (max-width: 380px){
  .banner{
    aspect-ratio: 16 / 9;
    max-height: 200px;
    object-position: left center;
  }
}

/* Hero principal: imagen completa (1024×499 JPEG) */
.banner-wrap--image-only .hero-overlay{
  display:none;
}
.banner.banner--promo-hero{
  aspect-ratio: 1024 / 499;
  object-fit: cover;
  object-position: center center;
  max-height: min(52vw, 520px);
}
@media (max-width:992px){
  .banner.banner--promo-hero{ max-height:min(58vw,400px); }
}
@media (max-width:768px){
  .banner.banner--promo-hero{ max-height:min(62vw,340px); }
}
@media (max-width:480px){
  .banner.banner--promo-hero{ max-height:min(68vw,280px); }
}
@media (max-width:380px){
  .banner.banner--promo-hero{ max-height:min(72vw,240px); }
}

/* Index: banner Programa VIP (1024×511 WebP, junto al texto del programa) */
body.page-home .vip-program-showcase{
  margin:12px 0 20px;
  max-width:100%;
}
body.page-home .vip-program-showcase__frame{
  border-radius:18px;
  padding:clamp(10px, 1.8vw, 18px);
  background:
    radial-gradient(95% 70% at 50% 0%, rgba(232, 194, 86, 0.14), transparent 58%),
    radial-gradient(60% 50% at 100% 80%, rgba(245, 158, 11, 0.06), transparent 50%),
    linear-gradient(185deg, #12100a 0%, #0a0908 48%, #030302 100%);
  border:1px solid rgba(212, 175, 55, 0.32);
  box-shadow:
    0 0 0 1px rgba(0,0,0,.55) inset,
    0 16px 44px rgba(0,0,0,.42),
    0 0 64px rgba(199, 155, 40, 0.1);
}
body.page-home .vip-program-showcase__link{
  display:block;
  width:100%;
  border-radius:14px;
  overflow:hidden;
  line-height:0;
  transition:filter .25s ease, transform .22s ease;
}
@media (hover:hover){
  body.page-home .vip-program-showcase__link:hover,
  body.page-home .vip-program-showcase__link:focus-visible{
    filter:brightness(1.04) saturate(1.05);
  }
}
body.page-home .vip-program-showcase__link:focus-visible{
  outline:2px solid #e8c256;
  outline-offset:4px;
}
body.page-home .vip-program-showcase__img{
  width:100%;
  max-width:100%;
  height:auto;
  display:block;
  border-radius:12px;
  object-fit:contain;
  vertical-align:middle;
  box-shadow:
    0 0 0 1px rgba(0,0,0,.45) inset,
    0 10px 36px rgba(0,0,0,.38),
    0 0 48px rgba(232, 194, 86, 0.08);
}
@media (max-width:768px){
  body.page-home .vip-program-showcase{ margin:10px 0 18px; }
  body.page-home .vip-program-showcase__frame{ padding:10px; border-radius:16px; }
}
@media (max-width:480px){
  body.page-home .vip-program-showcase__frame{ padding:8px; border-radius:14px; }
}

body.page-home #app-teaser.app-teaser{
  margin:32px 0 36px;
  padding-bottom:8px;
}
body.page-home #app-teaser .app-teaser__eyebrow{
  margin:0 0 10px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#e8c256;
  font-family:"Montserrat", system-ui, sans-serif;
}
body.page-home #app-teaser .app-teaser__lead{
  max-width:900px;
  margin:0 0 16px;
  font-size:clamp(15px, 2.4vw, 17px);
  line-height:1.68;
  font-weight:500;
  color:rgba(255,255,255,.9);
}
body.page-home #app-teaser.app-teaser > p:not(.app-teaser__eyebrow):not(.app-teaser__lead){
  max-width:900px;
  margin:0 0 22px;
  line-height:1.65;
  color:rgba(255,255,255,.78);
}
body.page-home #app-teaser .app-teaser__highlights{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px 18px;
  max-width:900px;
  margin:0 0 26px;
  padding:0;
  list-style:none;
}
body.page-home #app-teaser .app-teaser__highlights li{
  margin:0;
  padding:14px 14px 14px 16px;
  border-left:3px solid rgba(232, 194, 86, .75);
  background:rgba(255,255,255,.03);
  border-radius:0 10px 10px 0;
  font-size:14px;
  line-height:1.55;
  color:rgba(255,255,255,.72);
}
body.page-home #app-teaser .app-teaser__highlights strong{
  display:block;
  margin-bottom:4px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#f5e6be;
  font-family:"Montserrat", system-ui, sans-serif;
}
body.page-home #app-teaser .app-teaser__cta{
  margin-top:4px;
}
@media (max-width:768px){
  body.page-home #app-teaser .app-teaser__highlights{
    grid-template-columns:1fr;
    gap:10px;
  }
}
@media (max-width:560px){
  body.page-home #app-teaser.app-teaser{
    margin:26px 0 30px;
  }
}

/* ОВЕРЛЕЙ: позиционируем НЕ по всей .frame, а по области баннера */
.hero-overlay{
  position:absolute;
  z-index:2;

  /* ровно по области картинки (внутри padding .frame) */
  top: var(--framePad);
  left: var(--framePad);
  right: var(--framePad);
  bottom: var(--framePad);

  border-radius: var(--bannerRad);

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  text-align:left;

  gap: clamp(8px, 1.2vw, 17px);

  padding: clamp(10px, 2.2vw, 22px) clamp(10px, 2.2vw, 22px) clamp(10px, 2.2vw, 22px) clamp(16px, 3vw, 36px);

  pointer-events:none; /* CTA: .hero-banner-cta (pointer-events:auto) */
}

/* Баннер: старт текста ≈45% ширины; на десктопе CTA с тем же левым краем, что и текст */
.hero-overlay--bonus-banner{
  justify-content:center;
  align-items:stretch;
  text-align:left;
  padding:
    clamp(8px, 2vw, 20px)
    clamp(4vw, 7vw, 11%)
    clamp(8px, 2vw, 20px)
    clamp(40%, 44vw, 48%);
  gap:0;
}
.hero-banner__text-wrap{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  align-self:start;
  gap:clamp(6px, 1.4vw, 14px);
  width:max-content;
  max-width:min(52%, 500px);
  margin:0;
  pointer-events:none;
}

/* Референс: кикер ~¼–⅓ высоты двух нижних строк; «100%» и сумма — один масштаб, плотные интервалы */
.hero-banner-bonus{
  --hb-head:clamp(22px, 5.35vw, 48px);
  display:flex;
  flex-direction:column;
  align-self:stretch;
  align-items:flex-start;
  text-align:left;
  width:100%;
  max-width:100%;
  box-sizing:border-box;
  gap:0;
}
.hero-banner-bonus__kicker{
  font-family:"Montserrat",system-ui,sans-serif;
  font-weight:800;
  font-size:clamp(9px, calc(var(--hb-head) * 0.3), 13px);
  letter-spacing:.11em;
  text-transform:uppercase;
  color:#0a0a0a;
  line-height:1.05;
}
.hero-banner-bonus__pct{
  font-family:"Montserrat",system-ui,sans-serif;
  font-weight:900;
  font-size:var(--hb-head);
  letter-spacing:.015em;
  text-transform:uppercase;
  color:#0a0a0a;
  line-height:0.98;
  margin-top:clamp(2px, 0.35vw, 5px);
}
.hero-banner-bonus__amt{
  font-family:"Montserrat",system-ui,sans-serif;
  font-weight:900;
  font-size:var(--hb-head);
  letter-spacing:.015em;
  text-transform:uppercase;
  color:#ffffff;
  line-height:0.98;
  margin-top:clamp(1px, 0.2vw, 4px);
  -webkit-text-fill-color:#ffffff;
  text-shadow:0 1px 1px rgba(0,0,0,.18);
}

/* CTA: параллелограмм (skew), широкая плашка — одна строка на десктопе */
.hero-banner-cta{
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:clamp(8px, 1.5vw, 16px);
  padding:0;
  text-decoration:none;
  border:0;
  background:transparent;
  pointer-events:auto;
  align-self:stretch;
  width:100%;
  max-width:100%;
  min-height:44px;
  min-width:0;
  box-sizing:border-box;
}
.hero-banner-cta:focus-visible{
  outline:2px solid #fff;
  outline-offset:3px;
  border-radius:4px;
}
.hero-banner-cta__shape{
  display:inline-block;
  transform:skewX(-11deg);
  background:linear-gradient(180deg, #1a1816 0%, #0c0a09 100%);
  border:1px solid rgba(0,0,0,.55);
  box-shadow:0 6px 20px rgba(0,0,0,.4);
  padding:clamp(10px, 1.9vw, 14px) clamp(14px, 3.8vw, 38px);
  transition:filter .2s ease, box-shadow .2s ease;
}
@media (hover:hover){
  .hero-banner-cta:hover .hero-banner-cta__shape{
    filter:brightness(1.08);
    box-shadow:0 8px 26px rgba(0,0,0,.45);
  }
}
.hero-banner-cta__text{
  display:block;
  transform:skewX(11deg);
  font-family:"Montserrat",system-ui,sans-serif;
  font-weight:900;
  font-size:clamp(8px, 1.45vw, 12px);
  letter-spacing:.055em;
  text-transform:uppercase;
  line-height:1.25;
  text-align:center;
  white-space:normal;
  overflow-wrap:anywhere;
}
.hero-banner-cta__accent{
  color:#ff5a14;
  -webkit-text-fill-color:#ff5a14;
}
.hero-banner-cta__plain{
  color:#ffffff;
  -webkit-text-fill-color:#ffffff;
}

@media (prefers-reduced-motion: reduce){
  .hero-banner-cta__shape,
  .hero-banner-cta__text{
    transform:none;
  }
}

@media (min-width: 769px){
  .banner-wrap:has(.hero-overlay--bonus-banner):not(.banner-wrap--image-only) .banner{
    object-position:22% center;
  }
  .hero-overlay--bonus-banner .hero-banner-cta{
    align-self:flex-start;
    width:max-content;
    max-width:100%;
    justify-content:flex-start;
  }
  .hero-banner-cta__text{
    white-space:nowrap;
    font-size:clamp(7.5px, 1.22vw, 11.5px);
    letter-spacing:.045em;
  }
}
@media (max-width: 992px) and (min-width: 769px){
  .hero-banner__text-wrap{
    max-width:min(56%, 440px);
  }
  .hero-overlay--bonus-banner{
    padding-left:clamp(34%, 40vw, 46%);
  }
}

/* Центральный блок: ограничение ширины для переносов длинной строки */
.hero-badge,
.hero-lines,
.hero-cta{
  max-width: min(92%, 640px);
}

/* Плашка */
.hero-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding: 4px 8px;
  border-radius: 14px;

  font-weight: 900;
  font-size: clamp(12px, 1.2vw, 8px);
  line-height: 1;

  color:#ffffff;
  background: linear-gradient(180deg, #292524 0%, #1c1917 100%);
  border: 1px solid rgba(255, 138, 180, 0.45);
  box-shadow:
    0 8px 18px rgba(0,0,0,.35),
    0 0 16px rgba(255, 77, 125, 0.25),
    0 1px 0 rgba(255,255,255,.2) inset;
}

/* Текст */
.hero-lines{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap: 6px;
  text-align:left;
}

/* Banner-Promo: fett, kursiv, weiß mit schwarzem Rand (Referenz-Screenshot) */
.hero-lines--promo .hero-line{
  font-style: italic;
  font-weight: 900;
  color: #ffffff;
  text-shadow:
    -1.5px -1.5px 0 #0a0a0c, 1.5px -1.5px 0 #0a0a0c, -1.5px 1.5px 0 #0a0a0c, 1.5px 1.5px 0 #0a0a0c,
    0 0 2px #0a0a0c,
    0 4px 16px rgba(0,0,0,.55);
}
.hero-lines--promo .hero-line--intro{
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: clamp(11px, 1.65vw, 16px);
}
.hero-lines--promo .hero-line--big{
  font-size: clamp(26px, 5vw, 48px);
  line-height: 1.04;
}
.hero-lines--promo .hero-line--mid{
  font-size: clamp(18px, 3.6vw, 34px);
  line-height: 1.06;
}

.hero-line{
  color:#fff;
  font-weight: 800;
  letter-spacing: .01em;
  text-shadow: 
    0 2px 4px rgba(0,0,0,.8),
    0 4px 8px rgba(0,0,0,.6),
    0 10px 22px rgba(0,0,0,.45);

  /* критично: переносы, чтобы не вылезало */
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Улучшенная читаемость на мобильных */
@media (max-width: 768px){
  .hero-line{
    text-shadow: 
      0 1px 3px rgba(0,0,0,.9),
      0 2px 6px rgba(0,0,0,.7),
      0 4px 12px rgba(0,0,0,.5);
  }
}

/* Размеры текста (правильный clamp: min, preferred, max) */
.hero-line--intro{
  font-size: clamp(13px, 2.1vw, 20px);
  line-height: 1.25;
  font-weight: 700;
  max-width: 100%;
}
.hero-line--big{
  font-size: clamp(22px, 4.2vw, 40px);
  line-height: 1.06;
}
.hero-line--mid{
  font-size: clamp(18px, 3.4vw, 32px);
  line-height: 1.06;
}

/* Кнопка */
.hero-cta{
  pointer-events:auto;
  align-self:flex-start;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  margin-top: 4px;
  padding: 16px 44px;
  border-radius: 10px;

  font-weight: 900;
  font-size: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration:none;
  color:#ffffff;
  -webkit-text-fill-color:#ffffff;
  text-shadow:0 1px 0 rgba(0,0,0,.2);

  position: relative;
  isolation:isolate;

  max-width: 100%;

  background:linear-gradient(180deg, #fde68a 0%, #d97706 42%, #78350f 100%);
  
  border: 1px solid #5c2d06;
  box-shadow:
    0 2px 0 #9f1239,
    0 10px 28px rgba(180, 120, 30, 0.4);
  
  transition:all .3s ease;
}

/* Дополнительный слой для глянца */
.hero-cta::before{
  content:"";
  position:absolute;
  inset: 3px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, 
      rgba(255,255,255,.2) 0%, 
      rgba(255,255,255,.08) 20%,
      rgba(255,255,255,.03) 40%,
      transparent 70%
    );
  pointer-events:none;
  z-index:1;
}

/* Внешнее свечение с блюром */
.hero-cta::after{
  content:"";
  position:absolute;
  inset: -6px;
  border-radius: 12px;
  background: radial-gradient(ellipse at center, rgba(255, 138, 148, 0.55) 0%, rgba(255, 138, 100, 0.35) 45%, transparent 72%);
  filter: blur(12px);
  z-index: -1;
  opacity: 0.85;
  pointer-events:none;
}

/* Ховер для CTA (только десктоп) */
@media (hover:hover){
  .hero-cta:hover{ 
    transform: translateY(-2px) scale(1.02);
    box-shadow:
      0 0 28px rgba(255, 122, 160, 0.55),
      0 0 48px rgba(255, 122, 92, 0.35),
      0 10px 22px rgba(28, 25, 23, 0.2),
      0 14px 30px rgba(28, 25, 23, 0.12);
    filter: brightness(1.06);
  }
  .hero-cta:hover::after{
    opacity: 1;
    filter: blur(16px);
  }
  .hero-cta:active{ 
    transform: translateY(0px) scale(0.98);
    box-shadow:
      0 0 16px rgba(255, 122, 160, 0.4),
      0 0 28px rgba(255, 122, 92, 0.25),
      0 4px 14px rgba(28, 25, 23, 0.18);
  }
}

/* Планшеты */
@media (max-width: 992px) and (min-width: 769px){
  .hero-badge,
  .hero-lines,
  .hero-cta{
    max-width: min(90%, 520px);
  }
  .hero-cta{ 
    padding: 12px 28px; 
    font-size: 15px;
  }
}

/* Большие мобильные устройства (iPhone Pro Max и подобные) */
@media (max-width: 768px) and (min-width: 481px){
  .hero-badge,
  .hero-lines,
  .hero-cta{
    max-width: min(94%, 480px);
  }
  
  .hero-line--big{ 
    font-size: clamp(20px, 4.5vw, 26px);
  }
  .hero-line--mid{ 
    font-size: clamp(16px, 3.8vw, 21px);
  }
  .hero-line--intro{
    font-size: clamp(12px, 2.8vw, 16px);
  }
}

/* Мобилки: по центру, читаемый фон за текстом */
@media (max-width: 768px){
  :root{
    --framePad: 12px;
  }

  .hero-overlay{
    padding: 12px 14px 12px 18px;
    gap: 8px;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
  }

  .hero-badge,
  .hero-lines,
  .hero-cta{
    max-width: min(94%, 420px);
    position: relative;
    z-index: 3;
  }

  /* Полупрозрачный фон для лучшей читаемости */
  .hero-badge{
    background: linear-gradient(180deg, #292524 0%, #1c1917 100%);
    backdrop-filter: blur(6px);
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 11px;
    align-self: flex-start;
    border: 1px solid rgba(255, 138, 180, 0.45);
    box-shadow: 0 4px 12px rgba(0,0,0,.35), 0 0 12px rgba(255, 77, 125, 0.2);
  }

  .hero-lines{
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    padding: 8px 12px;
    border-radius: 10px;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,.4);
  }

  .hero-line--intro{
    font-size: clamp(11px, 3.2vw, 15px);
  }

  .hero-line--big{ 
    font-size: clamp(20px, 5vw, 28px);
    line-height: 1.1;
  }
  .hero-line--mid{ 
    font-size: clamp(16px, 4vw, 22px);
    line-height: 1.1;
  }

  .hero-cta{
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 16px;
    margin-top: 4px;
    color:#ffffff;
    -webkit-text-fill-color:#ffffff;
    box-shadow:
      0 0 18px rgba(255, 122, 160, 0.45),
      0 0 32px rgba(255, 122, 92, 0.3),
      0 6px 12px rgba(28, 25, 23, 0.2);
  }
  .hero-cta::before{
    inset: 3px;
    border-radius: 13px;
  }
  .hero-cta::after{
    inset: -6px;
    border-radius: 22px;
    filter: blur(10px);
    opacity: 0.7;
  }
}

/* Средние мобилки (480px - 720px) */
@media (max-width: 720px){
  .hero-badge,
  .hero-lines,
  .hero-cta{
    max-width: min(94%, 400px);
  }
  
  .hero-overlay{
    gap: 6px;
  }

  .hero-line--intro{
    font-size: clamp(11px, 3vw, 14px);
  }

  .hero-line--big{ 
    font-size: clamp(18px, 4.5vw, 24px);
  }
  .hero-line--mid{ 
    font-size: clamp(14px, 3.5vw, 20px);
  }

  .hero-cta{
    padding: 9px 18px;
    font-size: 12px;
  }
}

/* Маленькие мобилки (до 480px) */
@media (max-width: 480px){
  :root{
    --framePad: 10px;
  }

  .hero-overlay{
    padding: 10px 12px;
    gap: 6px;
  }

  .hero-badge,
  .hero-lines,
  .hero-cta{
    max-width: min(94%, 380px);
  }

  .hero-badge{
    padding: 3px 6px;
    font-size: 10px;
    background: linear-gradient(180deg, #292524 0%, #1c1917 100%);
    box-shadow: 0 3px 10px rgba(0,0,0,.4), 0 0 10px rgba(255, 77, 125, 0.18);
  }

  .hero-lines{
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.55);
    box-shadow: 0 3px 10px rgba(0,0,0,.45);
  }

  .hero-line--intro{
    font-size: clamp(10px, 2.9vw, 13px);
  }

  .hero-line--big{ 
    font-size: clamp(16px, 4vw, 22px);
  }
  .hero-line--mid{ 
    font-size: clamp(13px, 3.2vw, 18px);
  }

  .hero-cta{
    padding: 8px 16px;
    font-size: 11px;
    border-radius: 14px;
    color:#ffffff;
    -webkit-text-fill-color:#ffffff;
    box-shadow:
      0 0 14px rgba(255, 122, 160, 0.4),
      0 0 26px rgba(255, 122, 92, 0.28),
      0 5px 10px rgba(28, 25, 23, 0.18);
  }
  .hero-cta::before{
    inset: 2px;
    border-radius: 12px;
  }
  .hero-cta::after{
    inset: -5px;
    border-radius: 19px;
    filter: blur(8px);
    opacity: 0.6;
  }
}

/* Очень узкие экраны (SE/360px и меньше) */
@media (max-width: 380px){
  :root{
    --framePad: 8px;
  }

  .hero-overlay{
    padding: 8px 10px;
    gap: 5px;
  }

  .hero-badge,
  .hero-lines,
  .hero-cta{
    max-width: min(96%, 340px);
  }

  .hero-badge{
    padding: 2px 5px;
    font-size: 9px;
    background: linear-gradient(180deg, #292524 0%, #1c1917 100%);
    box-shadow: 0 2px 8px rgba(0,0,0,.45), 0 0 8px rgba(255, 77, 125, 0.15);
  }

  .hero-lines{
    padding: 5px 8px;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 2px 8px rgba(0,0,0,.5);
  }

  .hero-line--intro{
    font-size: clamp(9px, 2.8vw, 12px);
  }

  .hero-line--big{ 
    font-size: clamp(14px, 3.8vw, 20px);
  }
  .hero-line--mid{ 
    font-size: clamp(12px, 3vw, 16px);
  }

  .hero-cta{
    padding: 7px 14px;
    font-size: 10px;
    border-radius: 12px;
    color:#ffffff;
    -webkit-text-fill-color:#ffffff;
    box-shadow:
      0 0 12px rgba(255, 122, 160, 0.38),
      0 0 22px rgba(255, 122, 92, 0.25),
      0 4px 8px rgba(28, 25, 23, 0.16);
  }
  .hero-cta::before{
    inset: 2px;
    border-radius: 10px;
  }
  .hero-cta::after{
    inset: -4px;
    border-radius: 16px;
    filter: blur(6px);
    opacity: 0.6;
  }
}

@media (max-width: 768px){
  /* Текст в правой зоне (как на десктопе), кадр смещён влево — не накрывает лицо */
  .hero-overlay.hero-overlay--bonus-banner{
    justify-content:center;
    align-items:stretch;
    text-align:left;
    padding-top:clamp(8px, 2.2vw, 16px);
    padding-right:clamp(10px, 3vw, 16px);
    padding-bottom:clamp(8px, 2.2vw, 16px);
    padding-left:clamp(36%, 40vw, 52%);
  }
  .hero-banner__text-wrap{
    align-self:start;
    margin:0;
    width:max-content;
    max-width:calc(100% - 4px);
  }
  .hero-banner-bonus{
    align-self:stretch;
    width:100%;
    max-width:100%;
    align-items:flex-start;
    text-align:left;
    --hb-head:clamp(15px, 4.6vw, 26px);
  }
  .banner-wrap:has(.hero-overlay--bonus-banner):not(.banner-wrap--image-only) .banner{
    object-position:clamp(12%, 18vw, 24%) center;
  }
}
@media (max-width: 480px){
  .hero-overlay.hero-overlay--bonus-banner{
    padding-top:8px;
    padding-right:10px;
    padding-bottom:8px;
    padding-left:clamp(32%, 38vw, 50%);
  }
  .hero-banner__text-wrap{
    max-width:calc(100% - 6px);
  }
  .hero-banner-bonus{
    --hb-head:clamp(14px, 4.2vw, 22px);
  }
  .banner-wrap:has(.hero-overlay--bonus-banner):not(.banner-wrap--image-only) .banner{
    object-position:clamp(10%, 16vw, 22%) center;
  }
}
@media (max-width: 380px){
  .hero-overlay.hero-overlay--bonus-banner{
    padding-top:6px;
    padding-right:8px;
    padding-bottom:6px;
    padding-left:clamp(28%, 36vw, 48%);
  }
  .hero-banner__text-wrap{
    max-width:calc(100% - 4px);
  }
  .hero-banner-bonus{
    --hb-head:clamp(13px, 4vw, 20px);
  }
}

/* ─────────────────────────────────────────────────────────
   MEDALLIONS
────────────────────────────────────────────────────────── */
/* ===== Chips (Sierra Casino style) ===== */
.chips{
  margin:16px auto 0;
  display:flex;
  align-items:center;
  gap:7px;

  justify-content:center;
  flex-wrap:wrap;

  max-width:100%;
  overflow-x:auto;
  overflow-y:hidden;

  -webkit-overflow-scrolling:touch;
  scroll-behavior:smooth;

  padding:10px 10px;
  background:linear-gradient(180deg, #14120e 0%, #1c1810 100%);
  border:1px solid rgba(212, 175, 55, 0.22);
  border-radius:14px;
  box-shadow:0 2px 12px rgba(28, 25, 23, 0.06);
  
  /* Скрываем scrollbar на десктопе */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE и Edge */
}

/* убираем «прилипание» к левому краю при скролле */
.chips::before,
.chips::after{
  content:"";
  flex:0 0 4px;
}

/* scrollbar - скрыт на десктопе, виден только на мобильных */

.chips::-webkit-scrollbar{ 
  height:0; 
  width:0;
  background:transparent;
}
.chips::-webkit-scrollbar-thumb{
  background:linear-gradient(180deg, var(--primary-mid), var(--primary-dark));
  border-radius:999px;
}
.chips::-webkit-scrollbar-track{ 
  background:transparent; 
}

.chip{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;

  height:32px;
  padding:0 10px;
  box-sizing:border-box;
  border-radius:10px;

  white-space:nowrap;
  text-decoration:none;

  /* system-ui первым — если Antonio грузится криво, подписи не «пропадают» */
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif,"Antonio";
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.04em;
  font-size:11px;

  color:#faf6ea !important;
  -webkit-text-fill-color:#faf6ea;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(255,255,255,.12), transparent 50%),
    linear-gradient(180deg, #1c1810 0%, #12100a 45%, #0e0c08 100%);
  border:1px solid rgba(212, 175, 55, 0.32);

  box-shadow:
    0 1px 0 rgba(255,255,255,.08) inset,
    0 2px 10px rgba(0,0,0,.35);

  transition:
    transform .18s ease,
    box-shadow .22s ease,
    background .22s ease,
    border-color .22s ease,
    color .22s ease;
}

/* Одинаковый URL /go/ у всех чипов — :visited иначе даёт тёмный/невидимый текст в Safari/Chrome */
.chip:link,
.chip:visited,
.chip:hover,
.chip:active,
.chip:focus-visible{
  color:#faf6ea !important;
  -webkit-text-fill-color:#faf6ea;
}

/* ICON */
.chip-ico{
  width:16px;
  height:16px;
  display:grid;
  place-items:center;
  color:#e8c256;
  filter:
    drop-shadow(0 1px 1px rgba(0,0,0,.5));
}

.chip-ico svg{
  width:16px;
  height:16px;
  stroke:currentColor;
}

/* TEXT */
.chip-txt{
  line-height:1.15;
  align-self:center;
  color:#faf6ea !important;
  -webkit-text-fill-color:#faf6ea;
}

/* HOVER — как в рефе */
@media (hover:hover){
  .chip:hover{
    color:#fffef8 !important;
    -webkit-text-fill-color:#fffef8;
    border-color:rgba(250, 220, 140, 0.55);
    background:
      radial-gradient(120% 120% at 30% 20%, rgba(255,255,255,.16), transparent 50%),
      linear-gradient(180deg, #252016 0%, #1a1612 50%, #14120e 100%);
    box-shadow:
      0 0 0 1px rgba(212, 175, 55, 0.35) inset,
      0 4px 14px rgba(212, 175, 55, 0.2);
    transform: translateY(-1px);
  }
}

/* ACTIVE / TAP */
.chip:active{
  transform: translateY(1px);
  box-shadow:
    0 0 0 1px rgba(0,0,0,.7) inset,
    0 4px 10px rgba(0,0,0,.6);
}

/* MOBILE — чипы в несколько рядов, все подписи видны; скроллбар скрыт */
@media (max-width:768px){
  .chips{
    padding:8px 10px;
    gap:6px 8px;
    margin-top:12px;
    scrollbar-width:none;
    -ms-overflow-style:none;
    flex-wrap:wrap;
    justify-content:center;
    align-content:center;
    overflow-x:visible;
    overflow-y:visible;
    row-gap:6px;
  }
  .chips::-webkit-scrollbar{
    height:0;
    width:0;
    display:none;
  }
  .chips::before,
  .chips::after{
    display:none;
  }
  
  .chip{
    height:32px;
    padding:0 10px;
    font-size:10px;
    border-radius:10px;
    gap:6px;
  }
  
  .chip-ico,
  .chip-ico svg{
    width:14px;
    height:14px;
  }
}

@media (max-width:520px){
  .chips{
    padding:6px 8px;
    gap:5px 6px;
    margin-top:10px;
    row-gap:5px;
  }
  
  .chip{
    height:30px;
    padding:0 8px;
    font-size:9px;
    border-radius:8px;
    gap:5px;
  }
  
  .chip-ico,
  .chip-ico svg{
    width:12px;
    height:12px;
  }
}

@media (max-width:380px){
  .chips{
    padding:5px 6px;
    gap:4px 5px;
    row-gap:4px;
  }
  
  .chip{
    height:28px;
    padding:0 7px;
    font-size:8px;
    gap:4px;
  }
  
  .chip-ico,
  .chip-ico svg{
    width:11px;
    height:11px;
  }
}

/* ─────────────────────────────────────────────────────────
   CARDS GRID
────────────────────────────────────────────────────────── */
.grid{
  display:grid;
  gap:18px;
  grid-template-columns:repeat(4,minmax(0,1fr));
  margin-top:22px;
  min-width:0;
}
.card{
  display:block;
  text-decoration:none;
  color:inherit;
  background:#ffffff;
  border:1px solid rgba(212, 175, 55, 0.22);
  border-radius:14px;
  overflow:hidden;
  box-shadow:
    0 4px 16px rgba(28, 25, 23, 0.08),
    0 0 0 1px rgba(255,255,255,.9) inset;
  transition:border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.card:hover{
  border-color:#fdba74;
  box-shadow:
    0 12px 28px rgba(212, 175, 55, 0.15),
    0 0 0 1px rgba(254, 215, 170, 0.65) inset;
  transform:translateY(-2px);
}
.media{
  position:relative;
  aspect-ratio:16/9;
  overflow:hidden;
  background:#0a0a0a;
}
.media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1);
  transition:transform .6s ease;
}
.card:hover .media img{ transform:scale(1.08); }
.play{
  position:absolute;
  inset:auto 50% 50% auto;
  transform:translate(50%,50%);
  padding:10px 22px;
  border-radius:14px;
  font-weight:800;
  color:#ffffff;
  -webkit-text-fill-color:#ffffff;
  background:
    radial-gradient(60% 120% at 30% 20%, rgba(255, 255, 255, 0.35), transparent 42%),
    linear-gradient(180deg, #fde68a 0%, #d97706 45%, #78350f 100%);
  border:1px solid #5c2d06;
  box-shadow:0 4px 16px rgba(180, 120, 30, 0.35);
  opacity:0;
  transition:opacity .25s ease, transform .25s ease;
}
.card:hover .play{
  opacity:1;
  transform:translate(50%,50%) scale(1.05);
}
.info{
  padding:12px 14px 14px;
  background:linear-gradient(180deg, #14120e 0%, rgba(212, 175, 55, 0.22) 100%);
  border-top:1px solid rgba(212, 175, 55, 0.22);
}
.title{ margin:0 0 4px; font-weight:800; font-size:15px; line-height:1.2; color:#faf6ea; }
.vendor{ margin:0; color:rgba(235,228,212,.72); font-size:12px; font-weight:600; }

/* ─────────────────────────────────────────────────────────
   TABLE OF CONTENTS
────────────────────────────────────────────────────────── */
.toc-nav{
  margin:24px 0 20px;
  padding:16px 20px;
  background:linear-gradient(180deg, #14120e, #1c1810);
  border:1px solid rgba(212, 175, 55, 0.22);
  border-radius:14px;
  box-shadow:0 2px 12px rgba(28, 25, 23, 0.06);
}

.toc-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  gap:12px 16px;
  justify-content:flex-start;
  align-items:center;
}

.toc-list li{
  margin:0;
  padding:0;
}

.toc-list a{
  display:inline-block;
  padding:6px 14px;
  font-size:13px;
  font-weight:600;
  color:#fde68a;
  text-decoration:none;
  border-radius:8px;
  background:linear-gradient(180deg, #1c1810 0%, #12100a 100%);
  border:1px solid rgba(212, 175, 55, 0.35);
  transition:all .2s ease;
  white-space:nowrap;
}

.toc-list a:hover{
  background:linear-gradient(180deg, #252016 0%, #1a1612 100%);
  border-color:rgba(250, 220, 140, 0.55);
  color:#fffbeb;
  transform:translateY(-1px);
}

@media (max-width:768px){
  .toc-nav{
    padding:12px 14px;
    margin:20px 0 16px;
  }
  
  .toc-list{
    gap:8px 12px;
  }
  
  .toc-list a{
    padding:5px 11px;
    font-size:12px;
  }
}

@media (max-width:480px){
  .toc-list{
    gap:6px 10px;
  }
  
  .toc-list a{
    padding:4px 9px;
    font-size:11px;
  }
}

/* ─────────────────────────────────────────────────────────
   FAQ SECTION
────────────────────────────────────────────────────────── */
.faq-item{
  margin-bottom:24px;
  padding:18px 20px;
  background:#14120e;
  border:1px solid rgba(212, 175, 55, 0.22);
  border-radius:12px;
  box-shadow:0 2px 8px rgba(0,0,0,.35);
}

.faq-item h3{
  margin:0 0 12px 0;
  font-size:18px;
  font-weight:800;
  color:#faf6ea;
  line-height:1.3;
}

.faq-item p{
  margin:0;
  color:#c9c2b4;
  line-height:1.6;
}

.faq-item:last-child{
  margin-bottom:0;
}

@media (max-width:768px){
  .faq-item{
    padding:14px 16px;
    margin-bottom:18px;
  }
  
  .faq-item h3{
    font-size:16px;
    margin-bottom:10px;
  }
}

/* ─────────────────────────────────────────────────────────
   SECTIONS / CTA
────────────────────────────────────────────────────────── */
.section{
  margin-top:30px;
  margin-bottom:20px;
  line-height:1.6;
  color:#44403c;
}

.shell > main .section h2,
.shell > main .section h3{
  color:var(--main-heading,#1c1917);
}

.intro p{
  max-width:900px;
  margin:0 auto;
  text-align:left;
  color:#44403c;
}

body.page-home .section.intro#casino p{
  margin:0 auto 1em;
}
body.page-home .section.intro#casino p:last-of-type{
  margin-bottom:0;
}
.cta-center{
  display:flex;
  justify-content:center;
  margin-top:16px;
}
.app-teaser__cta{
  flex-wrap:wrap;
  align-items:stretch;
  justify-content:center;
  gap:14px 16px;
  margin-top:22px;
}

/* App teaser — par de botones alineados (home) */
body.page-home #app-teaser .app-teaser__cta{
  display:flex;
}

body.page-home #app-teaser .app-teaser__btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:14px 28px;
  border-radius:999px;
  font-family:"Antonio", system-ui, sans-serif;
  font-weight:800;
  font-size:clamp(12px, 2.2vw, 14px);
  letter-spacing:.1em;
  line-height:1.25;
  text-transform:uppercase;
  text-decoration:none !important;
  text-align:center;
  white-space:normal;
  max-width:min(100%, 300px);
  box-sizing:border-box;
  transition:
    transform .2s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    background .22s ease,
    color .22s ease,
    filter .22s ease;
}

body.page-home #app-teaser .app-teaser__btn--primary.pulse-btn,
body.page-home #app-teaser .app-teaser__btn--ghost{
  padding:14px 28px !important;
  font-size:clamp(12px, 2.2vw, 14px) !important;
  font-weight:800 !important;
  letter-spacing:.1em !important;
  border-radius:999px !important;
  animation:none !important;
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
  text-shadow:0 1px 2px rgba(0, 0, 0, 0.4) !important;
  background:
    radial-gradient(ellipse 120% 90% at 50% 0%, rgba(255, 255, 255, 0.22) 0%, transparent 52%),
    linear-gradient(165deg, #e8c256 0%, #a16207 42%, #453008 100%) !important;
  border:1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 -1px 0 rgba(0, 0, 0, 0.12) inset,
    0 3px 0 #2e2206,
    0 8px 22px rgba(0, 0, 0, 0.38),
    0 4px 16px rgba(160, 110, 30, 0.12) !important;
}

body.page-home #app-teaser .app-teaser__btn--primary.pulse-btn::before,
body.page-home #app-teaser .app-teaser__btn--ghost::before{
  content:"";
  position:absolute;
  inset:2px;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.04) 50%, transparent 100%);
  pointer-events:none;
  z-index:1;
}

body.page-home #app-teaser .app-teaser__btn--primary.pulse-btn:hover,
body.page-home #app-teaser .app-teaser__btn--ghost:hover{
  transform:translateY(-2px);
  filter:brightness(1.06);
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 3px 0 #2e2206,
    0 10px 28px rgba(0, 0, 0, 0.42),
    0 6px 20px rgba(180, 130, 40, 0.18) !important;
}

@media (max-width:560px){
  body.page-home #app-teaser .app-teaser__cta{
    flex-direction:column;
    align-items:stretch;
    width:100%;
    max-width:min(340px, 100%);
    margin-left:auto;
    margin-right:auto;
  }
  body.page-home #app-teaser .app-teaser__btn{
    width:100%;
    max-width:100%;
  }
}

.pulse-btn{
  display:inline-block;
  padding:16px 32px;
  font-weight:900;
  font-size:18px;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:#ffffff;
  -webkit-text-fill-color:#ffffff;
  text-decoration:none;
  border-radius:30px;
  position:relative;
  background:
    radial-gradient(ellipse at center top, rgba(255, 255, 255, 0.12) 0%, transparent 52%),
    linear-gradient(180deg, #b8922a 0%, #7a5c10 45%, #3d2f08 100%);
  border:1px solid rgba(26, 20, 6, 0.9);
  box-shadow:
    0 2px 0 #1a1408,
    0 5px 16px rgba(0, 0, 0, 0.38),
    0 0 14px rgba(120, 90, 20, 0.14);
  transition:all .3s ease;
  animation:none;
}

/* Глянцевый эффект */
.pulse-btn::before{
  content:"";
  position:absolute;
  inset:2px;
  border-radius:28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.04) 50%, transparent 100%);
  pointer-events:none;
  z-index:1;
}

/* Адаптивные стили для мобильных */
@media (max-width:768px){
  .pulse-btn,
  .vmore-btn{
    white-space:nowrap;
  }
  .pulse-btn{
    padding:14px 22px;
    font-size:clamp(13px, 3.4vw, 16px);
  }
  .vmore-btn{
    padding:10px 18px;
    font-size:clamp(12px, 3vw, 14px);
  }
}

@media (max-width:480px){
  .pulse-btn{
    padding:11px 18px;
    font-size:clamp(12px, 3.2vw, 14px);
    border-radius:25px;
  }
}

@media (max-width:380px){
  .pulse-btn{
    padding:10px 14px;
    font-size:12px;
    letter-spacing:.03em;
  }
}

/* ─────────────────────────────────────────────────────────
   PROVIDERS
────────────────────────────────────────────────────────── */
.prov-grid{
  display:grid;
  gap:16px;
  grid-template-columns:repeat(4,minmax(0,1fr));
}
.prov{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-decoration:none;
  color:#1c1917;
  background:#ffffff;
  border:1px solid rgba(212, 175, 55, 0.22);
  border-radius:14px;
  padding:14px;
  box-shadow:
    0 4px 14px rgba(28, 25, 23, 0.07),
    0 0 0 1px rgba(255,255,255,.9) inset;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.prov:hover{
  transform:translateY(-3px);
  border-color:#fdba74;
  box-shadow:
    0 12px 28px rgba(212, 175, 55, 0.12);
}
.prov-media{
  width:100%;
  aspect-ratio:16/9;
  background:#f5f5f4;
  border-radius:10px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(212, 175, 55, 0.22);
}
.prov-media img{
  width:80%;
  height:80%;
  object-fit:contain;
  filter:drop-shadow(0 2px 8px rgba(0,0,0,.35));
}
.prov-name{
  margin-top:12px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  font-size:13px;
  text-align:center;
  color:#9a3412;
}
.vmore-btn{
  display:inline-block;
  padding:12px 24px;
  font-weight:900;
  font-size:14px;
  letter-spacing:.04em;
  text-transform:uppercase;
  border-radius:999px;
  text-decoration:none;
  color:#ffffff;
  -webkit-text-fill-color:#ffffff;
  position:relative;
  background:
    radial-gradient(ellipse at center top, rgba(255, 255, 255, 0.25) 0%, transparent 52%),
    linear-gradient(180deg, #fb923c 0%, #c2410c 48%, #c2410c 100%);
  border:1px solid #9a3412;
  box-shadow:
    0 2px 0 #7c2d12,
    0 6px 18px rgba(212, 175, 55, 0.35);
  transition:all .3s ease;
}

/* Глянцевый эффект */
.vmore-btn::before{
  content:"";
  position:absolute;
  inset:2px;
  border-radius:999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.25) 0%, rgba(255,255,255,.05) 50%, transparent 100%);
  pointer-events:none;
}

.vmore-btn:hover{ 
  transform:scale(1.05) translateY(-2px);
  box-shadow:
    0 2px 0 #7c2d12,
    0 10px 26px rgba(212, 175, 55, 0.45);
  filter: brightness(1.05);
}

/* ─────────────────────────────────────────────────────────
   ТАБЛИЦЫ (ОБЩЕЕ)
────────────────────────────────────────────────────────── */
.table-wrapper{
  background:#14120e;
  border:1px solid rgba(212, 175, 55, 0.22);
  border-radius:16px;
  box-shadow:0 2px 12px rgba(28, 25, 23, 0.06);
  overflow:hidden; /* скругления без «утечек» */
}

/* Для таблиц с горизонтальным скроллом */
.table-wrapper--scroll{
  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:thin;
  scrollbar-color:rgba(212, 175, 55, 0.55) rgba(212, 175, 55, 0.22);
}

.table-wrapper--scroll::-webkit-scrollbar{
  height:8px;
}

.table-wrapper--scroll::-webkit-scrollbar-track{
  background:rgba(212, 175, 55, 0.22);
  border-radius:4px;
}

.table-wrapper--scroll::-webkit-scrollbar-thumb{
  background:rgba(212, 175, 55, 0.5);
  border-radius:4px;
}

.table-wrapper--scroll::-webkit-scrollbar-thumb:hover{
  background:rgba(212, 175, 55, 0.65);
}

/* Базовая таблица — всегда 100% внутри wrapper */
table{
  width:100%;
  border-collapse:collapse;
}

/* Стили для таблиц с заголовками (thead/th) */
table thead{
  background:linear-gradient(180deg, #ffedd5, #1c1810);
  border-bottom:2px solid #fdba74;
}

table th{
  padding:14px 12px;
  text-align:left;
  font-weight:800;
  color:#1c1917;
  font-size:15px;
  letter-spacing:.02em;
  text-transform:uppercase;
  border-bottom:2px solid #fdba74;
}

table tbody tr{
  transition:background-color .2s ease;
}

table tbody tr:hover{
  background:rgba(255, 237, 213, 0.55);
}

table tbody td{
  padding:12px;
  color:#44403c;
  line-height:1.5;
  font-size:15px;
  border-bottom:1px solid rgba(212, 175, 55, 0.22);
  vertical-align:middle;
}

table tbody tr:last-child td{
  border-bottom:0;
}

table tbody tr:nth-child(even){
  background:rgba(248, 250, 252, 0.9);
}

/* Адаптивность для многоколоночных таблиц */
@media (max-width:768px){
  table th,
  table tbody td{
    padding:10px 8px;
    font-size:14px;
  }
  
  table th{
    font-size:13px;
  }
}

@media (max-width:480px){
  table th,
  table tbody td{
    padding:8px 6px;
    font-size:13px;
  }
  
  table th{
    font-size:12px;
    letter-spacing:.01em;
  }
}

/* Универсальный фикс для 2-колоночных таблиц без правок HTML
   (используется в секциях #facts, #bonuses) */
:is(#facts, #bonuses){
  overflow-x:hidden;
}
:is(#facts, #bonuses) table{
  width:100% !important;
  min-width:0 !important;
  margin:0;
  border-collapse:collapse;
  table-layout:fixed; /* ровные колонки на мобайле */
}
:is(#facts, #bonuses) td{
  padding:12px 14px;
  white-space:normal;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
  vertical-align:top;
  border-bottom:1px solid rgba(212, 175, 55, 0.22);
  color:#44403c;
  line-height:1.5;
  font-size:15px;
}
:is(#facts, #bonuses) tr:last-child td{ border-bottom:0; }

:is(#facts, #bonuses) td:first-child{
  width:42%;
  font-weight:700;
  color:#1c1917;
}
:is(#facts, #bonuses) td:last-child{ width:58%; }

:is(#facts, #bonuses) tr:nth-child(odd) td{
  background:rgba(241, 245, 249, 0.85);
}

@media (max-width:430px){
  :is(#facts, #bonuses) td{
    padding:10px 8px;
    font-size:14px;
  }
  :is(#facts, #bonuses) td:first-child{ width:46%; }
  :is(#facts, #bonuses) td:last-child{ width:54%; }
}

/* Стили для секции #payments с многоколоночной таблицей */
#payments .table-wrapper{
  overflow:hidden;
}

#payments table{
  width:100%;
  margin:0;
  border-collapse:collapse;
  table-layout:auto;
}

/* Мобильная адаптация для #payments */
@media (max-width:768px){
  #payments table th,
  #payments table tbody td{
    padding:10px 8px;
    font-size:13px;
  }
  
  #payments table th{
    font-size:12px;
    padding:10px 6px;
  }
  
  #payments table tbody td:last-child{
    font-size:12px;
  }
}

@media (max-width:480px){
  #payments table th,
  #payments table tbody td{
    padding:8px 6px;
    font-size:12px;
  }
  
  #payments table th{
    font-size:11px;
    padding:8px 5px;
    letter-spacing:0;
  }
  
  #payments table tbody td:first-child{
    font-size:12px;
  }
  
  #payments table tbody td:nth-child(2),
  #payments table tbody td:nth-child(3){
    text-align:center;
    font-size:12px;
  }
  
  #payments table tbody td:last-child{
    font-size:11px;
  }
}

/* ─────────────────────────────────────────────────────────
   FOOTER (estilo vitrina oscura: franjas + oro)
────────────────────────────────────────────────────────── */
.site-footer{
  --ft-bg:#000000;
  --ft-bg-soft:#0a0a0a;
  --ft-line:rgba(255,255,255,.08);
  --ft-line-gold:rgba(212, 175, 55, 0.16);
  --ft-text:rgba(255,255,255,.92);
  --ft-muted:rgba(255,255,255,.55);
  --ft-link:rgba(255,255,255,.52);
  margin-top:40px;
  background:var(--ft-bg);
  border-top:1px solid var(--ft-line);
  box-shadow:0 -12px 48px rgba(0,0,0,.55);
}
.site-footer a{ color:var(--ft-text); text-decoration:none; }
.site-footer a:hover:not(.ft-btn){
  color:#fff8e8;
  text-decoration:none;
}

.ft-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:44px 20px 36px;
  color:var(--ft-muted);
}
.ft-head{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:20px 28px;
  margin-bottom:0;
  padding-bottom:36px;
  border-bottom:1px solid var(--ft-line);
}
.ft-logo{
  justify-self:start;
}
.ft-logo img{ height:48px; width:auto; display:block; object-fit:contain; }
.ft-cta-center{
  justify-self:center;
  display:flex;
  justify-content:center;
  min-width:0;
}

.ft-btn{
  display:inline-block;
  padding:13px 32px;
  font-weight:800;
  font-size:clamp(14px, 1.9vw, 17px);
  letter-spacing:.14em;
  text-transform:uppercase;
  text-shadow:0 1px 2px rgba(0,0,0,.45);
  color:#ffffff;
  -webkit-text-fill-color:#ffffff;
  text-decoration:none;
  border-radius:10px;
  max-width:min(100%, 380px);
  position:relative;
  line-height:1.25;
  font-family:"Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:linear-gradient(180deg, #fff2b0 0%, #e8c256 38%, #a67c1a 72%, #4a3708 100%);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:
    0 1px 0 rgba(255,255,255,.28) inset,
    0 -1px 0 rgba(0,0,0,.2) inset,
    0 3px 0 #1f1706,
    0 10px 28px rgba(0,0,0,.45),
    0 0 0 1px rgba(0,0,0,.35);
  transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.ft-btn::before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:9px;
  background:linear-gradient(180deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,.04) 42%, transparent 100%);
  pointer-events:none;
}

.ft-btn:hover{
  transform:translateY(-1px);
  filter:brightness(1.06) saturate(1.05);
  box-shadow:
    0 1px 0 rgba(255,255,255,.32) inset,
    0 3px 0 #1f1706,
    0 14px 34px rgba(0,0,0,.5),
    0 0 0 1px rgba(212, 175, 55, 0.25);
}

.ft-trust{
  justify-self:end;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:nowrap;
  gap:10px 12px;
}
.ft-trust a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:0;
  border-radius:8px;
  padding:2px 0;
  transition:opacity .2s ease, transform .2s ease;
}
.ft-trust a:hover{
  opacity:1;
  transform:translateY(-1px);
}
.ft-trust img{
  height:32px;
  width:auto;
  max-width:118px;
  display:block;
  object-fit:contain;
  opacity:.98;
  filter:drop-shadow(0 2px 5px rgba(0,0,0,.4));
}
.ft-trust a:hover img{ opacity:1; }

.ft-page{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:10px 12px;
  margin:0;
  padding:22px 10px 26px;
  border-bottom:1px solid var(--ft-line);
}
.ft-page a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
  font-size:12px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:capitalize;
  font-family:"Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  padding:9px 16px;
  border-radius:999px;
  color:rgba(245, 230, 190, .9);
  text-decoration:none;
  background:rgba(212, 175, 55, .07);
  border:1px solid rgba(212, 175, 55, .22);
  box-shadow:0 1px 0 rgba(0,0,0,.35) inset;
  transition:
    color .2s ease,
    background .2s ease,
    border-color .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}
.ft-page a:hover{
  color:#fffbeb;
  background:rgba(212, 175, 55, .16);
  border-color:rgba(251, 191, 36, .48);
  box-shadow:
    0 0 0 1px rgba(251, 191, 36, .12) inset,
    0 6px 18px rgba(0,0,0,.28);
  transform:translateY(-1px);
}

.ft-head + .ft-grid,
.ft-page + .ft-grid{
  border-top:none;
  padding-top:28px;
}

.ft-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:clamp(20px, 3vw, 40px) clamp(24px, 4vw, 48px);
  max-width:none;
  width:100%;
  margin:0 auto;
  padding:0 4px 32px;
  border-top:none;
  border-bottom:none;
}
.ft-col{ display:flex; flex-direction:column; gap:8px; }
.ft-col a{
  font-size:13px;
  line-height:1.5;
  color:rgba(255,255,255,.48);
  text-decoration:none;
  border-radius:4px;
  margin:0;
  padding:2px 0;
  transition:color .2s ease;
}
.ft-col a:hover{
  color:#fff;
  background:transparent;
}
.ft-title{
  font-weight:700;
  color:#fff;
  margin-bottom:6px;
  letter-spacing:.06em;
  font-size:12px;
  text-transform:uppercase;
  white-space:nowrap;
  font-family:"Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.ft-pay{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:0;
  margin:0 auto;
  max-width:none;
  width:100%;
  padding:28px 12px 22px;
  background:transparent;
  border-radius:0;
  border:none;
  border-top:1px solid var(--ft-line);
  box-shadow:none;
}
.ft-pay span{ opacity:.9; text-align:center; color:var(--ft-muted); }
.ft-pay ul{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:12px 18px;
  padding:0;
  margin:0;
  list-style:none;
}
.ft-pay ul li{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:auto;
  min-width:0;
  padding:0;
  border-radius:0;
  background:transparent;
  border:none;
  box-shadow:none;
}
.ft-pay img{
  height:22px;
  width:auto;
  max-width:100px;
  display:block;
  object-fit:contain;
  filter:grayscale(0.08) opacity(0.92);
  transition:opacity .2s ease, filter .2s ease;
}
.ft-pay ul li:hover img{
  opacity:1;
  filter:none;
}
/* ─────────────────────────────────────────────────────────
   FOOTER LANGUAGE BUTTONS
────────────────────────────────────────────────────────── */
.ft-lang{
  border-top:1px solid var(--ft-line, rgba(255,255,255,.1));
  border-bottom:1px solid var(--ft-line, rgba(255,255,255,.1));
  margin:16px 0;
  padding:16px 0;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
}

.ft-lang-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:10px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.88);
  text-decoration:none;
  font-family:"Antonio", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  text-transform:uppercase;
  letter-spacing:.06em;
  font-size:12px;
  font-weight:600;
  transition:all .2s ease;
}

.ft-lang-btn:hover{
  border-color:rgba(251, 146, 60, 0.65);
  background:rgba(255, 90, 20, 0.12);
  color:#fff;
  transform:translateY(-1px);
}

.ft-lang-btn.is-active{
  background:rgba(212, 175, 55, 0.2);
  border-color:#ea580c;
  color:#ffedd5;
  cursor:default;
  pointer-events:none;
}

.ft-lang-btn .flag-emoji{
  font-size:18px;
  line-height:1;
  display:inline-flex;
  align-items:center;
}

.ft-legal{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:10px 14px;
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid var(--ft-line, rgba(212, 175, 55, 0.16));
  font-size:12px;
  color:var(--ft-muted, rgba(255,255,255,.62));
  font-family:"Antonio", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.ft-legal a{
  color:rgba(245, 230, 190, .88);
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.07em;
  font-weight:700;
  font-family:"Antonio", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:12px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(212, 175, 55, .07);
  border:1px solid rgba(212, 175, 55, .22);
  box-shadow:0 1px 0 rgba(0,0,0,.35) inset;
  transition:
    color .2s ease,
    background .2s ease,
    border-color .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}
.ft-legal a:hover{
  color:#fffbeb;
  background:rgba(212, 175, 55, .16);
  border-color:rgba(251, 191, 36, .48);
  box-shadow:
    0 0 0 1px rgba(251, 191, 36, .12) inset,
    0 6px 18px rgba(0,0,0,.28);
  transform:translateY(-1px);
}

.legal-doc{
  max-width:820px;
  margin:0 auto;
}
.legal-doc h2{
  margin:28px 0 12px;
  font-size:1.25rem;
  font-weight:800;
  color:#1c1917;
}
.legal-doc h2:first-of-type{
  margin-top:8px;
}
.legal-doc p,
.legal-doc li{
  color:#44403c;
  line-height:1.65;
  margin:0 0 12px;
}
.legal-doc ul,
.legal-doc ol{
  margin:0 0 16px;
  padding-left:1.35em;
}
.legal-doc .legal-note{
  margin:20px 0;
  padding:14px 18px;
  border-radius:12px;
  border:1px solid #fed7aa;
  background:#1c1810;
  font-size:14px;
  color:#7c2d12;
}

.ft-bottom{
  border-top:1px solid var(--ft-line);
  margin-top:0;
  padding:18px 12px 6px;
  font-size:11px;
  letter-spacing:.03em;
  line-height:1.55;
  color:rgba(255,255,255,.42);
  display:flex;
  justify-content:center;
  text-align:center;
  font-family:"Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* ─────────────────────────────────────────────────────────
   FOOTER MOBILE RESPONSIVE
────────────────────────────────────────────────────────── */
@media (max-width:768px){
  .ft-head{
    display:grid;
    grid-template-columns:1fr auto;
    grid-template-areas:
      "logo trust"
      "cta cta";
    align-items:center;
    gap:12px 10px;
  }
  .ft-logo{
    grid-area:logo;
    justify-self:start;
  }
  .ft-trust{
    grid-area:trust;
    justify-self:end;
    flex-wrap:nowrap;
    gap:8px 10px;
  }
  .ft-cta-center{
    grid-area:cta;
    width:100%;
    justify-self:center;
    justify-content:center;
  }
  
  .ft-logo img{
    height:40px;
  }
  
  .ft-btn{
    padding:10px 20px;
    font-size:13px;
    max-width:280px;
    width:auto;
  }
  
  .ft-trust img{
    height:28px;
    max-width:108px;
  }
  
  .ft-grid{
    grid-template-columns:repeat(2,1fr);
    gap:16px;
  }
  .ft-page{
    padding:18px 6px 22px;
    gap:8px 10px;
  }
  .ft-page a{
    font-size:11px;
    padding:8px 12px;
  }
}

@media (max-width:520px){
  .ft-wrap{
    padding:20px 12px 24px;
  }
  
  .ft-head{
    gap:14px;
    margin-bottom:14px;
  }
  
  .ft-logo img{
    height:36px;
  }
  
  .ft-btn{
    padding:8px 18px;
    font-size:12px;
    max-width:240px;
  }
  
  .ft-trust{
    gap:6px 8px;
  }
  
  .ft-trust img{
    height:26px;
    max-width:100px;
  }
  
  .ft-grid{
    grid-template-columns:1fr;
    gap:14px;
    padding:14px 0;
  }
  
  .ft-col{
    gap:6px;
  }
  
  .ft-title{
    font-size:14px;
    margin-bottom:8px;
  }
  
  .ft-pay{
    margin:12px 0;
    gap:8px;
  }
  
  .ft-pay ul{
    gap:6px;
  }
  
  .ft-pay img{
    height:16px;
  }
  
  .ft-lang{
    margin:12px 0;
    padding:12px 0;
    gap:8px;
  }
  
  .ft-lang-btn{
    padding:6px 12px;
    font-size:11px;
    gap:6px;
  }
  
  .ft-lang-btn .flag-emoji{
    font-size:16px;
  }
  
  .ft-bottom{
    font-size:12px;
    padding-top:10px;
    margin-top:10px;
  }
}

@media (max-width:390px){
  .ft-wrap{
    padding:18px 10px 20px;
  }
  
  .ft-logo img{
    height:32px;
  }
  
  .ft-btn{
    padding:9px 18px;
    font-size:12px;
  }
  
  .ft-trust img{
    height:22px;
  }
  
  .ft-title{
    font-size:13px;
  }
  
  .ft-pay img{
    height:15px;
  }
  
  .ft-lang{
    margin:10px 0;
    padding:10px 0;
    gap:6px;
  }
  
  .ft-lang-btn{
    padding:5px 10px;
    font-size:10px;
    gap:5px;
  }
  
  .ft-lang-btn .flag-emoji{
    font-size:14px;
  }
  
  .ft-bottom{
    font-size:11px;
    line-height:1.5;
  }
}

@media (min-width:993px) and (max-width:1199px){
  .shell{
    grid-template-columns:minmax(200px, 240px) minmax(0, 1fr);
    gap:16px;
    padding:16px 12px;
  }
  .aside{
    max-width:240px;
    padding:12px 10px;
    border-radius:16px;
  }
  .nav a{
    padding:10px 10px;
    font-size:13px;
    gap:8px;
  }
  .nav-ico,
  .nav-ico svg,
  svg.nav-ico{
    width:16px;
    height:16px;
    flex:0 0 16px;
  }
}

/* Широкие экраны: стабильная колонка меню */
@media (min-width:1200px){
  .shell{
    grid-template-columns:260px minmax(0, 1fr);
    gap:20px;
  }
  .aside{
    max-width:260px;
  }
}

/* На мобилке drawer усиленно прячем «за пределы» */
@media (max-width:992px){
  .drawer{ transform:translateX(-110%); }
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE (СЕТКИ)
────────────────────────────────────────────────────────── */
@media (max-width:1200px){
  .prov-grid{ grid-template-columns:repeat(3,1fr); }
  .medals{ grid-template-columns:repeat(6,1fr); }
  .grid{ grid-template-columns:repeat(3,1fr); }
}
@media (max-width:992px){
  body > header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    padding-top:env(safe-area-inset-top, 0px);
  }
  body{
    padding-top:var(--hdrH, 64px);
  }

  .shell{ grid-template-columns:1fr; }
  .aside{ display:none; }
  .burger{ display:inline-flex; }
  .medals{ grid-template-columns:repeat(4,1fr); }
  .grid{ grid-template-columns:repeat(2,1fr); }

  .offers-trigger{
    margin-left:auto;
  }
}
@media (max-width:520px){
  .head{ gap:8px; }
  .medals{ grid-template-columns:repeat(3,1fr); }

  .head, .shell, .site-footer{
    padding-left:max(12px, env(safe-area-inset-left, 0px));
    padding-right:max(12px, env(safe-area-inset-right, 0px));
  }

  /* синхроним с переменной --framePad (см. выше) */
  .frame{ padding: var(--framePad); }
  .frame:before{ inset:6px; }
}
@media (max-width:390px){
  .medals{ grid-template-columns:repeat(2,1fr); }
  .grid{ grid-template-columns:1fr; }
  .prov-grid{ grid-template-columns:1fr; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE — типографика, main, таблицы, касания (все страницы)
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px){
  main .table-wrapper,
  #facts .table-wrapper,
  #bonuses .table-wrapper,
  #payments .table-wrapper,
  main .legal-doc .table-wrapper{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    overscroll-behavior-x:contain;
    border-radius:12px;
    scrollbar-width:thin;
  }
  .shell{
    padding:14px max(12px, env(safe-area-inset-left, 0px)) 16px max(12px, env(safe-area-inset-right, 0px));
    gap:14px;
  }
  .shell > main{
    padding:12px max(14px, env(safe-area-inset-left, 4px)) 30px max(14px, env(safe-area-inset-right, 4px));
  }
  .frame{
    border-radius:clamp(14px, 3.2vw, 20px);
    padding:clamp(10px, 2.4vw, var(--framePad, 14px));
  }
  .page-title{
    margin-top:2px;
    margin-bottom:clamp(8px, 2vw, 14px);
  }
  main .legal-doc,
  main .section.intro.legal-doc{
    padding-left:max(0px, env(safe-area-inset-left, 0px));
    padding-right:max(0px, env(safe-area-inset-right, 0px));
  }
  .ft-wrap{
    padding-left:max(14px, env(safe-area-inset-left, 0px));
    padding-right:max(14px, env(safe-area-inset-right, 0px));
  }
  .offers-panel__figure{
    max-height:min(50vh, 440px, calc(86dvh - 200px));
  }
}
@media (max-width: 640px){
  .shell > main{
    padding-top:12px;
    padding-bottom:max(28px, env(safe-area-inset-bottom, 0px));
    padding-left:max(10px, env(safe-area-inset-left, 0px));
    padding-right:max(10px, env(safe-area-inset-right, 0px));
    border-radius:12px;
  }
  .page-title{
    font-size:clamp(19px, 5.2vw, 24px);
    line-height:1.2;
    padding-left:4px;
    padding-right:4px;
  }
  .section{
    margin-top:22px;
    margin-bottom:16px;
  }
  .shell > main .section h2,
  .shell > main .section h3{
    font-size:clamp(1.05rem, 4vw, 1.3rem);
    line-height:1.28;
  }
  .shell > main p,
  .shell > main li,
  main .legal-doc p,
  main .legal-doc li{
    font-size:clamp(15px, 3.6vw, 16px);
    line-height:1.62;
  }
  body.page-home .section.intro#casino p{
    font-size:clamp(14px, 3.25vw, 15px);
    line-height:1.55;
  }
  .legal-doc h2{
    font-size:clamp(1.08rem, 4vw, 1.22rem);
  }
  .shell > main .pulse-btn,
  .shell > main .hero-cta,
  .shell > main .vmore-btn,
  .site-footer .ft-btn{
    min-height:48px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding-left:22px;
    padding-right:22px;
  }
  .shell > main .cta-center .pulse-btn{
    width:100%;
    max-width:min(340px, 100%);
  }
  body.page-home #app-teaser .app-teaser__cta .app-teaser__btn{
    width:100%;
    max-width:min(340px, 100%);
  }
  body.page-home #app-teaser .app-teaser__cta{
    flex-direction:column;
    align-items:center;
  }
  /* Чипы: компактная полоса, без min-height 44px (оно давало «коробки» и съезжало содержимое) */
  .chips{
    padding:8px max(8px, env(safe-area-inset-left, 0px)) 8px max(8px, env(safe-area-inset-right, 0px));
    gap:8px;
    align-items:center;
  }
  .chips .chip{
    min-height:0;
    height:36px;
    max-height:36px;
    padding:0 12px;
    font-size:10px;
    letter-spacing:.05em;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    box-sizing:border-box;
    gap:6px;
  }
  .drawer{
    padding-bottom:env(safe-area-inset-bottom, 0px);
    width:min(86vw, 320px);
  }
  .drawer .nav a{
    padding-top:14px;
    padding-bottom:14px;
    min-height:48px;
  }
  .dhead{
    padding-left:max(12px, env(safe-area-inset-left, 0px));
    padding-right:max(12px, env(safe-area-inset-right, 0px));
  }
  .prov-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:12px;
  }
}
/* ─────────────────────────────────────────────────────────
   (ОПЦИОНАЛЬНО) ASIDE FIXED — НА БУДУЩЕЕ
────────────────────────────────────────────────────────── */
.aside--fixed{
  position:fixed !important;
  top:var(--asideTop,74px);
  left:var(--asideLeft,14px);
  width:var(--asideWidth,260px);
  height:var(--asideHeight,calc(100vh - (var(--asideTop,74px) + 14px)));
  max-height:calc(100vh - (var(--asideTop,74px) + 14px));
  overflow:auto;
  -webkit-overflow-scrolling:touch;
  z-index:90;
  transform:translateY(var(--asideShift,0px));
}

/* ─────────────────────────────────────────────────────────
   ПАК АНИМАЦИЙ/ЭФФЕКТОВ ДЛЯ CTA (без дублей)
   ВАЖНО: не ломаем transform у кнопок в хедере, поэтому
   применяем эффекты только там, где это уместно.
────────────────────────────────────────────────────────── */
:where(.pulse-btn, .hero-cta, .vmore-btn, .ft-btn, .btn--login, .btn--reg){
  position:relative;
  display:inline-block;
  transition: transform .2s ease, box-shadow .3s ease, filter .3s ease, background .3s ease;
  will-change: transform, box-shadow;
  transform: translateZ(0);
}

/* Hover: подъём и свечение (тема MX — изумруд, без розового) */
.pulse-btn:hover{
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 2px 0 #1a1408,
    0 8px 22px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(180, 140, 45, 0.18);
  filter: brightness(1.04) saturate(1.03);
}

.vmore-btn:hover{
  transform: translateY(-2px) scale(1.05);
  box-shadow:
    0 2px 0 #7c2d12,
    0 10px 28px rgba(212, 175, 55, 0.4);
  filter: brightness(1.06);
}
.ft-btn:hover{
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.32) inset,
    0 3px 0 #1f1706,
    0 14px 34px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(212, 175, 55, 0.25);
  filter: brightness(1.06) saturate(1.05);
}

/* Для .btn--reg — то же золотое свечение, что у login */
.btn--reg:hover,
.btn--reg:focus-visible{
  box-shadow: 0 8px 22px rgba(199, 155, 40, 0.38);
  filter: saturate(1.06);
}

/* Active: эффект нажатия */
:where(.pulse-btn, .hero-cta, .vmore-btn, .ft-btn, .btn--login, .btn--reg):active{
  transform: translateY(0) scale(0.97);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
  filter: saturate(1);
}

/* Фокус-обводка */
:where(.pulse-btn, .hero-cta, .vmore-btn, .btn--login, .btn--reg):focus-visible{
  outline:0;
  box-shadow:
    0 0 0 2px #f8fafc,
    0 0 0 5px rgba(18, 160, 110, 0.45),
    0 8px 24px rgba(0, 0, 0, 0.35);
}
.ft-btn:focus-visible{
  outline:0;
  box-shadow:
    0 0 0 2px rgba(255, 250, 240, 0.95),
    0 0 0 5px rgba(200, 164, 74, 0.42),
    0 8px 22px rgba(0, 0, 0, 0.4);
}

/* Мягкая пульсация по классу .is-pulsing */
@keyframes pulse-glow2{
  0%   { box-shadow: 0 0 0 0 rgba(94, 233, 176, .35) }
  70%  { box-shadow: 0 0 0 14px rgba(94, 233, 176, 0) }
  100% { box-shadow: 0 0 0 0 rgba(94, 233, 176, 0) }
}
@keyframes pulse-glow-ft-gold{
  0%   { box-shadow: 0 0 0 0 rgba(212, 175, 86, .35) }
  70%  { box-shadow: 0 0 0 12px rgba(212, 175, 86, 0) }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 86, 0) }
}
@keyframes pulse-glow-ft{
  0%   { box-shadow: 0 0 0 0 rgba(18, 160, 110, .42) }
  70%  { box-shadow: 0 0 0 14px rgba(18, 160, 110, 0) }
  100% { box-shadow: 0 0 0 0 rgba(18, 160, 110, 0) }
}
:where(.pulse-btn, .hero-cta, .vmore-btn).is-pulsing{
  animation: pulse-glow2 2s infinite;
}
.ft-btn.is-pulsing{
  animation: pulse-glow-ft-gold 2s infinite;
}

/* Лёгкий «ripple» без JS */
:where(.pulse-btn, .hero-cta, .vmore-btn, .ft-btn, .btn--login, .btn--reg)::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: radial-gradient(160px 160px at 50% 50%, rgba(255,255,255,0), transparent 60%);
  opacity:0;
  transition: opacity .35s ease;
}
:where(.pulse-btn, .hero-cta, .vmore-btn, .ft-btn, .btn--login, .btn--reg):hover::after{
  opacity:1;
}

/* Уважение prefers-reduced-motion */
@media (prefers-reduced-motion: reduce){
  :where(.pulse-btn, .hero-cta, .vmore-btn, .ft-btn, .btn--login, .btn--reg){
    transition:none;
    animation:none;
  }
  :where(.pulse-btn, .hero-cta, .vmore-btn, .ft-btn, .btn--login, .btn--reg):hover{
    transform:none;
    box-shadow:none;
    filter:none;
  }
}

/* Disabled-состояние */
:where(.pulse-btn, .hero-cta, .vmore-btn, .ft-btn, .btn--login, .btn--reg)[disabled]{
  opacity:.6;
  pointer-events:none;
  filter: grayscale(.2);
  box-shadow:none !important;
  transform:none !important;
}

/* ===== Language button (bottom of menus) ===== */
.lang-btn{
  width:100%;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 12px;
  border-radius:14px;
  background:
    radial-gradient(ellipse at center top, rgba(251, 146, 60, 0.35) 0%, transparent 55%),
    linear-gradient(180deg, rgba(194, 65, 12, 0.45) 0%, rgba(28, 25, 23, 0.55) 100%);
  border:1.5px solid rgba(253, 186, 116, 0.55);
  color:#ffffff;
  cursor:pointer;
  font-family:"Antonio", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  text-transform:uppercase;
  letter-spacing:.06em;
  position:relative;
  box-shadow:
    0 0 10px rgba(212, 175, 55, 0.35),
    0 4px 12px rgba(0,0,0,.35);
  transition:all .3s ease;
}
.lang-btn:hover{ 
  border-color:rgba(254, 215, 170, 0.9);
  background:
    radial-gradient(ellipse at center top, rgba(254, 215, 170, 0.4) 0%, transparent 55%),
    linear-gradient(180deg, rgba(212, 175, 55, 0.5) 0%, rgba(28, 25, 23, 0.6) 100%);
  box-shadow:
    0 0 14px rgba(212, 175, 55, 0.45),
    0 6px 16px rgba(0,0,0,.45);
  transform: translateY(-1px);
}

.lang-flag{ 
  width:20px; 
  height:20px; 
  object-fit:contain; 
  border-radius:3px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.4));
}

.lang-label-main{
  font-weight:800;
  font-size:14px;
  letter-spacing:.08em;
  color:var(--text-heading);
  text-shadow:0 0 8px rgba(253, 186, 116, 0.5);
}

.lang-label-sub{
  font-weight:500;
  font-size:11px;
  letter-spacing:.04em;
  color:var(--ink-muted);
  opacity:.95;
  margin-left:auto;
}

/* ===== Language modal ===== */
.lang-modal{
  position:fixed; inset:0;
  z-index:999;
  display:none;
}
.lang-modal.is-open{ display:block; }

.lang-backdrop{
  position:absolute; inset:0;
  background:rgba(0,0,0,.55);
  backdrop-filter: blur(2px);
}

.lang-panel{
  position:absolute;
  left:50%; top:50%;
  transform:translate(-50%,-50%);
  width:min(520px, 92vw);
  max-height:min(78vh, 720px);
  overflow:auto;

  background:linear-gradient(180deg,#2b2b2b,#171717);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  box-shadow:0 20px 60px rgba(0,0,0,.6);
}

.lang-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.lang-title{
  color:var(--text-heading);
  font-family:"Antonio", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:18px;
}
.lang-x{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  color:var(--text-heading);
  border-radius:10px;
  padding:8px 10px;
  cursor:pointer;
}

.lang-list{ padding:14px; display:flex; flex-direction:column; gap:10px; }

.lang-item{
  width:100%;
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 14px;
  border-radius:12px;

  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  color:var(--ink-bright);
  cursor:pointer;
  text-decoration:none;

  font-family:"Antonio", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  text-transform:uppercase;
  letter-spacing:.06em;
  transition: all 0.2s ease;
}
.lang-item img{ width:18px; height:18px; object-fit:contain; border-radius:3px; }
.lang-item:hover{ border-color:rgba(212, 175, 55, 0.55); background:rgba(212, 175, 55, 0.12); }

.lang-item.is-active,
.lang-item.is-current,
.lang-item[disabled]{
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(28, 25, 23, 0.45));
  border-color: rgba(253, 186, 116, 0.5);
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.3) inset, 0 2px 10px rgba(28, 25, 23, 0.35);
  cursor: default !important;
  pointer-events: none;
  text-decoration: none;
}
.lang-item.is-active:hover,
.lang-item.is-current:hover,
.lang-item[disabled]:hover{
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(28, 25, 23, 0.45));
  border-color: rgba(253, 186, 116, 0.5);
}

/* ─────────────────────────────────────────────────────────
   LOGIN SECTION — texto + captura a la derecha (compacta)
────────────────────────────────────────────────────────── */
.login-section{
  overflow:hidden;
}
#login .login-shot{
  position:relative;
  float:right !important;
  width:min(300px, 38vw);
  max-width:100%;
  margin:4px 0 1.1rem 1.4rem;
  display:block;
  line-height:0;
  padding:3px;
  border-radius:22px;
  overflow:hidden;
  text-decoration:none !important;
  transition:transform .28s ease, box-shadow .28s ease, filter .28s ease;
  shape-outside:inset(0 round 22px);
  isolation:isolate;
  background:linear-gradient(
    145deg,
    rgba(253, 224, 171, 0.75) 0%,
    rgba(180, 130, 40, 0.55) 28%,
    rgba(212, 175, 55, 0.65) 52%,
    rgba(120, 90, 28, 0.7) 100%
  );
  box-shadow:
    0 0 0 1px rgba(0,0,0,.55) inset,
    0 14px 42px rgba(0,0,0,.5),
    0 0 48px rgba(212, 175, 55, 0.12);
}
#login .login-shot:hover{
  transform:translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(250, 220, 140, 0.25) inset,
    0 20px 50px rgba(0,0,0,.55),
    0 0 64px rgba(232, 194, 86, 0.18);
  filter:brightness(1.02);
}
#login .login-shot__canvas{
  display:block;
  position:relative;
  border-radius:19px;
  overflow:hidden;
  background:#030303;
  box-shadow:inset 0 0 0 1px rgba(212, 175, 55, 0.18);
}
#login .login-shot img{
  width:100%;
  height:auto;
  display:block;
  margin:0;
  vertical-align:middle;
  border-radius:0;
  cursor:pointer;
  transition:filter .28s ease, transform .28s ease;
  mix-blend-mode:normal;
  filter:brightness(1.1) contrast(1.12) saturate(1.12);
  box-shadow:none;
  -webkit-clip-path:inset(5.5% 4.5% 5.5% 4.5% round clamp(14px, 2.6vw, 20px));
  clip-path:inset(5.5% 4.5% 5.5% 4.5% round clamp(14px, 2.6vw, 20px));
}
#login .login-shot:hover img{
  filter:brightness(1.16) contrast(1.1) saturate(1.14);
  transform:scale(1.01);
}
@supports not (clip-path: inset(1% round 6px)){
  #login .login-shot img{
    border-radius:clamp(14px, 2.8vw, 20px);
    -webkit-clip-path:none;
    clip-path:none;
    filter:brightness(1.12) contrast(1.1) saturate(1.12);
  }
}

#login p,
#login h3,
#login .login-steps{
  max-width:none;
}
#login .login-steps{
  margin:10px 0 0;
  padding-left:1.25rem;
  line-height:1.58;
}
#login .login-steps li{
  margin:0 0 8px;
}
#login .login-note{
  margin:14px 0 0;
  padding:12px 14px;
  border-radius:10px;
  font-size:14px;
  line-height:1.5;
  background:rgba(20, 18, 12, 0.72);
  border:1px solid rgba(212, 175, 55, 0.22);
}
#login .login-cta{
  clear:both;
  margin-top:22px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px 14px;
}
@media (max-width:480px){
  #login .login-shot{
    float:none !important;
    width:100%;
    max-width:min(320px, 94vw);
    margin:0 auto 1.15rem;
  }
}

/* ─────────────────────────────────────────────────────────
   APP SECTION — mismo esquema float + wrap que #login
────────────────────────────────────────────────────────── */
#app-access .app-shot{
  float:right;
  width:360px;
  max-width:min(54%, 100%);
  margin:0 0 1.25rem 1.5rem;
  display:block;
  line-height:0;
}
#app-access .app-shot img{
  width:100%;
  height:auto;
  border-radius:10px;
  display:block;
  vertical-align:middle;
  transition:transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  cursor:pointer;
}
#app-access .app-cta{
  clear:both;
  margin-top:20px;
}
@media (max-width:640px){
  #app-access .app-shot{
    float:none;
    width:100%;
    max-width:336px;
    margin:0 auto 1.25rem;
  }
}
#app-access .app-shot:hover img{
  transform:scale(1.05);
  box-shadow:
    0 8px 24px rgba(28, 25, 23, 0.12),
    0 0 24px rgba(212, 175, 55, 0.2);
  filter:brightness(1.04) drop-shadow(0 0 8px rgba(212, 175, 55, 0.25));
}

/* Dedicated App page image wrap */
.app-shot--float{
  float:right;
  width:360px;
  max-width:min(54%, 100%);
  margin:0 0 1.25rem 1.5rem;
  display:block;
  line-height:0;
}
.app-shot--float img{
  width:100%;
  height:auto;
  border-radius:10px;
  display:block;
  vertical-align:middle;
}
.app-guide .app-cta{
  clear:both;
}
@media (max-width:640px){
  .app-shot--float{
    float:none;
    width:100%;
    max-width:336px;
    margin:0 auto 1.25rem;
  }
}

/* ─────────────────────────────────────────────────────────
   BANNER PROMO IMAGE HOVER EFFECTS (glow with slight zoom)
────────────────────────────────────────────────────────── */
.promo-img,
img[src*="bannerpromo/"] {
  border-radius: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.promo-banner-figure{
  max-width:min(1024px, 100%);
  margin-left:auto;
  margin-right:auto;
}
.promo-banner-figure .promo-img{
  width:100%;
  height:auto;
  display:block;
}

a:hover .promo-img,
a:hover img[src*="bannerpromo/"] {
  border-radius: 18px;
  transform: scale(1.005);
  box-shadow: 
    0 8px 24px rgba(28, 25, 23, 0.1),
    0 0 28px rgba(255, 79, 0, 0.18);
  filter: brightness(1.03) drop-shadow(0 0 8px rgba(0, 195, 142, 0.15));
}

/* Thème clair : texte principal dans main ; bannière garde overlays lisibles */
body{
  color:var(--main-text,#44403c) !important;
}
header .head{
  color:#1c1917 !important;
}
.drawer,
.drawer .nav a,
.aside .nav a{
  color:#ffffff !important;
}
.drawer .dclose{
  color:#ffffff !important;
}

:is(.shell > main, main){
  color:#e2e6f0 !important;
}

:is(.shell > main, main) :is(
  .section,
  p, li, td, dt, dd,
  figcaption, blockquote,
  .intro, address, label,
  strong, em, small
){
  color:#d1d6e6 !important;
}

:is(.shell > main, main) :is(h1, h2, h3, h4, h5, h6){
  color:#f8fafc !important;
}

:is(.shell > main, main) .page-title{
  color:#faf6ea !important;
}

/* Lignes promo sur le visuel bannière — restent claires */
:is(.shell > main, main) :is(
  .hero-line, .hero-line--intro, .hero-line--big, .hero-line--mid,
  .hero-badge
){
  color:#ffffff !important;
}

:is(.shell > main, main) .vendor{
  color:rgba(28, 25, 23, 0.65) !important;
}

/* Cartes jeu : bandeau info */
:is(.shell > main, main) a.card .info,
:is(.shell > main, main) a.card .info :is(p, .title, .vendor, span){
  color:#f1f5f9 !important;
  -webkit-text-fill-color:#f1f5f9 !important;
}
:is(.shell > main, main) a.card .info .vendor{
  color:rgba(226,232,240,.72) !important;
  -webkit-text-fill-color:rgba(226,232,240,.72) !important;
}

:is(.shell > main, main) .section a:not(.pulse-btn):not(.vmore-btn):not(.card):not(.chip):not(.prov):not(.banner-link):not(.hero-cta):not(.play){
  color:#e8c256 !important;
  text-decoration:underline;
  text-underline-offset:2px;
}
:is(.shell > main, main) .section a:not(.pulse-btn):not(.vmore-btn):not(.card):not(.chip):not(.prov):not(.banner-link):not(.hero-cta):not(.play):hover{
  color:#fcd34d !important;
}

/* Ссылки с картинками (login, promo): WebKit */
:is(.shell > main, main) .section a:has(img),
:is(.shell > main, main) .section a:has(picture){
  -webkit-text-fill-color:unset;
  text-decoration:none;
}
:is(.shell > main, main) .section a:has(img) img,
:is(.shell > main, main) .section a:has(picture) img,
:is(.shell > main, main) .section a:has(picture) picture{
  opacity:1 !important;
  visibility:visible !important;
  -webkit-text-fill-color:unset;
}

:is(.shell > main, main) :is(.pulse-btn, .hero-cta, .play){
  color:#ffffff !important;
  -webkit-text-fill-color:#ffffff !important;
  text-decoration:none;
}
:is(.shell > main, main) .vmore-btn{
  color:#ffffff !important;
  -webkit-text-fill-color:#ffffff !important;
  text-decoration:none;
}
:is(.shell > main, main) :is(.chip, .chip-txt){
  color:#f1f5f9 !important;
  -webkit-text-fill-color:#f1f5f9 !important;
  text-decoration:none;
}
:is(.shell > main, main) .chip-ico{
  color:#e8c565 !important;
}

/* Чипы: якорь каскада */
.shell .chips a.chip,
.shell .chips a.chip:link,
.shell .chips a.chip:visited,
.shell .chips a.chip:hover,
.shell .chips a.chip:active,
.shell .chips a.chip:focus-visible{
  color:#f1f5f9 !important;
  -webkit-text-fill-color:#f1f5f9 !important;
}
.shell .chips a.chip .chip-txt,
main .chips a.chip span.chip-txt{
  color:#f1f5f9 !important;
  -webkit-text-fill-color:#f1f5f9 !important;
  opacity:1 !important;
  visibility:visible !important;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif !important;
  font-weight:600 !important;
}

/* ═══════════════════════════════════════════════════════════
   3REYES Casino — tema negro y oro
   Fondo carbón, acentos dorados, contraste alto.
═══════════════════════════════════════════════════════════ */
:root{
  --page-bg:#080808;
  --main-bg:#12100a;
  --main-text:#e2e6f0;
  --main-heading:#f8fafc;
  --main-muted:#a8b0c4;
  --sidebar-blue-top:#6e5310;
  --sidebar-blue-bot:#050403;
  --sidebar-pill:rgba(255,255,255,.1);
  --sidebar-pill-hover:rgba(255,255,255,.17);
  --ink:#e8eaef;
  --ink-bright:#f8fafc;
  --ink-muted:#a8b0c4;
  --line:rgba(196, 160, 60,.25);
  --primary:#a16207;
  --primary-mid:#ca8a04;
  --primary-dark:#5c4508;
  --primary-glow:rgba(212, 175, 55, 0.28);
  --accent-teal:#a16207;
  --accent-teal-dark:#6e5310;
  --text-heading:#f8fafc;
}

html{
  color-scheme:dark !important;
  background:#080808 !important;
}
body:before{
  background:
    radial-gradient(880px 520px at 8% 0%, rgba(196, 160, 60, 0.12), transparent 52%),
    radial-gradient(720px 480px at 96% 12%, rgba(212, 160, 40, 0.1), transparent 48%),
    linear-gradient(180deg, #14110a 0%, #0c0a08 38%, #030303 100%) !important;
}
html,body{
  color:#e2e6f0 !important;
}

header .head{
  color:#f1f5f9 !important;
}
header .head-nav__link{
  color:rgba(241,245,249,.95) !important;
  -webkit-text-fill-color:rgba(241,245,249,.95) !important;
}
header .head-nav__link:hover{
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
}
header .head-nav__link--active{
  border-bottom-color:#eab308 !important;
}

body > header{
  background:linear-gradient(180deg, #12100c 0%, #080808 100%) !important;
  border-bottom:1px solid rgba(196, 160, 60,.28) !important;
  backdrop-filter:saturate(125%) blur(10px) !important;
}
body > header.scrolled{
  box-shadow:0 6px 24px rgba(0,0,0,.38) !important;
  border-bottom-color:rgba(212, 175, 55, 0.28) !important;
}
.burger{
  background:#14120e !important;
  border:1px solid rgba(255,255,255,.14) !important;
  color:#f8fafc !important;
}
.logo img{
  height:42px;
  filter:drop-shadow(0 2px 6px rgba(0,0,0,.45));
}
.ft-logo img{
  height:46px;
  filter:drop-shadow(0 2px 8px rgba(0,0,0,.4));
}
@media (max-width:520px){ .logo img{ height:28px; } }
@media (max-width:390px){ .logo img{ height:22px; } }

.head .head-search-ico{
  background:#151918 !important;
  border:1px solid rgba(255,255,255,.12) !important;
  color:#e7ece9 !important;
  box-shadow:none !important;
}
.head .head-search-ico:hover{
  background:#1a221e !important;
  border-color:rgba(212, 175, 55,.45) !important;
}
.head .head-search-ico:focus-visible{
  outline:2px solid var(--mx-green-bright,#d4a012) !important;
  outline-offset:2px;
}
.head .head-search-ico svg path{
  stroke:currentColor !important;
}

.head .offers-trigger{
  background:#14120e !important;
  border:1px solid rgba(255,255,255,.14) !important;
  color:#e8eaef !important;
}
.head .offers-trigger:hover{
  background:#1a1612 !important;
  border-color:rgba(196, 160, 60,.45) !important;
}
.head .offers-trigger:focus-visible{
  outline:2px solid #a16207 !important;
  outline-offset:2px;
}
.head .offers-trigger__ico{
  filter:brightness(0) invert(1) drop-shadow(0 1px 2px rgba(0,0,0,.25));
}

.head .btn--login{
  background:linear-gradient(180deg, #ca8a04 0%, #6e5310 48%, #5c4508 100%) !important;
  border:1px solid #4a3a0c !important;
  box-shadow:0 2px 0 #2e2206, 0 4px 16px rgba(196, 160, 60, 0.42) !important;
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
}
.head .btn--reg{
  background:linear-gradient(180deg, #ca8a04 0%, #6e5310 48%, #5c4508 100%) !important;
  border:1px solid #4a3a0c !important;
  box-shadow:0 2px 0 #2e2206, 0 4px 16px rgba(196, 160, 60, 0.42) !important;
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
  animation:none !important;
}
.head .btn--reg::before{ opacity:.4 !important; }
@media (hover:hover){
  .head .btn--reg:hover{
    filter:brightness(1.06) !important;
    box-shadow:0 3px 0 #2e2206, 0 8px 22px rgba(196, 160, 60, 0.42) !important;
  }
  .head .btn--login:hover{
    filter:brightness(1.06);
    box-shadow:0 3px 0 #2e2206, 0 8px 22px rgba(196, 160, 60,.42) !important;
  }
}

.aside{
  background:linear-gradient(180deg, #5c4510 0%, #2a1f08 42%, #050403 100%) !important;
  border:1px solid rgba(255,255,255,.2) !important;
  box-shadow:0 12px 40px rgba(0,0,0,.45), 0 0 0 1px rgba(212, 175, 55, 0.14) inset !important;
}
.drawer{
  background:linear-gradient(180deg, #5c4510 0%, #3a2a08 55%, #050403 100%) !important;
  border-right:1px solid rgba(255,255,255,.18) !important;
  box-shadow:0 20px 60px rgba(0,0,0,.65) !important;
}
.drawer .dhead{
  color:#fff !important;
  border-bottom:1px solid rgba(255,255,255,.2) !important;
}
.dclose{
  background:rgba(12, 10, 6, 0.92) !important;
  border:1px solid rgba(212, 175, 55, 0.45) !important;
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
}
.dclose:hover{
  background:rgba(18, 14, 8, 0.96) !important;
  border-color:rgba(250, 220, 140, 0.6) !important;
}

.aside .nav a,
.drawer .nav a{
  background:rgba(255,255,255,.1) !important;
  border:1px solid rgba(255,255,255,.16) !important;
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
  width:100%;
  min-width:0;
  box-sizing:border-box;
}
.aside .nav a:hover,
.drawer .nav a:hover{
  background:rgba(255,255,255,.17) !important;
  border-color:rgba(255,255,255,.26) !important;
}
.aside .nav a.is-active,
.drawer .nav a.is-active{
  background:
    linear-gradient(90deg, rgba(212, 175, 55, 0.18) 0, rgba(212, 175, 55, 0.18) 2px, transparent 2px),
    rgba(255,255,255,.14) !important;
  border:1px solid rgba(255,255,255,.24) !important;
  box-shadow:none !important;
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
}
.aside .nav a.is-active::before,
.drawer .nav a.is-active::before{
  display:none !important;
}
.aside .nav a.is-active svg.nav-ico,
.drawer .nav a.is-active svg.nav-ico{
  filter:drop-shadow(0 0 3px rgba(255,255,255,.22)) !important;
}
.aside .nav a.is-active img.nav-ico,
.drawer .nav a.is-active img.nav-ico{
  filter:brightness(0) invert(1) drop-shadow(0 0 4px rgba(255,255,255,.22)) !important;
  opacity:1 !important;
}
.aside .nav a:hover svg.nav-ico,
.drawer .nav a:hover svg.nav-ico{
  filter:drop-shadow(0 1px 2px rgba(0,0,0,.25)) !important;
  opacity:1 !important;
}
.aside .nav a:hover img.nav-ico,
.drawer .nav a:hover img.nav-ico{
  filter:brightness(0) invert(1) drop-shadow(0 1px 2px rgba(0,0,0,.25)) drop-shadow(0 0 5px rgba(255,255,255,.25)) !important;
  opacity:1 !important;
}

.sep{
  border-top-color:rgba(255,255,255,.18) !important;
}

.shell > main{
  background:linear-gradient(180deg, #151b18 0%, #101412 50%, #0c100e 100%) !important;
  border:1px solid rgba(212, 175, 55, 0.22) !important;
  box-shadow:
    0 12px 40px rgba(0,0,0,.48),
    inset 0 1px 0 rgba(255,255,255,.04) !important;
}

.page-title{
  color:#faf6ea !important;
  font-weight:800;
  letter-spacing:.02em;
  text-shadow:0 0 24px rgba(212, 175, 55, 0.25);
}
:is(.shell > main, main) .page-title{
  color:#faf6ea !important;
}

.frame{
  background:#121816 !important;
  border:1px solid rgba(255,255,255,.1) !important;
  box-shadow:0 8px 28px rgba(0,0,0,.4) !important;
}
.frame:before{
  border-color:rgba(212, 175, 55,.22) !important;
}

.section{
  color:#d1d6e6 !important;
}
.shell > main .section h2,
.shell > main .section h3{
  color:#f8fafc !important;
}
.intro p{
  color:#cbd5e1 !important;
}
body.page-home .section.intro#casino p{
  font-size:0.94rem;
  line-height:1.55;
}
.ft-page a{
  color:rgba(245, 230, 190, .9) !important;
  background:rgba(212, 175, 55, .08) !important;
  border:1px solid rgba(212, 175, 55, .24) !important;
  text-decoration:none !important;
}
.ft-page a:hover{
  color:#fffbeb !important;
  background:rgba(212, 175, 55, .18) !important;
  border-color:rgba(251, 191, 36, .5) !important;
}

.pulse-btn{
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 55%),
    linear-gradient(165deg, #9a7612 0%, #6b5210 44%, #352a08 100%) !important;
  border:1px solid rgba(0, 0, 0, 0.38) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 -1px 0 rgba(0, 0, 0, 0.22) inset,
    0 2px 0 #141008,
    0 5px 16px rgba(0, 0, 0, 0.42),
    0 0 12px rgba(140, 110, 30, 0.12) !important;
  animation:none !important;
}

.hero-cta{
  background:linear-gradient(180deg, #a38414 0%, #6b5210 50%, #352a08 100%) !important;
  border:1px solid rgba(0, 0, 0, 0.38) !important;
  box-shadow:0 2px 0 #141008, 0 5px 16px rgba(0, 0, 0, 0.38), 0 0 14px rgba(120, 90, 20, 0.12) !important;
}

.vmore-btn{
  background:linear-gradient(180deg, #946c10 0%, #6b4510 48%, #3d2208 100%) !important;
  border:1px solid rgba(0, 0, 0, 0.4) !important;
  box-shadow:0 2px 0 #1a1006, 0 5px 16px rgba(0, 0, 0, 0.36), 0 0 12px rgba(100, 75, 18, 0.12) !important;
}

.chip{
  background:rgba(30,34,48,.9) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  color:#f1f5f9 !important;
}
.chip-ico{ color:#e8c256 !important; }
.chip-txt,
.shell .chips a.chip,
.shell .chips a.chip:link,
.shell .chips a.chip:visited,
.shell .chips a.chip:hover,
.shell .chips a.chip:active,
.shell .chips a.chip:focus-visible,
.shell .chips a.chip .chip-txt,
main .chips a.chip span.chip-txt{
  color:#f1f5f9 !important;
  -webkit-text-fill-color:#f1f5f9 !important;
}

/* Contenedor de chips: sin fondo claro (alineado al tema oscuro) */
.shell .chips,
main .chips{
  background:linear-gradient(180deg, #141918 0%, #0e1210 100%) !important;
  border:1px solid rgba(255,255,255,.1) !important;
  box-shadow:
    0 8px 28px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.05) !important;
}
@media (hover:hover){
  main .chips a.chip:hover,
  .shell .chips a.chip:hover{
    background:rgba(38,44,60,.98) !important;
    border-color:rgba(250, 220, 140,.42) !important;
    box-shadow:
      0 0 0 1px rgba(250, 220, 140,.12) inset,
      0 6px 22px rgba(0,0,0,.38) !important;
    color:#fff !important;
    -webkit-text-fill-color:#fff !important;
  }
}

.site-footer{
  margin-top:40px;
  background:#000000 !important;
  border-top:1px solid rgba(255,255,255,.08) !important;
  box-shadow:0 -12px 48px rgba(0,0,0,.55) !important;
}
.site-footer a{ color:rgba(255,255,255,.9) !important; }
.ft-wrap{ color:rgba(255,255,255,.55) !important; }
.ft-title{ color:#ffffff !important; }
.ft-grid{
  border-top:none !important;
  border-bottom:none !important;
}
.ft-pay{
  background:transparent !important;
  border:none !important;
  border-top:1px solid rgba(255,255,255,.08) !important;
  box-shadow:none !important;
}
.ft-bottom{
  border-top:1px solid rgba(255,255,255,.08) !important;
  color:rgba(255,255,255,.42) !important;
}
.ft-legal{
  border-top-color:rgba(212, 175, 55, 0.16) !important;
}
.ft-legal a{
  color:rgba(245, 230, 190, .9) !important;
  border:1px solid rgba(212, 175, 55, .24) !important;
  background:rgba(212, 175, 55, .08) !important;
  border-bottom:none !important;
  text-decoration:none !important;
  box-shadow:0 1px 0 rgba(0,0,0,.35) inset !important;
}
.ft-legal a:hover{
  color:#fffbeb !important;
  background:rgba(212, 175, 55, .18) !important;
  border-color:rgba(251, 191, 36, .5) !important;
  border-bottom:none !important;
  text-decoration:none !important;
  box-shadow:
    0 0 0 1px rgba(251, 191, 36, .12) inset,
    0 6px 18px rgba(0,0,0,.28) !important;
}
.site-footer .ft-btn{
  padding:13px 32px !important;
  font-size:clamp(14px, 1.9vw, 17px) !important;
  font-weight:800 !important;
  letter-spacing:.14em !important;
  line-height:1.25 !important;
  max-width:min(100%, 380px) !important;
  word-break:break-word !important;
  white-space:normal !important;
  text-align:center !important;
  border-radius:10px !important;
  font-family:"Montserrat", system-ui, sans-serif !important;
  background:linear-gradient(180deg, #fff2b0 0%, #e8c256 38%, #a67c1a 72%, #4a3708 100%) !important;
  border:1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 -1px 0 rgba(0, 0, 0, 0.2) inset,
    0 3px 0 #1f1706,
    0 10px 28px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(0, 0, 0, 0.35) !important;
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
  text-shadow:0 1px 2px rgba(0, 0, 0, 0.45) !important;
}
.site-footer .ft-btn:hover{
  filter:brightness(1.06) saturate(1.05);
  transform:translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.32) inset,
    0 3px 0 #1f1706,
    0 14px 34px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(212, 175, 55, 0.25) !important;
}
.site-footer .ft-btn.pulse{
  animation:none !important;
}
.prov{
  background:rgba(30,34,48,.95) !important;
  border:1px solid rgba(255,255,255,.1) !important;
  color:#e8eaef !important;
}
.prov-name{ color:#fcd34d !important; }
.prov-media{
  background:#12100c !important;
  border-color:rgba(255,255,255,.08) !important;
}

.table-wrapper table{
  background:#12100c !important;
  border:1px solid rgba(196, 160, 60,.25) !important;
  color:#e2e6f0 !important;
}
.table-wrapper td,
.table-wrapper th{
  border-color:rgba(255,255,255,.1) !important;
  color:#e2e6f0 !important;
}

/* Tablas: verde oscuro plano + texto blanco (sin degradado) */
#facts .table-wrapper,
#bonuses .table-wrapper,
#payments .table-wrapper,
main .legal-doc .table-wrapper{
  background:#12100a !important;
  border:1px solid rgba(255,255,255,.18) !important;
  border-radius:16px !important;
  box-shadow:0 8px 28px rgba(0,0,0,.4) !important;
  padding:0 !important;
}
#facts .table-wrapper table,
#bonuses .table-wrapper table,
#payments .table-wrapper table,
main .legal-doc .table-wrapper table{
  background:transparent !important;
  border:none !important;
  border-radius:0 !important;
  overflow:hidden !important;
}
#facts .table-wrapper tbody tr,
#bonuses .table-wrapper tbody tr,
#payments .table-wrapper tbody tr,
main .legal-doc .table-wrapper tbody tr{
  background:transparent !important;
}
#facts .table-wrapper :is(td,th),
#bonuses .table-wrapper td,
#payments .table-wrapper :is(td,th),
main .legal-doc .table-wrapper td,
main .legal-doc .table-wrapper th{
  background:transparent !important;
  border:0 !important;
  border-bottom:1px solid rgba(255,255,255,.12) !important;
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
  font-size:15px !important;
  line-height:1.55 !important;
  padding:13px 16px !important;
  vertical-align:top !important;
  text-transform:none !important;
  letter-spacing:normal !important;
}
#facts .table-wrapper :is(td,th):first-child,
#bonuses .table-wrapper td:first-child,
#payments .table-wrapper :is(td,th):first-child,
main .legal-doc .table-wrapper th:first-child{
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
  font-weight:700 !important;
  width:34% !important;
  min-width:min(140px,34%) !important;
  text-align:left !important;
}
#facts .table-wrapper td:last-child,
#bonuses .table-wrapper td:last-child,
#payments .table-wrapper td:last-child,
main .legal-doc .table-wrapper td:last-child{
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
  font-weight:400 !important;
}
#facts .table-wrapper tbody tr:hover,
#bonuses .table-wrapper tbody tr:hover,
#payments .table-wrapper tbody tr:hover,
main .legal-doc .table-wrapper tbody tr:hover{
  background:rgba(255,255,255,.06) !important;
}
#facts .table-wrapper tbody tr:hover :is(td,th),
#bonuses .table-wrapper tbody tr:hover td,
#payments .table-wrapper tbody tr:hover :is(td,th),
main .legal-doc .table-wrapper tbody tr:hover :is(td,th){
  border-bottom-color:rgba(255,255,255,.2) !important;
}

#facts .table-wrapper tbody tr:last-child :is(td,th),
#bonuses .table-wrapper tbody tr:last-child td,
#payments .table-wrapper tbody tr:last-child :is(td,th),
main .legal-doc .table-wrapper tbody tr:last-child :is(td,th){
  border-bottom:0 !important;
}

.card{
  background:#1a1612 !important;
  border:1px solid rgba(255,255,255,.1) !important;
  box-shadow:0 4px 18px rgba(0,0,0,.35);
}
/* Banda .info: mismo tono oscuro que la tarjeta (evita texto claro sobre fondo claro) */
.card .info,
:is(.shell > main, main) a.card .info{
  background:linear-gradient(180deg, #2a2418 0%, #16140e 100%) !important;
  border-top:1px solid rgba(255,255,255,.1) !important;
}
.card .info .title{ color:#f8fafc !important; }
.card .info .vendor{ color:#a8b0c4 !important; }

/* Popular games block like reference */
.popular-games{
  background:transparent;
  border-radius:0;
  padding:0;
}
.popular-games h2{
  margin:0 0 14px;
  color:#f8fafc;
  font-size:30px;
  line-height:1.2;
}
.popular-games__grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  max-width:100%;
}
.popular-games__card{
  display:flex;
  flex-direction:column;
  border-radius:12px;
  overflow:hidden;
  background:#0a0908;
  text-decoration:none !important;
  box-shadow:0 6px 20px rgba(0,0,0,.4);
  position:relative;
}
.popular-games__media{
  overflow:hidden;
  aspect-ratio:1/1;
  flex:0 0 auto;
  background:#12100a;
  position:relative;
}
.popular-games__card img{
  width:100%;
  height:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  object-position:center;
  display:block;
  transition:transform .28s ease;
}
/* Banner horizontal (Burning Cash): encaja entero en el tile cuadrado sin recorte extremo */
.popular-games__media img.popular-games__img--wide{
  object-fit:contain;
  object-position:center 48%;
  padding:6px 8px;
  background:
    radial-gradient(ellipse 90% 70% at 50% 45%, rgba(120, 20, 28, 0.55) 0%, transparent 62%),
    linear-gradient(180deg, #2a0a0c 0%, #120506 100%);
}
.popular-games__card:hover img{
  transform:scale(1.06);
}
.popular-games__card:hover img.popular-games__img--wide{
  transform:scale(1.04);
}
.popular-games__media::after{
  content:"JUGAR";
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:0;
  background:rgba(8,47,36,.55);
  color:#fff;
  font-weight:800;
  font-size:14px;
  letter-spacing:.05em;
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease, background-color .2s ease;
}
.popular-games__card:hover .popular-games__media::after{
  opacity:1;
  background:rgba(13,122,82,.72);
}
.popular-games__meta{
  flex:1 1 auto;
  background:#12100a;
  padding:10px 10px 11px;
  position:relative;
  z-index:2;
  border-top:1px solid rgba(255,255,255,.1);
  min-height:44px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.popular-games__title{
  margin:0;
  font-size:13px;
  font-weight:700;
  color:#fff;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  line-height:1.25;
}
.popular-games__vendor{
  display:none;
}
@media (max-width:1100px){
  .popular-games__grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:640px){
  .popular-games{ padding:0; }
  .popular-games h2{ font-size:24px; }
  .popular-games__grid{ grid-template-columns:1fr; }
}

.legal-doc h2{ color:#f8fafc !important; }
.legal-doc p,
.legal-doc li{ color:#cbd5e1 !important; }
.legal-doc .legal-note{
  border-color:rgba(196, 160, 60,.45) !important;
  background:rgba(196, 160, 60,.12) !important;
  color:#d1fae5 !important;
}

.aside .nav a.is-active .nav-txt,
.drawer .nav a.is-active .nav-txt{
  border-bottom:none !important;
  padding-bottom:0 !important;
}

:is(.shell > main, main) .section a:not(.pulse-btn):not(.vmore-btn):not(.card):not(.chip):not(.prov):not(.banner-link):not(.hero-cta):not(.play){
  color:#e8c256 !important;
}
:is(.shell > main, main) .section a:not(.pulse-btn):not(.vmore-btn):not(.card):not(.chip):not(.prov):not(.banner-link):not(.hero-cta):not(.play):hover{
  color:#fcd34d !important;
}
:is(.shell > main, main) :is(.chip, .chip-txt){
  color:#f1f5f9 !important;
  -webkit-text-fill-color:#f1f5f9 !important;
}
:is(.shell > main, main) .chip-ico{
  color:#e8c565 !important;
}

/* ═══════════════════════════════════════════════════════════
   APP PAGE — landing premium (app.html + body.app-page)
═══════════════════════════════════════════════════════════ */
body.app-page{
  background:
    radial-gradient(ellipse 100% 70% at 50% -15%, rgba(18, 160, 110, .22), transparent 52%),
    linear-gradient(180deg, #0c0e14 0%, var(--page-bg, #080808) 38%);
}

body.app-page .shell > main{
  padding: 14px 0 40px;
  overflow: hidden;
  border: 1px solid rgba(94, 233, 176, .12);
  box-shadow:
    0 4px 32px rgba(0, 0, 0, .4),
    0 0 0 1px rgba(200, 164, 74, .08) inset;
}

body.app-page .app-hero{
  position: relative;
  margin: 0;
  padding: 0 clamp(12px, 3.5vw, 28px);
}

body.app-page .app-hero--balanced{
  max-width: min(1100px, 100%);
  margin-inline: auto;
}

body.app-page .app-hero__glow{
  pointer-events: none;
  position: absolute;
  inset: -18% -6% auto;
  height: 70%;
  background: radial-gradient(ellipse 72% 52% at 50% 0%, rgba(18, 160, 110, .38), transparent 72%);
  opacity: .75;
  z-index: 0;
}

body.app-page .app-hero__frame{
  position: relative;
  z-index: 1;
  margin: 0;
  padding: clamp(10px, 2vw, 18px);
  border-radius: 22px;
  overflow: hidden;
  line-height: 0;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(18, 160, 110, .14), transparent 55%),
    linear-gradient(165deg, rgba(22, 28, 38, .98) 0%, rgba(8, 10, 16, .99) 100%);
  border: 1px solid rgba(94, 233, 176, .22);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, .5),
    0 0 0 1px rgba(200, 164, 74, .18) inset,
    0 0 0 1px rgba(255, 255, 255, .05) inset,
    0 0 48px rgba(18, 160, 110, .12);
}

body.app-page .app-hero__glow--promo{
  background: radial-gradient(ellipse 78% 58% at 50% 0%, rgba(212, 175, 55, .32), transparent 72%);
  opacity: .88;
}

body.app-page .app-hero__frame--promo{
  background:
    linear-gradient(165deg, rgba(48, 32, 12, .55) 0%, rgba(10, 8, 5, .98) 100%),
    radial-gradient(90% 55% at 50% 0%, rgba(212, 175, 55, .14), transparent 62%);
  border: 1px solid rgba(212, 175, 55, .38);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, .58),
    0 0 0 1px rgba(0, 0, 0, .4) inset,
    0 0 56px rgba(120, 80, 18, .2);
}

body.app-page .app-hero__promo-media{
  display: block;
  width: 100%;
  line-height: 0;
  border-radius: 14px;
  overflow: hidden;
  background: radial-gradient(ellipse 100% 80% at 50% 30%, rgba(60, 40, 14, .4), #0a0604);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .06),
    inset 0 -40px 80px rgba(0, 0, 0, .25);
}
body.app-page .app-hero__promo-media picture{
  display: block;
  width: 100%;
  line-height: 0;
}

body.app-page .app-hero__img--promo{
  aspect-ratio: auto;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: min(78vh, 800px);
  object-fit: contain;
  object-position: center center;
  border-radius: 14px;
  display: block;
  vertical-align: middle;
  line-height: 0;
}

body.app-page .app-hero__promo-actions{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
  margin-top: clamp(12px, 2.2vw, 18px);
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(0, 0, 0, .42) 0%, rgba(12, 8, 4, .72) 100%);
  border: 1px solid rgba(212, 175, 55, .22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

body.app-page .app-hero__promo-hint{
  margin: 0;
  flex: 1 1 240px;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
  color: rgba(250, 246, 234, .88);
}

@media (max-width: 992px){
  body.app-page .app-hero__img--promo{
    max-height: min(72vh, 680px);
  }
}
@media (max-width: 768px){
  body.app-page .app-hero__img--promo{
    max-height: min(62vh, 560px);
  }
}
@media (max-width: 640px){
  body.app-page .app-hero__promo-actions{
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  body.app-page .app-hero__promo-actions .pulse-btn{
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px){
  body.app-page .app-hero__img--promo{
    max-height: min(56vh, 480px);
  }
}
@media (max-width: 380px){
  body.app-page .app-hero__img--promo{
    max-height: min(50vh, 420px);
  }
}

body.app-page .app-hero__img{
  width: 100%;
  display: block;
  vertical-align: middle;
  line-height: 0;
}
body.app-page .app-hero__promo-actions .pulse-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

body.app-page .app-hero__bar{
  height: 3px;
  width: 100%;
  margin: 14px 0 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200, 164, 74, .25) 15%,
    var(--gold2, #c8a44a) 50%,
    rgba(200, 164, 74, .25) 85%,
    transparent 100%
  );
  box-shadow: 0 0 20px rgba(200, 164, 74, .22);
}

body.app-page .app-landing{
  max-width: min(1100px, 100%);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 40px) clamp(16px, 3.5vw, 28px) 0;
}

body.app-page .app-landing__intro{
  position: relative;
  z-index: auto;
  top: auto;
  display: block;
  max-width: min(52rem, 100%);
  margin: clamp(10px, 2.2vw, 22px) auto 0;
  padding: clamp(28px, 4.2vw, 46px) clamp(22px, 4vw, 42px) clamp(34px, 4.5vw, 52px);
  text-align: center;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 120% 70% at 50% 0%, rgba(212, 175, 55, 0.14), transparent 58%),
    linear-gradient(165deg, rgba(28, 22, 14, 0.94) 0%, rgba(12, 10, 8, 0.98) 42%, rgba(6, 5, 4, 0.99) 100%);
  border: 1px solid rgba(212, 175, 55, 0.32);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(0, 0, 0, 0.35) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 48px rgba(100, 75, 22, 0.1);
}
body.app-page .app-landing__intro::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.2) 18%,
    #e8c256 50%,
    rgba(212, 175, 55, 0.2) 82%,
    transparent 100%
  );
  pointer-events: none;
}

body.app-page .app-landing__intro-copy{
  position: relative;
  z-index: 1;
}

body.app-page .app-landing__eyebrow{
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f5e6bc !important;
  -webkit-text-fill-color: #f5e6bc !important;
  margin: 0 auto 18px;
  display: inline-block;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.38);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.14) 0%, rgba(40, 32, 12, 0.55) 100%);
  box-shadow:
    0 0 24px rgba(212, 175, 55, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.app-page .app-landing__title{
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: #faf8f3 !important;
  -webkit-text-fill-color: #faf8f3 !important;
  margin: 0 auto 18px;
  max-width: 18ch;
  text-shadow:
    0 2px 32px rgba(0, 0, 0, 0.55),
    0 0 52px rgba(212, 175, 55, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.05);
}

body.app-page .app-landing__lead{
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1.06rem;
  line-height: 1.68;
  color: rgba(226, 232, 240, 0.93) !important;
  -webkit-text-fill-color: rgba(226, 232, 240, 0.93) !important;
  margin: 0 auto 22px;
  max-width: 58ch;
}
body.app-page .app-landing__lead strong{
  color: #f0d78c !important;
  -webkit-text-fill-color: #f0d78c !important;
  font-weight: 700;
  text-shadow: 0 0 22px rgba(212, 175, 55, 0.28);
}

body.app-page .app-landing__tagline{
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.94rem;
  line-height: 1.55;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(168, 176, 196, 0.92) !important;
  -webkit-text-fill-color: rgba(168, 176, 196, 0.92) !important;
  max-width: 52ch;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}

body.app-page .app-landing__guide{
  margin-top: clamp(20px, 3vw, 28px);
  padding-top: 0;
  overflow: hidden;
}

body.app-page .app-landing__guide > h2:first-of-type{
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* Promo inline dentro del texto (app) */
body.app-page .app-promo-inline{
  float: right;
  width: min(100%, 340px);
  max-width: 38%;
  margin: 0 0 1.1rem 1.35rem;
  padding: 12px 12px 14px;
  border-radius: 16px;
  background:
    linear-gradient(165deg, rgba(48, 32, 12, .48) 0%, rgba(10, 8, 5, .96) 100%),
    radial-gradient(90% 55% at 50% 0%, rgba(212, 175, 55, .12), transparent 62%);
  border: 1px solid rgba(212, 175, 55, .34);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, .42),
    inset 0 1px 0 rgba(255, 255, 255, .06);
}

body.app-page .app-promo-inline__media{
  display: block;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 30%, rgba(60, 40, 14, .35), #0a0604);
}

body.app-page .app-promo-inline__media picture{
  display: block;
  width: 100%;
}

body.app-page .app-promo-inline__media img{
  width: 100%;
  height: auto;
  max-height: min(200px, 32vw);
  object-fit: contain;
  object-position: center;
  display: block;
}

body.app-page .app-promo-inline__foot{
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

body.app-page .app-promo-inline__hint{
  margin: 0;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
  color: rgba(250, 246, 234, .88);
}

body.app-page .app-promo-inline__btn{
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 22px !important;
  font-size: 12px !important;
  letter-spacing: .08em !important;
  white-space: nowrap;
}

@media (max-width: 768px){
  body.app-page .app-promo-inline{
    float: none;
    width: 100%;
    max-width: min(400px, 100%);
    margin: 1.35rem auto 1.5rem;
  }
  body.app-page .app-promo-inline__media img{
    max-height: min(180px, 42vw);
  }
}

body.app-page .app-landing__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 36px !important;
  margin-bottom: 10px;
}

body.app-page .app-landing__btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 28px;
  text-decoration: none !important;
  transition:
    transform .2s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    background .22s ease,
    color .22s ease,
    filter .22s ease;
}

/* Misma píldora dorada que .ft-btn (CHAT EN VIVO) */
body.app-page .app-landing__btn.app-landing__btn--primary.pulse-btn,
body.app-page .app-landing__btn--ghost.pulse-btn,
body.app-page .app-landing__btn--ghost{
  animation: none;
  border-radius: 999px !important;
  font-family: "Antonio", system-ui, sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: .12em !important;
  font-size: clamp(13px, 2.35vw, 15px) !important;
  padding: 14px 32px !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) !important;
  background:
    radial-gradient(ellipse 120% 90% at 50% 0%, rgba(255, 255, 255, 0.26) 0%, transparent 52%),
    linear-gradient(165deg, #e8c256 0%, #a16207 42%, #453008 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 -1px 0 rgba(0, 0, 0, 0.15) inset,
    0 3px 0 #2e2206,
    0 8px 22px rgba(0, 0, 0, 0.38),
    0 4px 18px rgba(160, 110, 30, 0.14),
    0 0 0 1px rgba(200, 164, 74, 0.1) !important;
  text-transform: uppercase;
  text-decoration: none !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.app-page .app-landing__btn.app-landing__btn--primary.pulse-btn::before{
  border-radius: 999px;
  inset: 2px;
}

body.app-page .app-landing__btn--ghost::before{
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 100%
  );
  pointer-events: none;
}

body.app-page .app-landing__btn.app-landing__btn--primary.pulse-btn:hover,
body.app-page .app-landing__btn--ghost:hover{
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.05) saturate(1.05);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.26) inset,
    0 3px 0 #2e2206,
    0 10px 28px rgba(0, 0, 0, 0.42),
    0 6px 22px rgba(180, 130, 40, 0.22),
    0 0 0 1px rgba(200, 164, 74, 0.14) !important;
}

@media (max-width: 480px){
  body.app-page .app-landing__actions{
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  body.app-page .app-landing__btn{
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px){
  body.app-page .app-landing{
    padding-top: 22px;
  }
}

/* Banner bono (modal regalo / icono regalo) */
.offers-panel__img--bono{
  border-radius: 14px !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .12),
    0 0 0 1px rgba(0, 0, 0, .35),
    0 20px 56px rgba(0, 0, 0, .55),
    0 0 72px rgba(212, 175, 55, .22) !important;
}
@media (hover:hover){
  .offers-panel__link:hover .offers-panel__img--bono{
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, .16),
      0 0 0 1px rgba(212, 175, 55, .35),
      0 24px 64px rgba(0, 0, 0, .6),
      0 0 88px rgba(212, 175, 55, .28) !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   BONUS PAGE — hero banda horizontal (bonus.html + body.bonus-page)
═══════════════════════════════════════════════════════════ */
body.bonus-page{
  background:
    radial-gradient(ellipse 100% 70% at 50% -15%, rgba(212, 175, 55, .12), transparent 52%),
    linear-gradient(180deg, #0c0f0d 0%, var(--page-bg, #0a0c0b) 38%);
}
body.bonus-page .shell > main{
  padding: clamp(10px, 2.5vw, 20px) clamp(14px, 3.5vw, 28px) 40px;
  overflow: hidden;
  border: 1px solid rgba(94, 233, 176, .1);
  box-shadow:
    0 4px 32px rgba(0, 0, 0, .4),
    0 0 0 1px rgba(200, 164, 74, .06) inset;
}
/* Título separado del hero: evita solaparse con el resplandor */
body.bonus-page :is(.shell > main, main) > .page-title{
  position: relative;
  z-index: 2;
  margin: 6px auto 22px;
  padding: 0 clamp(8px, 2vw, 16px);
  max-width: min(1100px, 100%);
}
body.bonus-page .bonus-hero{
  position: relative;
  z-index: 1;
  margin: 0 auto 6px;
  padding: 0;
  max-width: min(1100px, 100%);
  overflow: hidden;
  border-radius: 22px;
}
body.bonus-page .bonus-hero__glow{
  pointer-events: none;
  position: absolute;
  left: -4%;
  right: -4%;
  top: 0;
  height: 55%;
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(18, 160, 110, .28), transparent 72%);
  opacity: .55;
  z-index: 0;
}
body.bonus-page .bonus-hero--image-only > .frame{
  position: relative;
  z-index: 1;
  margin: 0;
  padding: clamp(10px, 2vw, 16px);
  border-radius: 18px;
  background:
    radial-gradient(120% 70% at 50% 0%, rgba(18, 160, 110, .1), transparent 55%),
    linear-gradient(180deg, rgba(22, 28, 38, .98) 0%, rgba(10, 12, 18, .99) 100%);
  border: 1px solid rgba(94, 233, 176, .22);
  box-shadow:
    0 22px 56px rgba(0, 0, 0, .48),
    0 0 0 1px rgba(200, 164, 74, .12) inset,
    0 0 0 1px rgba(255, 255, 255, .05) inset;
}
body.bonus-page .bonus-hero .frame::before{
  border-color: rgba(94, 233, 176, .16);
  opacity: .55;
}
body.bonus-page .bonus-hero .banner-link picture{
  display: block;
  width: 100%;
  line-height: 0;
  border-radius: var(--bannerRad, 12px);
  overflow: hidden;
  background: radial-gradient(ellipse 100% 100% at 50% 40%, rgba(0, 0, 0, .28), rgba(10, 12, 18, .94));
}
/* Hero bonus: 1024×680 WebP — sin recorte forzado por ratio 1024×499 global */
body.bonus-page .bonus-hero .banner.banner--promo-hero{
  aspect-ratio: auto;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: min(68vh, 640px);
  object-fit: contain;
  object-position: center center;
}
@media (max-width: 992px){
  body.bonus-page .bonus-hero .banner.banner--promo-hero{
    max-height: min(64vh, 520px);
  }
}
@media (max-width: 768px){
  body.bonus-page .bonus-hero .banner.banner--promo-hero{
    max-height: min(58vh, 440px);
  }
}
@media (max-width: 480px){
  body.bonus-page .bonus-hero .banner.banner--promo-hero{
    max-height: min(52vh, 380px);
  }
}

body.bonus-page .bonus-hero__bar{
  height: 3px;
  margin: 14px auto 0;
  max-width: min(1100px, 100%);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200, 164, 74, .25) 18%,
    var(--gold2, #c8a44a) 50%,
    rgba(200, 164, 74, .25) 82%,
    transparent 100%
  );
  box-shadow: 0 0 16px rgba(200, 164, 74, .2);
}
body.bonus-page .shell > main > .section.intro.legal-doc{
  padding-top: clamp(18px, 3vw, 28px);
  margin-top: 4px;
  max-width: min(1100px, 100%);
  margin-inline: auto;
}

body.bonus-page .bonus-landing{
  max-width: min(1100px, 100%);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 40px) clamp(16px, 3.5vw, 28px) 0;
}
body.bonus-page .bonus-landing__intro{
  position: relative;
  z-index: auto;
  top: auto;
  display: block;
  max-width: min(52rem, 100%);
  margin: clamp(10px, 2.2vw, 22px) auto 0;
  padding: clamp(28px, 4.2vw, 46px) clamp(22px, 4vw, 42px) clamp(34px, 4.5vw, 52px);
  text-align: center;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 120% 70% at 50% 0%, rgba(18, 160, 110, 0.12), transparent 58%),
    linear-gradient(165deg, rgba(18, 28, 24, 0.94) 0%, rgba(8, 12, 10, 0.98) 42%, rgba(4, 6, 5, 0.99) 100%);
  border: 1px solid rgba(94, 233, 176, 0.28);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(0, 0, 0, 0.35) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 48px rgba(18, 120, 85, 0.1);
}
body.bonus-page .bonus-landing__intro::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(94, 233, 176, 0.2) 18%,
    rgba(94, 233, 176, 0.75) 50%,
    rgba(94, 233, 176, 0.2) 82%,
    transparent 100%
  );
  pointer-events: none;
}
body.bonus-page .bonus-landing__intro-copy{
  position: relative;
  z-index: 1;
}
body.bonus-page .bonus-landing__eyebrow{
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d4f5e8 !important;
  -webkit-text-fill-color: #d4f5e8 !important;
  margin: 0 auto 18px;
  display: inline-block;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid rgba(94, 233, 176, 0.38);
  background: linear-gradient(180deg, rgba(18, 160, 110, 0.16) 0%, rgba(12, 28, 22, 0.55) 100%);
  box-shadow:
    0 0 24px rgba(18, 160, 110, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
body.bonus-page .bonus-landing__title{
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: #faf8f3 !important;
  -webkit-text-fill-color: #faf8f3 !important;
  margin: 0 auto 18px;
  max-width: 22ch;
  text-shadow:
    0 2px 32px rgba(0, 0, 0, 0.55),
    0 0 52px rgba(18, 160, 110, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.05);
}
body.bonus-page .bonus-landing__lead{
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1.06rem;
  line-height: 1.68;
  color: rgba(226, 232, 240, 0.93) !important;
  -webkit-text-fill-color: rgba(226, 232, 240, 0.93) !important;
  margin: 0 auto 22px;
  max-width: 58ch;
}
body.bonus-page .bonus-landing__tagline{
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.94rem;
  line-height: 1.55;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(168, 196, 184, 0.92) !important;
  -webkit-text-fill-color: rgba(168, 196, 184, 0.92) !important;
  max-width: 52ch;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(94, 233, 176, 0.18);
}
body.bonus-page .bonus-landing__tagline strong{
  color: #f0d78c !important;
  -webkit-text-fill-color: #f0d78c !important;
  font-weight: 700;
  text-shadow: 0 0 22px rgba(212, 175, 55, 0.28);
}
body.bonus-page .bonus-landing__guide{
  margin-top: clamp(20px, 3vw, 28px);
  padding-top: 0;
  overflow: hidden;
}
body.bonus-page .bonus-landing__guide > h2:first-of-type{
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
body.bonus-page .bonus-promo-inline{
  float: right;
  width: min(100%, 360px);
  max-width: 40%;
  margin: 0 0 1.1rem 1.35rem;
  padding: 12px 12px 14px;
  border-radius: 16px;
  background:
    linear-gradient(165deg, rgba(18, 48, 36, 0.48) 0%, rgba(8, 12, 10, 0.96) 100%),
    radial-gradient(90% 55% at 50% 0%, rgba(94, 233, 176, 0.1), transparent 62%);
  border: 1px solid rgba(94, 233, 176, 0.32);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
body.bonus-page .bonus-promo-inline__media{
  display: block;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 30%, rgba(18, 60, 44, 0.35), #0a0c0b);
}
body.bonus-page .bonus-promo-inline__media picture{
  display: block;
  width: 100%;
}
body.bonus-page .bonus-promo-inline__media img{
  width: 100%;
  height: auto;
  max-height: min(220px, 34vw);
  object-fit: contain;
  object-position: center;
  display: block;
}
body.bonus-page .bonus-promo-inline__foot{
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
body.bonus-page .bonus-promo-inline__hint{
  margin: 0;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
  color: rgba(220, 245, 234, 0.88);
}
body.bonus-page .bonus-promo-inline__btn{
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 22px !important;
  font-size: 12px !important;
  letter-spacing: 0.08em !important;
  white-space: nowrap;
}
@media (max-width: 768px){
  body.bonus-page .bonus-promo-inline{
    float: none;
    width: 100%;
    max-width: min(420px, 100%);
    margin: 1.35rem auto 1.5rem;
  }
  body.bonus-page .bonus-promo-inline__media img{
    max-height: min(200px, 44vw);
  }
}

/* ═══════════════════════════════════════════════════════════
   CÓDIGOS PROMOCIONALES — hero + pilares (codigos-promocionales.html)
═══════════════════════════════════════════════════════════ */
body.codigos-page{
  background:
    radial-gradient(ellipse 90% 55% at 50% -12%, rgba(200, 164, 74, .1), transparent 55%),
    radial-gradient(ellipse 70% 40% at 85% 20%, rgba(212, 175, 55, .07), transparent 50%),
    linear-gradient(180deg, #0c0f0d 0%, var(--page-bg, #0a0c0b) 42%);
}
body.codigos-page .shell > main{
  padding: clamp(10px, 2.5vw, 20px) clamp(14px, 3.5vw, 28px) 44px;
  overflow: hidden;
  border: 1px solid rgba(200, 164, 74, .12);
  box-shadow:
    0 4px 36px rgba(0, 0, 0, .45),
    0 0 0 1px rgba(18, 160, 110, .06) inset;
}
body.codigos-page :is(.shell > main, main) > .page-title{
  position: relative;
  z-index: 2;
  margin: 6px auto 18px;
  padding: 0 clamp(8px, 2vw, 16px);
  max-width: min(1100px, 100%);
}
body.codigos-page .codigos-hero-frame{
  max-width: min(1100px, 100%);
  margin: 0 auto 4px;
  padding: clamp(10px, 2vw, 16px);
  border-radius: 18px;
  background:
    radial-gradient(120% 70% at 50% 0%, rgba(18, 160, 110, .1), transparent 55%),
    linear-gradient(180deg, rgba(22, 28, 38, .98) 0%, rgba(10, 12, 18, .99) 100%);
  border: 1px solid rgba(94, 233, 176, .2);
  box-shadow:
    0 22px 56px rgba(0, 0, 0, .42),
    0 0 0 1px rgba(200, 164, 74, .1) inset,
    0 0 0 1px rgba(255, 255, 255, .05) inset;
}
body.codigos-page .codigos-hero-frame::before{
  border-color: rgba(94, 233, 176, .14);
  opacity: .5;
}
body.codigos-page .codigos-hero-frame .banner-wrap{
  position: relative;
  z-index: 1;
}
body.codigos-page .codigos-hero-frame .banner-link picture{
  display: block;
  width: 100%;
  line-height: 0;
  border-radius: var(--bannerRad, 12px);
  overflow: hidden;
  background: radial-gradient(ellipse 100% 100% at 50% 40%, rgba(0, 0, 0, .28), rgba(10, 12, 18, .94));
}
/* Hero códigos: 1024×628 WebP/PNG — sin recorte forzado por ratio global 1024×499 */
body.codigos-page .codigos-hero-frame .banner.banner--promo-hero{
  aspect-ratio: auto;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: min(68vh, 620px);
  object-fit: contain;
  object-position: center center;
}
@media (max-width: 992px){
  body.codigos-page .codigos-hero-frame .banner.banner--promo-hero{
    max-height: min(62vh, 520px);
  }
}
@media (max-width: 768px){
  body.codigos-page .codigos-hero-frame .banner.banner--promo-hero{
    max-height: min(56vh, 440px);
  }
}
@media (max-width: 480px){
  body.codigos-page .codigos-hero-frame .banner.banner--promo-hero{
    max-height: min(50vh, 380px);
  }
}
body.codigos-page .codigo-pillars{
  padding: clamp(22px, 3vw, 32px) clamp(14px, 2.5vw, 28px) clamp(8px, 1.5vw, 14px);
  background: linear-gradient(180deg, rgba(20, 22, 30, .6) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}
body.codigos-page .codigo-pillars__inner{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 20px);
  max-width: 1100px;
  margin: 0 auto;
}
body.codigos-page .codigo-pillar{
  padding: clamp(16px, 2vw, 22px) clamp(14px, 1.8vw, 20px);
  border-radius: 12px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(200, 164, 74, .15);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .25);
}
body.codigos-page .codigo-pillar__label{
  display: block;
  margin-bottom: 8px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold1, #f0d78c);
}
body.codigos-page .codigo-pillar p{
  margin: 0;
  font-size: clamp(0.78rem, 0.35vw + 0.7rem, 0.86rem);
  line-height: 1.55;
  color: rgba(203, 213, 225, .95);
}
body.codigos-page .shell > main > .section.intro.legal-doc{
  padding-top: clamp(18px, 2.5vw, 26px);
}
@media (max-width: 900px){
  body.codigos-page .codigo-pillars__inner{
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   GIROS GRATIS — layout main (giros-gratis.html)
═══════════════════════════════════════════════════════════ */
body.giros-page .shell > main{
  padding: clamp(10px, 2.5vw, 20px) clamp(14px, 3.5vw, 28px) 44px;
  overflow: hidden;
  border: 1px solid rgba(200, 164, 74, .12);
  box-shadow:
    0 4px 36px rgba(0, 0, 0, .45),
    0 0 0 1px rgba(18, 160, 110, .06) inset;
}
body.giros-page :is(.shell > main, main) > .page-title{
  position: relative;
  z-index: 2;
  margin: 6px auto 18px;
  padding: 0 clamp(8px, 2vw, 16px);
  max-width: min(1100px, 100%);
}
body.giros-page .giros-hero-frame{
  max-width: min(1100px, 100%);
  margin: 0 auto 4px;
  padding: clamp(10px, 2vw, 16px);
  border-radius: 18px;
  background:
    radial-gradient(120% 70% at 50% 0%, rgba(18, 160, 110, .12), transparent 55%),
    linear-gradient(180deg, rgba(22, 28, 38, .98) 0%, rgba(10, 12, 18, .99) 100%);
  border: 1px solid rgba(94, 233, 176, .2);
  box-shadow:
    0 22px 56px rgba(0, 0, 0, .42),
    0 0 0 1px rgba(200, 164, 74, .1) inset,
    0 0 0 1px rgba(255, 255, 255, .05) inset;
}
body.giros-page .giros-hero-frame:before{
  border-color: rgba(94, 233, 176, .14);
  opacity: .5;
}
body.giros-page .giros-hero-frame .banner-wrap{
  position: relative;
  z-index: 1;
}
body.giros-page .giros-hero-frame .banner-link picture{
  display: block;
  width: 100%;
  line-height: 0;
  border-radius: var(--bannerRad, 12px);
  overflow: hidden;
  background: radial-gradient(ellipse 100% 100% at 50% 40%, rgba(0, 0, 0, .28), rgba(10, 12, 18, .94));
}
/* Hero giros: 1024×510 WebP/PNG — sin recorte forzado por ratio 1024×511 global */
body.giros-page .giros-hero-frame .banner.banner--promo-hero{
  aspect-ratio: auto;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: min(68vh, 600px);
  object-fit: contain;
  object-position: center center;
}
@media (max-width: 992px){
  body.giros-page .giros-hero-frame .banner.banner--promo-hero{
    max-height: min(62vh, 500px);
  }
}
@media (max-width: 768px){
  body.giros-page .giros-hero-frame .banner.banner--promo-hero{
    max-height: min(56vh, 420px);
  }
}
@media (max-width: 480px){
  body.giros-page .giros-hero-frame .banner.banner--promo-hero{
    max-height: min(50vh, 360px);
  }
}
body.giros-page .shell > main > .section.intro.legal-doc{
  padding-top: clamp(18px, 2.5vw, 26px);
}

/* ═══════════════════════════════════════════════════════════
   ACCESO / INICIAR SESIÓN — tarjeta centrada + banner (iniciar-sesion.html)
═══════════════════════════════════════════════════════════ */
body.acceso-page .shell > main{
  padding: 12px 18px 40px;
}
body.acceso-page .page-title{
  margin-bottom: clamp(14px, 2.2vw, 22px);
}
body.acceso-page .acceso-panel{
  max-width: min(960px, 100%);
  margin: 0 auto;
}
body.acceso-page .acceso-panel__inner{
  padding: clamp(20px, 3.2vw, 32px);
  border-radius: 22px;
  background:
    radial-gradient(120% 90% at 12% 0%, rgba(18, 160, 110, .14), transparent 52%),
    radial-gradient(80% 70% at 100% 12%, rgba(180, 120, 30, .08), transparent 45%),
    linear-gradient(165deg, rgba(26, 32, 44, .97), rgba(14, 16, 24, .94));
  border: 1px solid rgba(18, 160, 110, .22);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, .42),
    0 0 0 1px rgba(255, 255, 255, .05) inset,
    inset 0 1px 0 rgba(255, 255, 255, .07);
}
body.acceso-page .acceso-panel__grid{
  display: block;
}
body.acceso-page .acceso-panel__copy{
  overflow: hidden;
}
body.acceso-page .acceso-panel__eyebrow{
  margin: 0 0 10px;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #e8c565;
}
body.acceso-page .acceso-panel__lead{
  margin: 0 0 20px;
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.65;
  color: #e8edf7 !important;
}
body.acceso-page .acceso-panel__h{
  margin: 22px 0 10px;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 800;
  color: #f8fafc !important;
  letter-spacing: .02em;
}
body.acceso-page .acceso-panel__h:first-of-type{
  margin-top: 0;
}
body.acceso-page .acceso-panel__p{
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.65;
  color: #d1d6e6 !important;
}
body.acceso-page .acceso-panel__list{
  margin: 0;
  padding-left: 1.2rem;
  color: #d1d6e6 !important;
  line-height: 1.62;
}
body.acceso-page .acceso-panel__list li{
  margin: 0 0 10px;
}
body.acceso-page .acceso-panel__note{
  margin: 20px 0 0;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.55;
  background: rgba(8, 47, 36, .38);
  border: 1px solid rgba(94, 233, 176, .2);
  color: #e2e8f0 !important;
}
body.acceso-page .acceso-panel__links{
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(226, 232, 240, .88) !important;
}
body.acceso-page .acceso-panel__links a{
  color: #e8c256 !important;
  text-decoration: none;
  border-bottom: 1px solid rgba(250, 220, 140, .35);
}
body.acceso-page .acceso-panel__links a:hover{
  color: #fcd34d !important;
  border-bottom-color: rgba(253, 164, 175, .45);
}
body.acceso-page .acceso-panel__cta{
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}
body.acceso-page .acceso-panel__cta .pulse-btn{
  text-transform: none;
  letter-spacing: .04em;
  font-size: 15px;
  padding: 14px 26px;
}
body.acceso-page .acceso-panel__cta-secondary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-decoration: none !important;
  position: relative;
  border: 1px solid rgba(26, 20, 6, 0.9);
  background:
    radial-gradient(ellipse at center top, rgba(255, 255, 255, 0.12) 0%, transparent 52%),
    linear-gradient(180deg, #b8922a 0%, #7a5c10 45%, #3d2f08 100%);
  box-shadow:
    0 2px 0 #1a1408,
    0 5px 16px rgba(0, 0, 0, 0.38),
    0 0 14px rgba(120, 90, 20, 0.14);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.3s ease, filter 0.3s ease, border-color 0.2s ease;
}
body.acceso-page .acceso-panel__cta-secondary:hover{
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(40, 32, 10, 0.95);
  box-shadow:
    0 2px 0 #1a1408,
    0 8px 22px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(180, 140, 45, 0.22);
  filter: brightness(1.05) saturate(1.04);
  color: #fff !important;
}
body.acceso-page .acceso-panel__visual{
  float: right;
  width: min(340px, 38%);
  max-width: 100%;
  margin: 4px 0 14px 22px;
  shape-outside: inset(0 round 18px);
}
body.acceso-page .acceso-panel__banner-link{
  display: block;
  line-height: 0;
  text-decoration: none !important;
  border-radius: 18px;
  transition: transform .28s ease, box-shadow .28s ease;
}
body.acceso-page .acceso-panel__banner-link:hover{
  transform: translateY(-2px);
}
body.acceso-page .acceso-panel__banner-link:focus-visible{
  outline: 2px solid #e8c565;
  outline-offset: 3px;
}
body.acceso-page .acceso-panel__banner-frame{
  display: block;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(18, 160, 110, .28);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, .45),
    0 0 0 1px rgba(255, 255, 255, .06) inset,
    0 0 40px rgba(18, 160, 110, .12);
}
body.acceso-page .acceso-panel__banner-link:hover .acceso-panel__banner-frame{
  box-shadow:
    0 20px 56px rgba(0, 0, 0, .5),
    0 0 0 1px rgba(94, 233, 176, .2) inset,
    0 0 48px rgba(18, 160, 110, .2);
}
body.acceso-page .acceso-panel__banner-frame picture{
  display: block;
  width: 100%;
  line-height: 0;
}
body.acceso-page .acceso-panel__banner{
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}
body.acceso-page .acceso-panel__trust{
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-content: center;
}
body.acceso-page .acceso-panel__trust li{
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(241, 245, 249, .9) !important;
  background: rgba(0, 0, 0, .28);
  border: 1px solid rgba(255, 255, 255, .1);
}
body.acceso-page .acceso-panel__caption{
  margin: 10px 0 0;
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
  color: rgba(203, 213, 225, .72) !important;
}
@media (max-width: 860px){
  body.acceso-page .acceso-panel__visual{
    width: min(300px, 42%);
    margin: 4px 0 14px 18px;
  }
}
@media (max-width: 560px){
  body.acceso-page .acceso-panel__visual{
    float: none;
    width: 100%;
    max-width: min(420px, 100%);
    margin: 0 auto 18px;
  }
}
@media (max-width: 640px){
  body.acceso-page .shell > main{
    padding-top: 10px;
    padding-bottom: max(28px, env(safe-area-inset-bottom, 8px));
    padding-left: max(12px, env(safe-area-inset-left, 4px));
    padding-right: max(12px, env(safe-area-inset-right, 4px));
  }
  body.acceso-page .acceso-panel__inner{
    padding: 18px 16px 20px;
    border-radius: 18px;
  }
  body.acceso-page .acceso-panel__cta{
    flex-direction: column;
    align-items: stretch;
  }
  body.acceso-page .acceso-panel__cta .pulse-btn,
  body.acceso-page .acceso-panel__cta-secondary{
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════
   MÓVIL GLOBAL — refuerzo (safe area, shell, cabecera, footer)
   Aplica a todas las páginas con el layout estándar
═══════════════════════════════════════════════════════════ */
@media (max-width: 992px){
  html{
    overflow-x: hidden;
  }
  .shell{
    padding:
      max(10px, env(safe-area-inset-top, 0px))
      max(10px, env(safe-area-inset-right, 0px))
      max(12px, env(safe-area-inset-bottom, 0px))
      max(10px, env(safe-area-inset-left, 0px));
    gap: 12px;
  }
  header .head{
    padding-left: max(10px, env(safe-area-inset-left, 0px));
    padding-right: max(10px, env(safe-area-inset-right, 0px));
    flex-wrap: wrap;
    row-gap: 8px;
    column-gap: 8px;
  }
  .head .btn{
    min-width: 0;
    flex: 1 1 calc(50% - 34px);
    min-height: 44px;
    padding: 0 10px;
    font-size: clamp(10px, 2.8vw, 12px);
    letter-spacing: 0.05em;
  }
  main picture,
  main .banner-wrap,
  main .banner-link{
    max-width: 100%;
  }
}

@media (max-width: 560px){
  .head .btn{
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 520px){
  .ft-grid .ft-col{
    padding-bottom: 10px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }
  .ft-grid .ft-col:last-child{
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 480px){
  .shell > main{
    border-radius: 10px;
    padding-top: 10px;
    padding-bottom: max(22px, env(safe-area-inset-bottom, 8px));
    padding-left: max(10px, env(safe-area-inset-left, 4px));
    padding-right: max(10px, env(safe-area-inset-right, 4px));
  }
}

@media (max-width: 420px){
  header .logo img{
    max-width: min(200px, 72vw);
  }
}

@media (hover: none) and (pointer: coarse){
  body.acceso-page .acceso-panel__banner-link:hover{
    transform: none;
  }
}

button,
.btn,
.pulse-btn,
.ft-btn,
.offers-trigger,
.burger,
.head-search-ico{
  touch-action: manipulation;
}
