
@font-face {
  font-family: "Lato";
  src: url("shared/fonts/lato-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("shared/fonts/lato-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --top-strip-offset: 69px;
  --bg: linear-gradient(120deg, #020016 0%, #000e4e 100%);
  --header-bg: #04001a;
  --panel: #08112d;
  --panel-soft: #0b173a;
  --line: rgba(129, 161, 211, 0.14);
  --text: #ffffff;
  --muted: #b9c7ea;
  --gold: #f8f767;
  --gold-strong: #ffdf2b;
  --green: #03f295;
  --green-strong: #00d46d;
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  font-family: Lato, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding-bottom: 100px;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  -webkit-font-smoothing: antialiased;
}

body.is-modal-open {
  overflow: hidden;
  touch-action: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.site-shell {
  padding: 0 0 16px;
}

.top-strip {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(248, 247, 103, 0.25);
  background: var(--header-bg);
}

.top-strip__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 750px;
}

.top-strip__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1c294e, #0a142d);
  font-weight: 800;
  overflow: hidden;
}

.top-strip__badge img,
.header__logo img,
.footer__logo img {
  position: absolute;
  inset: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  object-fit: contain;
  object-position: center;
  display: block;
}

.top-strip__stars {
  display: flex;
  gap: 6px;
  color: var(--gold);
  font-size: 1rem;
}

.top-strip__cta {
  margin-left: auto;
  padding: 10px 18px;
  border-radius: 10px;
  background: #1d1f20;
  color: #fff;
  font-weight: 700;
  position: relative;
}

.top-strip__cta::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #5073b8, #07b39b, #6fba82);
  z-index: -1;
  background-size: 300% 300%;
  animation: ribbon 2.5s ease infinite;
}

