/* ============ Sole Vivo Casino — style.css v1.0 ============ */

:root {
  --c-bg: #FAF3E7;
  --c-surface: #FFFFFF;
  --c-ink: #2B2118;
  --c-muted: #6B5D4F;
  --c-terra: #C8501E;
  --c-terra-d: #A8431A;
  --c-amber: #E8A33D;
  --c-gold: #D9A441;
  --c-olive: #7A8450;
  --c-olive-d: #5F6840;
  --c-line: rgba(43, 33, 24, .13);
  --c-cream-2: #F3E8D5;
  --grad-sun: linear-gradient(118deg, #C8501E 8%, #E8A33D 92%);
  --grad-soft: linear-gradient(160deg, #FAF3E7 0%, #F3E2C8 100%);
  --shadow-1: 0 6px 24px rgba(120, 72, 28, .10);
  --shadow-2: 0 18px 48px rgba(120, 72, 28, .16);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --r-lg: 26px;
  --r-md: 18px;
  --r-sm: 12px;
  --header-offset: 78px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  overflow-x: clip;
  width: 100%; max-width: 100%;
  min-height: 100vh;
  display: flex; flex-direction: column;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
}
main { flex: 1; position: relative; z-index: 1; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a, button { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
.btn, .nav a, .burger, .brand, .chip-tag, summary { -webkit-user-select: none; user-select: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.16;
  overflow-wrap: break-word;
  word-break: break-word;
}
a { overflow-wrap: break-word; word-break: break-word; }
p { overflow-wrap: break-word; }
.tx-it { font-style: italic; color: var(--c-terra); font-weight: 500; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.container { max-width: 1240px; margin: 0 auto; padding-inline: 24px; width: 100%; }

::selection { background: rgba(200, 80, 30, .22); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700; font-size: 15.5px;
  letter-spacing: .01em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn-sun {
  background: var(--grad-sun);
  color: #FFF8EE;
  box-shadow: 0 10px 26px rgba(200, 80, 30, .32);
}
.btn-sun:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(200, 80, 30, .4); }
.btn-line {
  border: 2px solid var(--c-ink);
  color: var(--c-ink);
  background: transparent;
}
.btn-line:hover { background: var(--c-ink); color: var(--c-bg); transform: translateY(-3px); }
.btn-olive {
  background: var(--c-olive);
  color: #F7F5EC;
  box-shadow: 0 10px 24px rgba(122, 132, 80, .3);
}
.btn-olive:hover { background: var(--c-olive-d); transform: translateY(-3px); }
.btn-sm { padding: 11px 22px; font-size: 14.5px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(250, 243, 231, .82);
  border-bottom: 1px solid var(--c-line);
  overflow: visible;
}
.site-header__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; flex-shrink: 0; }
.brand img { width: 44px; height: 44px; border-radius: 50%; box-shadow: 0 3px 10px rgba(200,80,30,.25); }
.brand__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 21px; font-weight: 700; line-height: 1.05;
}
.brand__name em { font-style: italic; color: var(--c-terra); }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  font-weight: 600; font-size: 15px;
  position: relative;
  padding-block: 4px;
  transition: color .25s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute; left: 50%; bottom: -5px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--grad-sun);
  transform: translateX(-50%) scale(0);
  transition: transform .3s var(--ease);
}
.nav a:hover { color: var(--c-terra); }
.nav a:hover::after, .nav a.is-active::after { transform: translateX(-50%) scale(1); }
.nav a.is-active { color: var(--c-terra); }

.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.lang-switch {
  display: flex; align-items: center;
  border: 1.5px solid var(--c-line);
  border-radius: 999px;
  padding: 3px;
  background: rgba(255, 255, 255, .6);
}
.lang-switch a {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 13px; font-weight: 700;
  color: var(--c-muted);
  transition: color .25s var(--ease), background-color .25s var(--ease);
}
.lang-switch a.is-current { background: var(--c-ink); color: var(--c-bg); }
.lang-switch a:not(.is-current):hover { color: var(--c-terra); }
.auth-cta { display: inline-flex; }
.auth-user { display: none; align-items: center; gap: 10px; }
.auth-user.is-on { display: inline-flex; }
.auth-cta.is-off { display: none; }
.auth-user__name {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; font-size: 14.5px;
  color: var(--c-olive-d);
  max-width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.auth-user__name svg { width: 17px; height: 17px; flex-shrink: 0; }
.auth-user__out {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 13.5px;
  color: var(--c-terra);
  border-bottom: 1px dashed rgba(200, 80, 30, .4);
  transition: color .25s var(--ease);
}
.auth-user__out:hover { color: var(--c-terra-d); }
.auth-user__out svg { width: 15px; height: 15px; }

/* Burger */
.burger {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  z-index: 110;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(43, 33, 24, .05);
  border: 1px solid var(--c-line);
  cursor: pointer;
}
.burger span {
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.nav-mobile-actions { display: none; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative; z-index: 1;
  background: #241A10;
  color: #EDE3D2;
  margin-top: 90px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-block: 60px 44px;
}
.site-footer h3 {
  font-size: 17px;
  color: #F7EBD7;
  margin-bottom: 18px;
}
.footer-about__brand { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer-about__brand img { width: 42px; height: 42px; border-radius: 50%; }
.footer-about__brand span { font-family: 'Fraunces', Georgia, serif; font-size: 19px; font-weight: 700; }
.footer-about p { font-size: 14.5px; color: rgba(237, 227, 210, .75); line-height: 1.7; }
.footer-links li { margin-bottom: 11px; }
.footer-links a {
  font-size: 14.5px; color: rgba(237, 227, 210, .82);
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}
.footer-links a:hover { color: var(--c-amber); padding-left: 5px; }
.footer-contact li {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: 14.5px; color: rgba(237, 227, 210, .82);
  margin-bottom: 13px;
}
.footer-contact svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--c-amber); margin-top: 2px; }
.footer-ribbon {
  border-top: 1px solid rgba(237, 227, 210, .14);
  padding-block: 20px;
  text-align: center;
}
.footer-ribbon p {
  font-size: 13.5px; color: rgba(237, 227, 210, .72);
  max-width: none;
}
.footer-ribbon strong { color: var(--c-amber); font-weight: 700; }
.footer-age {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 2px solid var(--c-amber);
  border-radius: 50%;
  color: var(--c-amber);
  font-weight: 800; font-size: 13px;
  margin-bottom: 10px;
}
.footer-safety {
  display: flex; align-items: center; justify-content: center;
  gap: 30px; flex-wrap: wrap;
  margin-top: 20px;
}
.footer-safety a {
  display: inline-flex; align-items: center; gap: 10px;
  opacity: .82;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.footer-safety a:hover { opacity: 1; transform: translateY(-2px); }
.footer-safety img { height: 34px; width: auto; max-width: 152px; object-fit: contain; }
.footer-safety a span { color: rgba(237, 227, 210, .72); font-size: 13px; white-space: nowrap; }
.footer-bottom {
  border-top: 1px solid rgba(237, 227, 210, .14);
  padding-block: 18px;
}
.footer-bottom__row { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; color: rgba(237, 227, 210, .6); }

/* ---------- Reveal animations ---------- */
@keyframes fr-up { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes fr-scale { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: none; } }
@keyframes fr-clip { from { clip-path: inset(8% 8% 8% 8% round 30px); opacity: 0; } to { clip-path: inset(0 0 0 0 round 0); opacity: 1; } }
.first-reveal { animation: fr-up .9s var(--ease) both; animation-delay: var(--d, 0s); }
.first-reveal--scale { animation-name: fr-scale; animation-duration: 1.1s; }

.reveal, .reveal-scale, .reveal-clip { opacity: 0; will-change: transform, opacity; }
.reveal { transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.reveal-scale { transform: scale(.93); transition: opacity .85s var(--ease), transform .85s var(--ease); transition-delay: var(--d, 0s); }
.reveal-clip { clip-path: inset(10% 10% 10% 10% round 34px); transition: opacity .9s var(--ease), clip-path .95s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-in, .reveal-scale.is-in, .reveal-clip.is-in { opacity: 1; transform: none; clip-path: inset(0 0 0 0 round 0); }

@media (prefers-reduced-motion: reduce) {
  .first-reveal, .first-reveal--scale { animation: none; }
  .reveal, .reveal-scale, .reveal-clip { opacity: 1; transform: none; clip-path: none; transition: none; }
  .sun-rays { animation: none !important; }
}

/* ---------- Section heads ---------- */
.sec-head { margin-bottom: 48px; }
.sec-head h2 { font-size: clamp(30px, 4.2vw, 46px); margin-bottom: 16px; }
.sec-head p { color: var(--c-muted); font-size: 17.5px; }
.sec-head--center { text-align: center; }

/* ---------- Hero (home) ---------- */
.hero-sole { position: relative; overflow: hidden; padding-block: 72px 90px; }
.hero-sole::before {
  content: '';
  position: absolute; top: -340px; right: -280px;
  width: 760px; height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 163, 61, .26) 0%, rgba(232, 163, 61, 0) 65%);
  pointer-events: none;
}
.hero-sole__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.hero-sole h1 {
  font-size: clamp(38px, 5.4vw, 68px);
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-sole__lead { font-size: 19px; color: var(--c-muted); margin-bottom: 34px; }
.hero-sole__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-sole__trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-sole__trust li { display: flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 600; color: var(--c-olive-d); }
.hero-sole__trust svg { width: 19px; height: 19px; color: var(--c-olive); flex-shrink: 0; }

.hero-sole__visual { position: relative; }
.sun-rays {
  position: absolute;
  top: 50%; left: 50%;
  width: 130%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  color: rgba(217, 164, 65, .4);
  animation: sun-spin 80s linear infinite;
  pointer-events: none;
}
@keyframes sun-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.hero-sole__img {
  position: relative;
  border-radius: 46% 46% 30px 30px / 34% 34% 30px 30px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
  border: 6px solid #FFF;
}
.hero-sole__img img { width: 100%; height: auto; }
.hero-float {
  position: absolute;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-1);
  padding: 13px 18px;
  display: flex; align-items: center; gap: 11px;
  font-size: 14px; font-weight: 700;
  animation: floaty 5.5s ease-in-out infinite;
}
.hero-float svg { width: 22px; height: 22px; color: var(--c-terra); flex-shrink: 0; }
.hero-float--coins { left: -34px; top: 18%; animation-delay: .8s; }
.hero-float--free { right: -26px; bottom: 14%; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Home: stats strip ---------- */
.stats-sole { padding-block: 10px 80px; }
.stats-sole__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
  padding: 36px 40px;
}
.stat-cell { text-align: center; }
.stat-cell strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(30px, 3.4vw, 42px);
  color: var(--c-terra);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-cell span { font-size: 14.5px; color: var(--c-muted); font-weight: 600; }

/* ---------- Home: why grid ---------- */
.why-sole { padding-block: 80px; }
.why-sole__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.icon-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.icon-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.icon-card__badge {
  width: 56px; height: 56px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-soft);
  border: 1px solid var(--c-line);
  color: var(--c-terra);
  margin-bottom: 22px;
}
.icon-card__badge svg { width: 26px; height: 26px; }
.icon-card h3 { font-size: 20.5px; margin-bottom: 12px; }
.icon-card p { font-size: 15px; color: var(--c-muted); }

/* ---------- Home: games teaser ---------- */
.games-teaser { padding-block: 80px; background: var(--c-cream-2); }
.games-teaser__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.games-teaser__more { text-align: center; margin-top: 46px; }

.game-card {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.game-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-2); }
.game-card__media { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.game-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .5s var(--ease); }
.game-card:hover .game-card__media img { transform: scale(1.06); filter: brightness(.62); }
.game-card__free {
  position: absolute; top: 14px; left: 14px;
  background: var(--c-olive);
  color: #F7F5EC;
  font-size: 11.5px; font-weight: 800; letter-spacing: .08em;
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 2;
}
.game-card__play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .35s var(--ease);
  z-index: 2;
}
.game-card:hover .game-card__play { opacity: 1; }
.game-card__play .btn { transform: translateY(8px); transition: transform .35s var(--ease); }
.game-card:hover .game-card__play .btn { transform: translateY(0); }
.game-card__body { padding: 20px 22px 24px; }
.game-card__body h3 { font-size: 19px; margin-bottom: 8px; }
.game-card__body p { font-size: 14px; color: var(--c-muted); margin-bottom: 14px; }
.chip-tag {
  display: inline-block;
  font-size: 11.5px; font-weight: 700;
  color: var(--c-olive-d);
  background: rgba(122, 132, 80, .13);
  border-radius: 999px;
  padding: 4px 11px;
  margin-right: 6px; margin-bottom: 4px;
}

/* ---------- Home: coins teaser ---------- */
.coins-teaser { padding-block: 90px; }
.coins-teaser__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.coins-teaser__img {
  border-radius: 46% 46% 30px 30px / 34% 34% 30px 30px;
  overflow: hidden;
  border: 6px solid #FFF;
  box-shadow: var(--shadow-2);
}
.coins-teaser__img img { width: 100%; height: auto; }
.coins-teaser h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 18px; }
.coins-teaser__txt p { color: var(--c-muted); margin-bottom: 16px; }
.coins-teaser__list { margin-block: 22px 32px; }
.coins-teaser__list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15.5px; font-weight: 600;
  margin-bottom: 13px;
}
.coins-teaser__list svg { width: 21px; height: 21px; color: var(--c-terra); flex-shrink: 0; margin-top: 2px; }

/* ---------- Home: steps ---------- */
.steps-sole { padding-block: 80px; background: var(--c-cream-2); }
.steps-sole__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step-card {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 38px 30px 32px;
  counter-increment: step;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.step-card::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: 22px; right: 26px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 44px; font-weight: 600;
  color: rgba(200, 80, 30, .16);
  line-height: 1;
}
.step-card h3 { font-size: 21px; margin-bottom: 12px; }
.step-card p { font-size: 15px; color: var(--c-muted); }