.top-strip__close {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

.layout {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 10px;
  min-width: 0;
}

.header {
  position: sticky;
  top: var(--top-strip-offset);
  z-index: 50;
  margin-bottom: 22px;
  padding: 8px 0 10px;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 10px;
  min-width: 0;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.header__logo {
  position: relative;
  width: 64px;
  height: 54px;
  flex: 0 0 64px;
  display: grid;
  place-items: center;
  padding: 4px;
  background: linear-gradient(145deg, #160d00, #513100);
  color: var(--gold);
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 700;
  overflow: hidden;
}

.header__logo--fallback,
.top-strip__badge--fallback,
.footer__logo--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header__title strong {
  display: block;
  font-size: clamp(22px, 2.4vw, 26px);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header__brand-name {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header__brand-name--mobile {
  display: none;
}

.header__title > span {
  display: none;
}

.header__actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  min-width: 0;
}

.header__burger {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  cursor: pointer;
}

.header__burger span,
.header__burger span::before,
.header__burger span::after {
  display: block;
  width: 23px;
  height: 2px;
  background: #fff;
  position: relative;
}

.header__burger span::before,
.header__burger span::after {
  content: "";
  position: absolute;
  left: 0;
}

.header__burger span::before {
  top: -6px;
}

.header__burger span::after {
  bottom: -6px;
}

.header__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  max-width: 1230px;
  margin: 8px auto 0;
  padding: 0 10px;
}

.header__nav a {
  color: #fff;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.header__nav a[aria-current="page"],
.header__nav a:hover {
  color: var(--gold);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.button--ghost {
  border: 2px solid #ffffff;
  background: transparent;
  color: #fff;
}

.button--ghost:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #000;
}

.button--gold {
  border: 2px solid var(--gold);
  background: var(--gold);
  color: #000;
}

.button--gold:hover {
  border-color: var(--gold-strong);
  background: var(--gold-strong);
}

.button--primary {
  border: 2px solid var(--green);
  background: var(--green);
  color: #001d12;
  box-shadow: 0 0 18px rgba(3, 242, 149, 0.2);
}

.button--primary:hover {
  border-color: var(--green-strong);
  background: var(--green-strong);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mini-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 28px 0;
  min-width: 0;
}

.mini-line,
.category-rail,
.games-grid,
.quick-links {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.mini-line::-webkit-scrollbar,
.category-rail::-webkit-scrollbar,
.games-grid::-webkit-scrollbar,
.quick-links::-webkit-scrollbar {
  display: none;
}

.mini-game {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-game__icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent) 26%, #111), #090f1e);
  color: white;
  font-weight: 800;
  overflow: hidden;
}

.mini-game__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-game__name {
  text-transform: uppercase;
  font-size: 0.88rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 16px;
  margin-bottom: 28px;
  min-width: 0;
}

.hero__panel,
.hero__rail,
.menu-shell,
.section,
.entity-grid,
.footer,
.floating-banner,
.bottom-nav,
.roulette-modal__card,
.age-gate-modal__card,
.content-feature {
  background: rgba(4, 0, 26, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero__panel {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.hero__eyebrow,
.pill-row span,
.section__anchor,
.page-marker span {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border: 1px solid rgba(248, 247, 103, 0.45);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pill-row,
.page-marker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-row {
  margin: 16px 0;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(2.1rem, 4.4vw, 3.55rem);
  line-height: 0.94;
}

.hero p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 470px;
  font-size: 1rem;
}

.hero__rail {
  padding: 14px;
  min-width: 0;
  overflow: hidden;
}

.portal-slider {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 720 / 388;
}

.portal-slider__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.slide-card {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.38)),
    radial-gradient(circle at top right, rgba(248, 247, 103, 0.16), transparent 30%),
    linear-gradient(120deg, #07153c, #241e0d, #003334);
}

.slide-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.slide-card__tag {
  display: inline-flex;
  margin-bottom: auto;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.slide-card h2 {
  margin: 0 0 10px;
  max-width: 82%;
  font-size: clamp(1.55rem, 2.5vw, 2.3rem);
  line-height: 1.05;
  position: relative;
  z-index: 1;
  text-wrap: balance;
}

.slide-card p {
  max-width: 360px;
  margin: 0 0 16px;
  color: #e5e8f2;
  position: relative;
  z-index: 1;
  font-size: 0.98rem;
}

.slide-card .button {
  position: relative;
  z-index: 1;
}

.portal-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 2;
}

.portal-slider__arrow--prev {
  left: 12px;
}

.portal-slider__arrow--next {
  right: 12px;
}

.portal-slider__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.portal-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.portal-slider__dot.is-active {
  background: var(--gold);
}

.menu-shell {
  position: static;
  z-index: 20;
  margin-bottom: 18px;
  padding: 10px;
  background: rgba(3, 8, 37, 0.88);
  overflow: hidden;
}

.category-rail {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.category-rail a {
  position: relative;
  min-width: 0;
  min-height: 112px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(160deg, rgba(7, 18, 49, 0.96), rgba(4, 8, 26, 0.98));
}

.category-rail a > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.category-rail__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 26, 0.18) 0%, rgba(5, 10, 26, 0.42) 35%, rgba(5, 10, 26, 0.9) 100%),
    radial-gradient(circle at top right, rgba(248, 247, 103, 0.22), transparent 34%);
}

.category-rail__badge,
.category-rail strong {
  position: relative;
  z-index: 1;
}

.category-rail__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(5, 12, 30, 0.82);
  border: 1px solid rgba(248, 247, 103, 0.3);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.category-rail strong {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: -webkit-box;
  overflow: hidden;
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-wrap: balance;
  word-break: break-word;
}

.category-rail__tile--page strong {
  font-size: 0.8rem;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.quick-links a {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 17, 45, 0.94);
  min-width: 0;
}

.quick-links strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
}

.quick-links span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.section {
  margin-bottom: 14px;
  padding: 16px 18px;
  overflow: hidden;
}

.section--compact {
  margin-top: 0;
}

.section__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.section__head h2,
.entity-grid h2,
.content-copy h2,
.faq h2 {
  margin: 8px 0;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
}

.section__head p,
.entity-grid p,
.content-copy p,
.faq p,
.footer__block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.section__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(248, 247, 103, 0.38);
  border-radius: 999px;
  color: #fff;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.game-card {
  border-radius: 12px;
  overflow: hidden;
  background: #08112d;
  min-width: 0;
}

.game-card__visual {
  height: 138px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 10px;
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--accent) 45%, transparent), transparent 28%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 45%),
    linear-gradient(160deg, #2e294f, #0d1533);
}