/* ---------- Home: community ---------- */
.community-sole { position: relative; padding-block: 110px; overflow: hidden; }
.community-sole::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('/assets/img/sections/community-bg.avif');
  background-size: cover;
  background-position: center;
}
.community-sole::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(28, 18, 8, .88) 18%, rgba(28, 18, 8, .55) 70%, rgba(28, 18, 8, .35) 100%);
}
.community-sole .container { position: relative; z-index: 2; }
.community-sole h2 { font-size: clamp(30px, 4.4vw, 48px); color: #FBF3E5; margin-bottom: 18px; }
.community-sole__txt { color: rgba(251, 243, 229, .85); font-size: 17.5px; margin-bottom: 30px; }
.community-sole__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.community-rp {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(251, 243, 229, .1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(251, 243, 229, .22);
  border-radius: var(--r-md);
  padding: 22px 26px;
}
.community-rp svg { width: 26px; height: 26px; color: var(--c-amber); flex-shrink: 0; margin-top: 3px; }
.community-rp h3 { color: #FBF3E5; font-size: 17.5px; margin-bottom: 6px; }
.community-rp p { color: rgba(251, 243, 229, .8); font-size: 14.5px; }
.community-rp a { color: var(--c-amber); font-weight: 700; border-bottom: 1px dashed rgba(232, 163, 61, .5); }

/* ---------- Home: final CTA ---------- */
.cta-final { padding-block: 96px 40px; }
.cta-final__card {
  position: relative;
  background: var(--grad-sun);
  border-radius: 34px;
  padding: 64px 56px;
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-2);
}
.cta-final__card::before {
  content: '';
  position: absolute; top: -120px; left: 50%;
  width: 560px; height: 560px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 245, 225, .28) 0%, rgba(255, 245, 225, 0) 62%);
  pointer-events: none;
}
.cta-final__card h2 { color: #FFF8EE; font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; position: relative; }
.cta-final__card p { color: rgba(255, 248, 238, .9); font-size: 17.5px; margin-bottom: 34px; position: relative; }
.cta-final__card .btn-line { border-color: #FFF8EE; color: #FFF8EE; position: relative; }
.cta-final__card .btn-line:hover { background: #FFF8EE; color: var(--c-terra); }

/* ---------- Inner page hero ---------- */
.phero { padding-block: 64px 56px; text-align: center; }
.phero h1 { font-size: clamp(34px, 4.8vw, 56px); margin-bottom: 18px; }
.phero p { color: var(--c-muted); font-size: 18px; }
.pbanner { margin-bottom: 70px; }
.pbanner__frame {
  border-radius: 46% 46% 34px 34px / 22% 22% 34px 34px;
  overflow: hidden;
  border: 6px solid #FFF;
  box-shadow: var(--shadow-2);
}
.pbanner__frame img { width: 100%; height: auto; }

/* ---------- Games page ---------- */
.games-hero { padding-block: 0; }
.games-catalog { padding-block: 16px 90px; }
.games-filter {
  position: relative; z-index: 5;
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 46px;
}
.games-filter button {
  padding: 11px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--c-line);
  background: var(--c-surface);
  font-weight: 700; font-size: 14.5px;
  color: var(--c-muted);
  transition: color .3s var(--ease), background-color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.games-filter button:hover { transform: translateY(-2px); color: var(--c-terra); border-color: rgba(200, 80, 30, .4); }
.games-filter button.is-active {
  background: var(--c-ink); color: var(--c-bg); border-color: var(--c-ink);
}
.games-catalog__grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.game-card.is-hidden { display: none; }

/* ---------- Game modal ---------- */
.gmodal {
  position: fixed; inset: 0; z-index: 160;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.gmodal.is-open { display: flex; }
.gmodal__backdrop {
  position: absolute; inset: 0;
  background: rgba(43, 33, 24, .72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.gmodal__panel {
  position: relative;
  width: min(960px, 100%, calc((100dvh - 40px) * 4 / 3));
  aspect-ratio: 4 / 3;
  background: #1F1812;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-2);
  overflow: hidden;
}
.gmodal__frame { width: 100%; height: 100%; border: 0; display: block; }
.gmodal__close {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(43, 33, 24, .55);
  color: #FFF8EE;
  display: flex; align-items: center; justify-content: center;
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.gmodal__close:hover { background: var(--c-terra); transform: rotate(90deg); }
.gmodal__close svg { width: 18px; height: 18px; }

/* ---------- Coins page ---------- */
.coins-hero { padding-block: 0; }
.coins-tiers { padding-block: 10px 80px; }
.coins-tiers__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tier-card {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 30px 28px 34px;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.tier-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-2); }
.tier-card--hot { border: 2px solid var(--c-terra); }
.tier-card__flag {
  position: absolute; top: -15px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad-sun);
  color: #FFF8EE;
  font-size: 11.5px; font-weight: 800; letter-spacing: .07em;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.tier-card__img { border-radius: var(--r-md); overflow: hidden; margin-bottom: 22px; }
.tier-card__img img { width: 100%; height: auto; }
.tier-card h3 { font-size: 23px; margin-bottom: 4px; }
.tier-card__amount { font-size: 14.5px; font-weight: 700; color: var(--c-gold); margin-bottom: 14px; }
.tier-card__price { font-family: 'Fraunces', Georgia, serif; font-size: 38px; font-weight: 700; color: var(--c-terra); line-height: 1; margin-bottom: 4px; }
.tier-card__per { font-size: 13.5px; color: var(--c-muted); margin-bottom: 20px; }
.tier-card__feats { flex: 1; margin-bottom: 26px; }
.tier-card__feats li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; margin-bottom: 11px; }
.tier-card__feats svg { width: 18px; height: 18px; color: var(--c-olive); flex-shrink: 0; margin-top: 3px; }
.coins-how { padding-block: 80px; background: var(--c-cream-2); }
.coins-how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.coins-note { padding-block: 70px 30px; }
.coins-note__card {
  display: flex; gap: 20px; align-items: flex-start;
  background: rgba(122, 132, 80, .1);
  border: 1.5px solid rgba(122, 132, 80, .3);
  border-radius: var(--r-lg);
  padding: 30px 34px;
}
.coins-note__card svg { width: 30px; height: 30px; color: var(--c-olive-d); flex-shrink: 0; margin-top: 2px; }
.coins-note__card h2 { font-size: 21px; margin-bottom: 10px; }
.coins-note__card p { font-size: 15px; color: var(--c-muted); margin-bottom: 8px; }

/* ---------- Text/article pages ---------- */
.article-body { padding-block: 0 90px; }
.article-body h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-block: 44px 16px;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 20px; margin-block: 28px 12px; }
.article-body p { color: var(--c-muted); margin-bottom: 16px; }
.article-body ul { margin-block: 4px 20px; }
.article-body ul li {
  position: relative;
  padding-left: 28px;
  color: var(--c-muted);
  margin-bottom: 10px;
}
.article-body ul li::before {
  content: '';
  position: absolute; left: 6px; top: 11px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--grad-sun);
}
.article-body strong { color: var(--c-ink); }
.article-body a { color: var(--c-terra); font-weight: 600; border-bottom: 1px dashed rgba(200, 80, 30, .4); }

/* legal numbered sections */
.legal-content { padding-block: 0 90px; }
.legal-content p { color: var(--c-muted); margin-bottom: 14px; }
.legal-content strong { color: var(--c-ink); }
.legal-meta { font-size: 14px; font-weight: 600; color: var(--c-olive-d); margin-bottom: 36px; }
.legal-sec { margin-bottom: 38px; }
.legal-sec h2 {
  display: flex; gap: 14px; align-items: baseline;
  font-size: 22.5px;
  margin-bottom: 14px;
}
.legal-sec h2 span {
  font-style: italic;
  color: var(--c-terra);
  font-size: 19px;
  flex-shrink: 0;
}
.legal-sec ul { margin-block: 6px 16px; }
.legal-sec ul li {
  position: relative;
  padding-left: 26px;
  color: var(--c-muted);
  margin-bottom: 9px;
}
.legal-sec ul li::before {
  content: '';
  position: absolute; left: 5px; top: 11px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-amber);
}
.legal-sec a { color: var(--c-terra); font-weight: 600; border-bottom: 1px dashed rgba(200, 80, 30, .4); }

/* cookies table */
.cookie-table-wrap { overflow-x: auto; margin-block: 20px 30px; border: 1px solid var(--c-line); border-radius: var(--r-md); }
table.cookie-table { width: 100%; border-collapse: collapse; background: var(--c-surface); min-width: 640px; }
.cookie-table th, .cookie-table td {
  text-align: left;
  padding: 14px 18px;
  font-size: 14.5px;
  border-bottom: 1px solid var(--c-line);
}
.cookie-table th { background: var(--c-cream-2); font-weight: 800; color: var(--c-ink); white-space: nowrap; }
.cookie-table td { color: var(--c-muted); }
.cookie-table tr:last-child td { border-bottom: none; }

/* ---------- About / Mission / Business / RP shared blocks ---------- */
.about-story { padding-block: 0 80px; }
.about-story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.about-story h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 18px; }
.about-story p { color: var(--c-muted); margin-bottom: 15px; }
.about-values { padding-block: 80px; background: var(--c-cream-2); }
.about-values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.about-platform { padding-block: 80px 60px; }
.about-platform__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.fact-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.fact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-1); }
.fact-card svg { width: 26px; height: 26px; color: var(--c-terra); flex-shrink: 0; margin-top: 3px; }
.fact-card h3 { font-size: 18.5px; margin-bottom: 8px; }
.fact-card p { font-size: 14.5px; color: var(--c-muted); }