.game-card__visual span {
  font-size: 1.15rem;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.game-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.game-card__tag {
  position: absolute;
  margin: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.56);
  font-size: 0.72rem;
  font-weight: 700;
}

.game-card__body {
  padding: 10px;
}

.game-card__body h3 {
  margin: 0 0 4px;
  font-size: 1.1rem;
}

.game-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.cta-pair {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 16px 0 18px;
}

.cta-pair--bottom {
  display: none;
}

.entity-grid {
  padding: 16px 20px;
  margin-bottom: 14px;
}

.content-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
  padding: 12px;
}

.content-visual {
  min-height: 196px;
  border-radius: 14px;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.18)),
    linear-gradient(130deg, #0f2b5c, #532962, #174a3d);
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}

.content-visual__tag {
  width: max-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 700;
}

.content-visual__image {
  width: 100%;
  height: 122px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.content-visual strong {
  font-size: clamp(1.02rem, 1.8vw, 1.38rem);
  line-height: 1.15;
}

.content-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.content-copy h2 {
  margin: 0;
  line-height: 1.06;
}

.content-copy p {
  font-size: 0.98rem;
  line-height: 1.6;
}

.faq {
  margin-bottom: 14px;
}

.faq-item {
  margin-bottom: 8px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(8, 19, 67, 0.92);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.faq-item button {
  width: 100%;
  padding: 15px 40px 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  color: #fff;
  font-weight: 700;
  background: transparent;
  position: relative;
  cursor: pointer;
  font-size: 1rem;
}

.faq-item button::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.3s ease;
}

.faq-item.is-open button::after {
  transform: translateY(-50%) rotate(-90deg);
}

.faq-item p {
  display: none;
  padding: 0 18px 18px;
  font-size: 0.96rem;
  line-height: 1.58;
}

.faq-item.is-open p {
  display: block;
}

.footer {
  margin-top: 18px;
  padding: 18px;
  background: var(--header-bg);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.footer__block h3 {
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.footer__block p {
  font-size: 0.95rem;
  max-width: 760px;
  margin: 0 auto;
}

.footer__logo {
  position: relative;
  width: 100px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  margin-bottom: 10px;
  border-radius: 6px;
  background: linear-gradient(145deg, #160d00, #513100);
  color: var(--gold);
  font-weight: 700;
  overflow: hidden;
}

.trust-grid {
  display: grid;
  gap: 8px;
}

.section--trust .trust-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.trust-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 8px;
  background: #202020;
  text-align: center;
  font-size: 0.95rem;
}

.section--trust .trust-grid span {
  min-height: 38px;
  padding: 0 13px;
}

.payments {
  display: block;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
  gap: 10px;
  width: 100%;
}

.payment-card {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 12px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    #202020;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 16px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.payment-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.16), transparent 38%);
  opacity: 0.65;
}

.payment-card__logo {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 900;
  font-size: 1.12rem;
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
  text-transform: none;
}

.payment-card--spei .payment-card__logo {
  font-size: 1.36rem;
  letter-spacing: -0.08em;
}

.payment-card--oxxo .payment-card__logo {
  padding: 6px 8px;
  border: 2px solid #e72c2c;
  border-radius: 6px;
  background: #f6d53b;
  color: #e72c2c;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.payment-card--visa .payment-card__logo,
.payment-card--paypal .payment-card__logo {
  font-style: italic;
}

.payment-card--gpay .payment-card__logo {
  font-size: 1rem;
  letter-spacing: -0.04em;
}

.payment-card--bitcoin .payment-card__logo,
.payment-card--ethereum .payment-card__logo {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: #202020;
  font-size: 0.86rem;
  letter-spacing: -0.04em;
}

.payment-card--usdt .payment-card__logo,
.payment-card--usdc .payment-card__logo {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #fff;
  font-size: 0.86rem;
}

.payment-card--mastercard .payment-card__logo {
  font-size: 0.68rem;
}

.payment-card--mastercard::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 18px 0 0 rgba(255, 255, 255, 0.78);
  opacity: 0.9;
}

.payment-card--mastercard .payment-card__logo {
  color: #111;
  z-index: 2;
}

.footer__legal {
  margin-top: 14px;
  text-align: center;
  color: #b6b6b6;
}

.footer__compliance {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  margin-top: 18px;
  padding: 18px 8px 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  align-items: start;
}

.footer__age,
.footer__payments {
  text-align: center;
}

.footer__age h3,
.footer__payments h3 {
  margin: 0 0 16px;
  text-transform: uppercase;
  font-size: clamp(1.04rem, 2.1vw, 1.34rem);
  line-height: 1.15;
  color: #fff;
}

.responsible-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 900;
}

.responsible-row__age {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.38);
  font-size: 1.25rem;
}

.responsible-row__aware {
  text-align: left;
  font-size: 1.55rem;
  line-height: 0.86;
  letter-spacing: -0.06em;
}

.footer__payments .payment-grid {
  grid-template-columns: repeat(4, minmax(72px, 1fr));
  max-width: 382px;
  margin: 0 auto;
}

.faq-item button::after {
  content: "\203A";
}

.floating-banner {
  position: fixed;
  right: 18px;
  bottom: 14px;
  z-index: 50;
  width: 214px;
  min-height: 74px;
  padding: 12px 38px 12px 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 4px 10px;
  border-radius: 18px;
  border: 1px solid rgba(248, 247, 103, 0.34);
  background:
    radial-gradient(circle at 14% 18%, rgba(248, 247, 103, 0.24), transparent 34%),
    linear-gradient(145deg, rgba(12, 22, 47, 0.96), rgba(3, 8, 25, 0.98));
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: width 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.floating-banner.is-expanded {
  width: 286px;
  min-height: 120px;
  transform: translateY(-2px);
  border-color: rgba(19, 230, 124, 0.55);
}

.floating-banner::before {
  content: "";
  position: absolute;
  inset: auto -24px -36px auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(19, 230, 124, 0.14);
  filter: blur(2px);
}

.floating-banner__badge {
  grid-row: 1 / 3;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff85c, #ffb12c);
  color: #151000;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(255, 177, 44, 0.22);
  z-index: 1;
}

.floating-banner h2 {
  margin: 0;
  color: #fff;
  font-size: 0.96rem;
  line-height: 1.05;
  z-index: 1;
}

.floating-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  line-height: 1.25;
  z-index: 1;
}

.floating-banner .button {
  grid-column: 1 / -1;
  display: none;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 0.82rem;
  z-index: 1;
}

.floating-banner.is-expanded .button {
  display: inline-flex;
}

.floating-banner__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  cursor: pointer;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 50;
  width: min(520px, calc(100vw - 28px));
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(2, 4, 15, 0.88);
  backdrop-filter: blur(12px);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transform: translateX(-50%);
}