.mission-pillars { padding-block: 0 80px; }
.mission-pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.mission-promise { padding-block: 80px; background: var(--c-cream-2); }
.mission-promise__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.mission-promise h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 18px; }
.mission-promise p { color: var(--c-muted); margin-bottom: 15px; }
.mission-promise__list { margin-top: 10px; }
.mission-promise__list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; font-size: 15.5px; margin-bottom: 13px; }
.mission-promise__list svg { width: 21px; height: 21px; color: var(--c-olive); flex-shrink: 0; margin-top: 2px; }

.bm-streams { padding-block: 0 80px; }
.bm-streams__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.bm-ethics { padding-block: 80px; background: var(--c-cream-2); }
.bm-ethics__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.bm-explain { padding-block: 0 80px; }
.bm-explain__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.bm-explain h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 18px; }
.bm-explain p { color: var(--c-muted); margin-bottom: 15px; }

.rp-habits { padding-block: 0 80px; }
.rp-habits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.rp-signs { padding-block: 80px; background: var(--c-cream-2); }
.rp-signs__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.rp-signs h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 18px; }
.rp-signs p { color: var(--c-muted); margin-bottom: 15px; }
.rp-signs__list { margin-top: 8px; }
.rp-signs__list li { display: flex; gap: 12px; align-items: flex-start; color: var(--c-muted); font-size: 15.5px; margin-bottom: 13px; }
.rp-signs__list svg { width: 21px; height: 21px; color: var(--c-terra); flex-shrink: 0; margin-top: 3px; }
.rp-resources { padding-block: 80px 70px; }
.rp-resources__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

/* ---------- FAQ ---------- */
.faq-list { padding-block: 0 90px; }
.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.faq-item.is-open { box-shadow: var(--shadow-1); border-color: rgba(200, 80, 30, .35); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  list-style: none;
  cursor: pointer;
  padding: 21px 26px;
  font-weight: 700; font-size: 16.5px;
  font-family: 'Inter', system-ui, sans-serif;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { font-family: 'Inter', system-ui, sans-serif; font-size: 16.5px; font-weight: 700; line-height: 1.4; }
.faq-item summary .faq-x {
  position: relative;
  width: 30px; height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--c-cream-2);
  transition: background-color .35s var(--ease);
}
.faq-item summary .faq-x::before, .faq-item summary .faq-x::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 12px; height: 2px;
  background: var(--c-terra);
  transform: translate(-50%, -50%);
  transition: transform .35s var(--ease), background-color .35s var(--ease);
}
.faq-item summary .faq-x::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.is-open summary .faq-x { background: var(--c-terra); }
.faq-item.is-open summary .faq-x::before, .faq-item.is-open summary .faq-x::after { background: #FFF; transform: translate(-50%, -50%) rotate(0); }
.faq-item__body { padding: 0 26px 24px; }
.faq-item__body p { color: var(--c-muted); font-size: 15px; margin-bottom: 10px; }
.faq-item__body a { color: var(--c-terra); font-weight: 600; border-bottom: 1px dashed rgba(200, 80, 30, .4); }

/* ---------- Contact ---------- */
.contact-main { padding-block: 0 80px; }
.contact-main__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: start; }
.contact-form-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 38px 36px;
  box-shadow: var(--shadow-1);
}
.contact-form-card h2 { font-size: 26px; margin-bottom: 8px; }
.contact-form-card > p { color: var(--c-muted); font-size: 15px; margin-bottom: 26px; }
.contact-aside { display: flex; flex-direction: column; gap: 18px; }
.contact-info-card {
  display: flex; gap: 17px; align-items: flex-start;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 24px 26px;
}
.contact-info-card svg { width: 24px; height: 24px; color: var(--c-terra); flex-shrink: 0; margin-top: 3px; }
.contact-info-card h3 { font-size: 16.5px; margin-bottom: 5px; }
.contact-info-card p { font-size: 14.5px; color: var(--c-muted); }
.contact-info-card a { color: var(--c-terra); font-weight: 700; }
.contact-map { padding-block: 14px 90px; }
.contact-map__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
.contact-map__txt {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 38px 36px;
}
.contact-map__txt h2 { font-size: 26px; margin-bottom: 16px; }
.contact-map__txt p { color: var(--c-muted); font-size: 15px; margin-bottom: 14px; }
.contact-map__frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-1);
  min-height: 380px;
}
.contact-map__frame iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-weight: 700; font-size: 14px; }
.form-field input, .form-field textarea {
  width: 100%; min-width: 0;
  font: inherit; font-size: 15px;
  color: var(--c-ink);
  background: var(--c-bg);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.form-field textarea { resize: none; min-height: 130px; }
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--c-terra);
  box-shadow: 0 0 0 4px rgba(200, 80, 30, .12);
}
.form-field input.is-invalid, .form-field textarea.is-invalid { border-color: #C13B1C; }
.form-field .field-err { font-size: 12.5px; color: #C13B1C; font-weight: 600; min-height: 0; display: none; }
.form-field .field-err.is-on { display: block; }
.form-submit { margin-top: 24px; width: 100%; justify-content: center; }
.form-hint { font-size: 13px; color: var(--c-muted); margin-top: 14px; text-align: center; }
.form-hint a { color: var(--c-terra); font-weight: 700; }

/* custom select */
.cselect { position: relative; min-width: 0; }
.cselect__btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 15px; text-align: left;
  color: var(--c-ink);
  background: var(--c-bg);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.cselect__btn:focus-visible { outline: none; border-color: var(--c-terra); box-shadow: 0 0 0 4px rgba(200, 80, 30, .12); }
.cselect__btn.is-placeholder { color: var(--c-muted); }
.cselect__btn::after {
  content: '';
  width: 9px; height: 9px;
  flex-shrink: 0;
  border-right: 2px solid var(--c-muted);
  border-bottom: 2px solid var(--c-muted);
  transform: rotate(45deg) translateY(-2px);
  transition: transform .3s var(--ease);
}
.cselect.is-open .cselect__btn::after { transform: rotate(-135deg) translateY(-2px); }
.cselect__panel {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  z-index: 40;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-2);
  padding: 6px;
  opacity: 0;
  transform: translateY(-8px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear .25s;
}
.cselect.is-open .cselect__panel {
  opacity: 1; transform: none; visibility: visible; pointer-events: auto;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear 0s;
}
.cselect__opt {
  width: 100%;
  text-align: left;
  font-size: 14.5px; font-weight: 600;
  padding: 11px 14px;
  border-radius: 9px;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.cselect__opt:hover { background: var(--c-cream-2); }
.cselect__opt.is-selected { background: rgba(200, 80, 30, .1); color: var(--c-terra); }

/* ---------- Auth pages ---------- */
.register-shell, .login-shell { padding-block: 70px 100px; }
.auth-card {
  display: grid;
  grid-template-columns: 1fr .85fr;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.auth-card__form { padding: 52px 50px; min-width: 0; }
.auth-card__form h1 { font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 10px; }
.auth-card__form > p { color: var(--c-muted); font-size: 15.5px; margin-bottom: 30px; }
.auth-card__media { position: relative; min-height: 320px; }
.auth-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.auth-card__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(200, 80, 30, .08), rgba(43, 33, 24, .26));
}
.auth-perks { margin-top: 28px; border-top: 1px solid var(--c-line); padding-top: 24px; }
.auth-perks li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; font-weight: 600; color: var(--c-muted); margin-bottom: 11px; }
.auth-perks svg { width: 19px; height: 19px; color: var(--c-olive); flex-shrink: 0; margin-top: 2px; }
.form-check { display: flex; gap: 11px; align-items: flex-start; margin-top: 6px; }
.form-check input {
  width: 19px; height: 19px;
  margin-top: 3px;
  accent-color: var(--c-terra);
  flex-shrink: 0;
}
.form-check label { font-size: 13.5px; color: var(--c-muted); font-weight: 500; }
.form-check label a { color: var(--c-terra); font-weight: 700; }

/* ---------- Toast ---------- */
.toast-layer {
  position: fixed; inset: 0;
  z-index: 300;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.toast-layer.is-open { display: flex; }
.toast-layer__backdrop {
  position: absolute; inset: 0;
  background: rgba(24, 15, 7, .55);
  backdrop-filter: blur(4px);
  animation: fr-scale .25s var(--ease) both;
}
.toast-card {
  position: relative;
  background: var(--c-surface);
  border-radius: 24px;
  box-shadow: var(--shadow-2);
  padding: 38px 42px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  animation: fr-up .35s var(--ease) both;
}
.toast-card__icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
}
.toast-card__icon svg { width: 30px; height: 30px; }
.toast-card.is-ok .toast-card__icon { background: rgba(122, 132, 80, .16); color: var(--c-olive-d); }
.toast-card.is-err .toast-card__icon { background: rgba(200, 80, 30, .14); color: var(--c-terra); }
.toast-card h2 { font-size: 22px; margin-bottom: 8px; }
.toast-card p { font-size: 14.5px; color: var(--c-muted); }

/* ---------- Responsive ---------- */
@media (max-width: 1220px) {
  .burger { display: block; }
  .header-actions { display: none; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    width: 100%;
    max-width: 100vw;
    max-height: calc(100dvh - var(--header-offset, 64px));
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 24px 30px;
    background: var(--c-bg);
    border-top: 1px solid var(--c-line);
    box-shadow: 0 22px 40px rgba(120, 72, 28, .18);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .3s var(--ease), opacity .25s var(--ease), visibility 0s linear .3s;
  }
  .nav[data-open="true"] {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform .3s var(--ease), opacity .25s var(--ease), visibility 0s linear 0s;
  }
  .nav a { width: 100%; padding: 15px 0; font-size: 20px; border-bottom: 1px solid var(--c-line); }
  .nav a::after { display: none; }
  .nav-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 20px;
  }
  .nav-mobile-actions .lang-switch { width: 100%; padding: 4px; }
  .nav-mobile-actions .lang-switch a {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
    font-size: 15px;
  }
  .nav-mobile-actions .btn { width: 100%; justify-content: center; }
  .nav-mobile-actions .auth-user { justify-content: space-between; }

  .hero-sole__grid { gap: 44px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .games-teaser__grid, .games-catalog__grid { grid-template-columns: repeat(2, 1fr); }
  .why-sole__grid { grid-template-columns: repeat(3, 1fr); }
  .about-values__grid { grid-template-columns: repeat(2, 1fr); }
  .contact-main__grid { grid-template-columns: 1fr; }
  .contact-map__grid { grid-template-columns: 1fr; }
  .auth-card { grid-template-columns: 1fr; }
  .auth-card__media { display: none; }
}

@media (max-width: 820px) {
  body { font-size: 16px; }
  .hero-sole { padding-block: 48px 64px; }
  .hero-sole__grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-sole__visual { max-width: 520px; margin: 0 auto; }
  .hero-float--coins { left: -8px; }
  .hero-float--free { right: -4px; }
  .stats-sole__row { grid-template-columns: repeat(2, 1fr); gap: 28px; padding: 30px 26px; }
  .why-sole__grid, .steps-sole__grid, .coins-tiers__grid, .coins-how__grid,
  .mission-pillars__grid, .bm-streams__grid, .rp-habits__grid { grid-template-columns: 1fr; }
  .about-values__grid, .about-platform__grid, .bm-ethics__grid, .rp-resources__grid { grid-template-columns: 1fr; }
  .about-story__grid, .mission-promise__grid, .bm-explain__grid, .rp-signs__grid { grid-template-columns: 1fr; gap: 34px; }
  .coins-teaser__grid { grid-template-columns: 1fr; gap: 40px; }
  .coins-teaser__img { max-width: 480px; margin: 0 auto; }
  .why-sole, .games-teaser, .steps-sole, .coins-teaser, .about-values, .mission-promise, .bm-ethics, .rp-signs, .coins-how { padding-block: 60px; }
  .community-sole { padding-block: 80px; }
  .cta-final { padding-block: 70px 30px; }
  .cta-final__card { padding: 48px 30px; }
  .phero { padding-block: 48px 40px; }
  .pbanner { margin-bottom: 52px; }
  .sec-head { margin-bottom: 36px; }
  .auth-card__form { padding: 38px 28px; }
  .contact-form-card { padding: 30px 24px; }
  .contact-map__txt { padding: 30px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; padding-block: 46px 36px; }
  .footer-bottom__row { justify-content: center; text-align: center; }
  .legal-sec h2 { font-size: 20px; }
  .article-body, .legal-content, .faq-list, .games-catalog, .contact-map { padding-block: 0 64px; }
  .coins-note__card { flex-direction: column; padding: 26px 24px; }
}

@media (max-width: 520px) {
  .container { padding-inline: 16px; }
  .btn { white-space: normal; text-align: center; }
  .cta-final__card .btn { width: 100%; justify-content: center; }
  .games-teaser__grid, .games-catalog__grid { grid-template-columns: 1fr; }
  .hero-sole h1 { font-size: clamp(32px, 9.4vw, 40px); }
  .hero-sole__cta .btn { width: 100%; justify-content: center; }
  .community-sole__cta .btn { width: 100%; justify-content: center; }
  .hero-float { padding: 10px 14px; font-size: 12.5px; }
  .hero-float--coins { left: 0; top: 10%; }
  .hero-float--free { right: 0; bottom: 8%; }
  .stats-sole__row { grid-template-columns: 1fr 1fr; gap: 22px; }
  .cta-final__card { padding: 40px 22px; }
  .toast-card { padding: 30px 24px; }
  .games-filter { gap: 8px; }
  .games-filter button { padding: 9px 17px; font-size: 13.5px; }
  .footer-bottom__row { flex-direction: column; gap: 8px; }
}

@media (max-width: 430px) {
  .brand__name { font-size: 18px; }
  .brand img { width: 38px; height: 38px; }
  .phero h1 { font-size: clamp(28px, 8.6vw, 34px); }
  .legal-sec h2 { flex-direction: column; gap: 4px; }
}

@media (max-width: 360px) {
  .stats-sole__row { grid-template-columns: 1fr; }
  .btn { padding: 14px 22px; font-size: 14.5px; }
}