.bottom-nav a {
  flex: 1;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(23, 31, 63, 0.98), rgba(8, 13, 30, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.bottom-nav a:nth-child(1) { border-color: rgba(19, 230, 124, 0.28); box-shadow: inset 0 3px 0 rgba(19, 230, 124, 0.82); }
.bottom-nav a:nth-child(2) { border-color: rgba(77, 150, 255, 0.28); box-shadow: inset 0 3px 0 rgba(77, 150, 255, 0.82); }
.bottom-nav a:nth-child(3) { position: relative; border-color: rgba(255, 182, 43, 0.28); box-shadow: inset 0 3px 0 rgba(255, 182, 43, 0.85); }
.bottom-nav a:nth-child(3)::after {
  content: "+20%";
  position: absolute;
  top: -14px;
  right: -2px;
  padding: 3px 6px;
  border-radius: 5px;
  background: #f0b436;
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
}
.bottom-nav a:nth-child(4) { border-color: rgba(248, 247, 103, 0.28); box-shadow: inset 0 3px 0 rgba(248, 247, 103, 0.85); }

.roulette-modal,
.age-gate-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 20px;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  height: 100dvh;
  overflow: hidden;
  overscroll-behavior: contain;
  isolation: isolate;
}

.spin-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(1.5px);
  pointer-events: none;
}

.roulette-modal.is-open,
.age-gate-modal.is-open {
  display: flex;
}

.roulette-modal__card,
.age-gate-modal__card {
  width: min(900px, 100%);
  padding: 28px;
  position: relative;
  background: rgba(3, 6, 20, 0.95);
}

.spin-modal {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  opacity: 0;
  transform: scale(0.85);
  animation: spinFadeIn 0.4s ease forwards;
}

.roulette-modal__close,
.age-gate-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10002;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  touch-action: manipulation;
}

.roulette-modal__body {
  display: grid;
  gap: 20px;
  justify-items: center;
  text-align: center;
  width: 100%;
}

.spin-shell {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(720px, 100%);
  padding: 24px 0 36px;
  gap: 0;
}

.spin__wrapp {
  position: relative;
  width: min(540px, 78vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 46px;
  overflow: visible;
}

.spin__wrapp::before {
  content: none;
}

.spin__pointer {
  position: absolute;
  top: -8px;
  left: 50%;
  z-index: 25;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-top: 42px solid #ffb12c;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.55));
}

.spin__disc {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #000;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.44);
  transition: transform 7s ease-in-out;
}

.spin__disc::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #0a0a0a;
  z-index: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0 42px rgba(255, 255, 255, 0.04);
}

.spin__disc::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  z-index: 1;
  background: linear-gradient(180deg, #ffe5c3, #fedf56 21%, #924e06 48%, #bd6908 73%, #ffa232);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.22),
    0 10px 18px rgba(0, 0, 0, 0.28);
}

.spin__face {
  position: absolute;
  inset: 18px;
  z-index: 2;
  border-radius: 50%;
  overflow: hidden;
}

.spin__face::before {
  content: none;
}

.spin__face::after {
  content: none;
}

.spin__wheel-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.spin__labels {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.spin__label {
  position: absolute;
  width: 112px;
  text-align: center;
  transform: translate(-50%, -50%) rotate(var(--label-rotation));
  transform-origin: center;
  white-space: nowrap;
}

.spin__label strong {
  display: block;
  font-size: 36px;
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: 0;
  background: linear-gradient(180deg, #ff4f23, #fff15e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.9px rgba(96, 32, 0, 0.34);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.34);
}

.spin__label span {
  display: block;
  margin-top: 3px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.spin__label--fs strong {
  font-size: 33px;
}

.spin__label--long strong {
  font-size: 31px;
}

.spin__label--light strong {
  background: linear-gradient(180deg, #ff8d1f, #ffac35);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.spin__label--light span {
  color: #2e4ca8;
}

.roulette-modal__center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 30;
  width: 137px;
  height: 137px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: center / cover no-repeat url("shared/icons/button-wheel.svg");
  color: #fff;
  font-size: 1.45rem;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  animation: wheelPulse 1.5s ease infinite;
  cursor: pointer;
  text-align: center;
}

.roulette-modal__center span {
  display: block;
  width: 64%;
  margin: 0 auto;
  line-height: 0.95;
}

.roulette-modal__center::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0.5;
  animation: btnGlow 1.5s ease infinite;
  background-color: red;
  box-shadow: 0 0 5px 5px red;
}

.spin__bottom {
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
  width: 52%;
  height: 48px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(248, 187, 88, 0.34), rgba(126, 58, 7, 0.28) 48%, rgba(0, 0, 0, 0) 72%);
  filter: blur(10px);
  opacity: 0.72;
  z-index: -1;
}

.roulette-modal__hint {
  max-width: 420px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.roulette-modal__result {
  display: none;
  width: min(360px, 82vw);
  margin: 0 auto;
  gap: 10px;
  justify-items: center;
  text-align: center;
  z-index: 35;
}

.roulette-modal.is-won .roulette-modal__result {
  display: grid;
}

.roulette-modal.is-won .roulette-modal__hint {
  display: none;
}

.roulette-modal__result strong {
  font-size: clamp(3rem, 10vw, 5rem);
  line-height: 0.9;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.roulette-modal__result p {
  margin: 0;
  color: #fff;
}

@keyframes spinFadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes btnGlow {
  0% {
    background-color: red;
    box-shadow: 0 0 5px 5px red;
  }
  50% {
    background-color: transparent;
    box-shadow: 0 0 5px 5px transparent;
  }
  100% {
    background-color: red;
    box-shadow: 0 0 5px 5px red;
  }
}

@keyframes wheelPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

.age-gate-modal__card {
  max-width: 420px;
  text-align: center;
}

.age-gate-modal__progress {
  height: 12px;
  margin: 18px 0 14px;
  border-radius: 6px;
  background: #222;
  overflow: hidden;
}

.age-gate-modal__progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, red, #fc0);
}

.age-gate-modal.is-open .age-gate-modal__progress span {
  animation: ageProgress 1.1s ease-out forwards;
}

.age-gate-modal__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(350px, 100%);
  margin: 0 auto;
}

.age-gate-modal__actions .button {
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
}

@keyframes ribbon {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@keyframes shine {
  0% { left: -60%; opacity: 0; }
  10% { opacity: 1; }
  50% { left: 120%; opacity: 1; }
  60%, 100% { left: 120%; opacity: 0; }
}

@keyframes ageProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 990px) {
  .header {
    top: var(--top-strip-offset);
  }

  .header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .header__burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero,
  .quick-links,
  .content-feature,
  .footer__grid,
  .mini-line {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 769px) and (max-width: 860px) {
  .floating-banner {
    display: none;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  }

  .header {
    top: var(--top-strip-offset);
  }

  .header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
  }

  .header__brand {
    grid-area: brand;
    min-width: 0;
    overflow: hidden;
  }

  .header__title {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .header__actions {
    grid-area: actions;
    flex: 0 0 auto;
    min-width: max-content;
  }
  .header__nav {
    grid-area: nav;
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding-top: 12px;
  }

  .header.is-open .header__nav {
    display: grid;
  }

  .portal-slider {
    min-height: 220px;
  }

  .portal-slider__arrow {
    width: 34px;
    height: 34px;
    font-size: 1.3rem;
  }

  .hero,
  .content-feature,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    padding: 20px;
  }

  .hero__rail {
    padding: 12px;
  }

  .portal-slider {
    min-height: 220px;
  }

  .slide-card {
    padding: 16px;
  }

  .slide-card h2 {
    font-size: clamp(1.35rem, 5vw, 2rem);
  }

  .slide-card p {
    margin-bottom: 12px;
    font-size: 0.92rem;
  }

  .mini-line {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .mini-game {
    min-width: 190px;
  }

  .quick-links {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .quick-links a {
    flex: 0 0 220px;
  }

  .menu-shell {
    position: static;
    margin-bottom: 14px;
    padding: 8px;
  }

  .category-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .category-rail a {
    min-width: 0;
    min-height: 96px;
  }

  .category-rail__badge {
    top: 8px;
    left: 8px;
    min-height: 21px;
    padding: 3px 8px;
    font-size: 0.62rem;
  }

  .category-rail strong {
    right: 8px;
    bottom: 8px;
    left: 8px;
    font-size: 0.72rem;
  }

  .games-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .game-card__visual {
    height: 116px;
  }

  .game-card__body {
    padding: 9px;
  }

  .game-card__body h3 {
    font-size: 1rem;
  }

  .game-card__body p {
    font-size: 0.84rem;
  }

  .button-row,
  .cta-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .button {
    width: auto;
    min-height: 42px;
    padding: 9px 14px;
  }

  .bottom-nav {
    padding: 8px;
  }

  .bottom-nav a {
    min-height: 48px;
    font-size: 0.78rem;
  }

  .floating-banner {
    display: none;
  }

  .menu-shell {
    top: auto;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 11vw, 3.2rem);
  }

  .hero p,
  .quick-links span {
    font-size: 0.92rem;
  }

  .section--catalog .section__head {
    margin-bottom: 8px;
  }

  .section--catalog .section__head p {
    display: none;
  }

  .section--catalog .section__head h2 {
    font-size: clamp(1.45rem, 5.4vw, 2rem);
  }

  .section--catalog .section__more {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .entity-grid,
  .content-feature,
  .faq {
    margin-bottom: 14px;
  }

  .content-copy p + p {
    margin-top: 10px;
  }

  .footer {
    margin-top: 16px;
  }

  .floating-banner,
  .floating-banner.is-expanded {
    right: 8px;
    bottom: 82px;
    width: min(226px, calc(100vw - 16px));
    height: auto;
    padding: 12px 50px 12px 12px;
    gap: 6px;
    border-radius: 14px;
  }

  .floating-banner h2 {
    font-size: 0.96rem;
  }

  .floating-banner p,
  .floating-banner .button {
    display: block;
    z-index: 1;
  }

  .floating-banner .button {
    min-height: 34px;
    padding: 0 14px;
    font-size: 0.86rem;
  }

  .bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    width: auto;
    display: flex;
    justify-content: space-between;
    gap: 6px;
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
    border-radius: 0;
    background: rgba(2, 4, 15, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 -3px 8px rgba(255, 255, 255, 0.1);
    transform: none;
  }

  .bottom-nav a {
    flex: 1;
    min-height: 46px;
    font-size: 0.88rem;
  }

  .bottom-nav a:nth-child(3)::after {
    top: -17px;
    right: -4px;
    font-size: 0.66rem;
  }
}

@media (max-width: 560px) {
  .top-strip {
    padding: 8px 10px;
  }

  .top-strip__cta {
    padding: 7px 11px;
    font-size: 0.82rem;
  }

  .top-strip__close {
    width: 22px;
    height: 22px;
  }

  .header__logo {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    padding: 5px;
    border-radius: 12px;
    font-size: 1.2rem;
  }

  .header__title strong {
    font-size: 1rem;
    max-width: clamp(84px, 31vw, 150px);
  }

  .header__brand-name--desktop {
    display: none;
  }

  .header__brand-name--mobile {
    display: block;
  }

  .header__actions {
    width: auto;
    gap: 8px;
  }

  .header__actions .button {
    padding: 8px 10px;
    min-height: 40px;
    font-size: 0.84rem;
  }

  .header__nav a {
    text-align: center;
    font-size: 0.9rem;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
  }

  .hero__panel,
  .hero__rail,
  .section,
  .content-feature,
  .entity-grid,
  .faq,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero__panel {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .hero__rail {
    padding: 10px;
  }

  .hero__eyebrow,
  .pill-row span {
    padding: 7px 12px;
    font-size: 0.72rem;
  }

  .pill-row {
    margin: 14px 0 12px;
    gap: 8px;
  }

  .pill-row span:last-child {
    display: none;
  }

  .hero h1 {
    margin-bottom: 8px;
    font-size: clamp(1.85rem, 10.6vw, 2.95rem);
    line-height: 0.95;
  }

  .hero p {
    margin-bottom: 14px;
    font-size: 0.88rem;
    line-height: 1.48;
  }

  .button-row .button {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 0.92rem;
  }

  .age-gate-modal__actions {
    gap: 10px;
  }

  .age-gate-modal__actions .button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.92rem;
  }

  .portal-slider {
    height: 25vh;
    min-height: 182px;
  }

  .slide-card {
    padding: 14px;
  }

  .slide-card__tag {
    font-size: 0.68rem;
  }

  .slide-card h2 {
    margin-bottom: 6px;
    font-size: 1.16rem;
    max-width: 220px;
  }

  .slide-card p,
  .slide-card .button,
  .portal-slider__arrow {
    display: none;
  }

  .portal-slider__dots {
    bottom: 10px;
  }

  .mini-line {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0 16px;
    overflow: visible;
    padding-bottom: 0;
  }

  .mini-game {
    min-width: 0;
    flex-direction: column;
    gap: 7px;
    align-items: center;
    text-align: center;
  }

  .mini-game__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .mini-game__name {
    font-size: 0.7rem;
    line-height: 1.15;
  }

  .quick-links {
    display: none !important;
  }

  .mini-line--secondary {
    display: none !important;
  }

  .category-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .category-rail a {
    min-height: 88px;
  }

  .category-rail__badge {
    top: 7px;
    left: 7px;
  }

  .category-rail strong {
    right: 7px;
    bottom: 7px;
    left: 7px;
    font-size: 0.68rem;
  }

  .game-card__visual {
    height: 110px;
  }

  .entity-grid {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .entity-grid h2 {
    font-size: 1.9rem;
    line-height: 1.02;
  }

  .entity-grid p {
    font-size: 0.94rem;
    line-height: 1.52;
  }

  .content-feature {
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .content-feature--3 {
    display: none;
  }

  .content-feature--2 .content-visual {
    display: none;
  }

  .content-visual {
    min-height: auto;
    padding: 12px;
  }

  .content-visual__image {
    height: 128px;
  }

  .content-copy h2 {
    font-size: 1.85rem;
    line-height: 1.06;
  }

  .content-copy p {
    font-size: 0.92rem;
    line-height: 1.52;
  }

  .content-copy p:last-of-type {
    display: none;
  }

  .cta-pair--bottom {
    display: none;
  }

  .section--trust .section__head {
    align-items: flex-start;
    gap: 10px;
  }

  .section--trust .section__head h2 {
    font-size: 1.85rem;
    line-height: 1.06;
  }

  .section--trust .section__head p {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .section--trust .button {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 0.88rem;
  }

  .section--trust .trust-grid span {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.82rem;
    line-height: 1.28;
  }

  .section--trust .payment-grid {
    gap: 8px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section--trust .payment-card {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .faq-item button {
    padding: 12px 34px 12px 14px;
    font-size: 0.82rem;
    line-height: 1.26;
  }

  .faq-item button::after {
    content: "\203A";
  }

  .footer {
    margin-top: 18px;
  }

  .footer__grid {
    gap: 14px;
  }

  .footer__block h3 {
    margin-bottom: 10px;
    font-size: 0.96rem;
  }

  .footer__block p,
  .footer__legal {
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .footer .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .footer .trust-grid span,
  .footer .payment-card {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .footer__compliance {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 18px;
    padding-top: 18px;
  }

  .footer__payments .payment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
  }

  .responsible-row__aware {
    font-size: 1.25rem;
  }

  .footer__logo {
    width: 72px;
    height: 72px;
    padding: 8px;
    border-radius: 14px;
  }

  .bottom-nav {
    gap: 5px;
    padding: 6px 6px calc(7px + env(safe-area-inset-bottom, 0px));
    background: rgba(2, 4, 15, 0.94);
  }

  .bottom-nav a {
    min-height: 42px;
    font-size: 0.78rem;
    border-radius: 11px;
  }

  .bottom-nav a:nth-child(3)::after {
    top: -15px;
    right: -3px;
  }

  .roulette-modal {
    align-items: flex-start;
    padding: max(12px, env(safe-area-inset-top, 0px)) 16px max(12px, env(safe-area-inset-bottom, 0px));
    background: transparent;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .spin-modal {
    width: 100%;
    align-items: flex-start;
  }

  .spin-shell {
    width: 100%;
    padding-top: 128px;
    padding-bottom: 0;
  }

  .roulette-modal__close {
    position: fixed;
    top: max(12px, env(safe-area-inset-top, 0px));
    right: max(12px, env(safe-area-inset-right, 0px));
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.92);
    background: rgba(6, 10, 24, 0.38);
  }

  .spin__wrapp {
    width: min(286px, 82vw);
    margin-bottom: 26px;
  }

  .spin__wrapp::before {
    content: none;
  }

  .spin__pointer {
    top: -5px;
    border-left-width: 18px;
    border-right-width: 18px;
    border-top-width: 31px;
  }

  .spin__disc::after {
    inset: 7px;
  }

  .spin__face {
    inset: 15px;
  }

  .spin__face::before {
    content: none;
  }

  .spin__label strong {
    font-size: 20px;
    -webkit-text-stroke: 0.6px rgba(96, 32, 0, 0.32);
  }

  .spin__label--fs strong {
    font-size: 18px;
  }

  .spin__label--small strong,
  .spin__label--long strong {
    font-size: 17px;
  }

  .spin__label {
    width: 58px;
  }

  .spin__label span {
    font-size: 9px;
  }

  .roulette-modal__center {
    width: 92px;
    height: 92px;
    font-size: 0.82rem;
  }

  .spin__bottom {
    bottom: -16px;
    width: 44%;
    height: 28px;
    opacity: 0.42;
  }

  .roulette-modal__hint {
    display: none;
  }

  .roulette-modal__result {
    width: min(320px, 86vw);
    gap: 8px;
  }

  .roulette-modal__result p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted);
  }

  .roulette-modal__result strong {
    font-size: 2.5rem;
  }

  .roulette-modal__result .button {
    min-height: 42px;
    padding: 9px 16px;
  }
}
