:root {
  --c-black: #000;
  --c-text: #1e1e1e;
  --c-red: #e42421;
  --c-red-dark: #2b0104;
  --c-bg: #fff;
  --c-soft: #f1f1f1;
  --c-soft-2: #e7e7e7;
  --c-footer-line: rgba(147, 149, 176, 0.3);
  --topbar-height: 80px;
  --mobile-nav-height: 64px;
  --radius-pill: 24px;
  --radius-card: 10px;
}

@font-face {
  font-family: "Gordita";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/Gordita-Font/Gordita-Regular.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Gordita";
  font-style: normal;
  font-weight: 600;
  src: url("./fonts/Gordita-Font/Gordita-Medium.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Gordita";
  font-style: normal;
  font-weight: 700;
  src: url("./fonts/Gordita-Font/Gordita-Bold.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "sport-icon";
  src: url("./fonts/sport-icon.eot");
  src: url("./fonts/sport-icon.eot") format("embedded-opentype"),
       url("./fonts/sport-icon.ttf") format("truetype"),
       url("./fonts/sport-icon.woff") format("woff"),
       url("./fonts/sport-icon.svg") format("svg");
  font-style: normal;
  font-weight: 400;
  font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
  font-family: "sport-icon";
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-signal:before { content: "\e90b"; }
.icon-tv:before { content: "\e90e"; }
.icon-list:before { content: "\e911"; }
.icon-digitalcasino-product:before { content: "\e960"; }
.icon-entertainment:before { content: "\e965"; }
.icon-football:before { content: "\e967"; }
.icon-livedealer-product:before { content: "\e979"; }
.icon-sport-products:before { content: "\e99d"; }

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at 95% 6%, rgba(228, 36, 33, 0.06), transparent 30%),
    radial-gradient(circle at 6% 35%, rgba(228, 36, 33, 0.035), transparent 28%),
    var(--c-bg);
  color: var(--c-text);
  font-family: "Gordita", sans-serif;
  overflow-x: hidden;
}

a {
  color: var(--c-black);
}

.hidden {
  display: none !important;
}

/* Archived UI blocks (kept in markup for quick re-enable) */
.archived-hidden {
  display: none !important;
}

.container {
  width: min(1300px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding-top: calc(var(--topbar-height) + 18px);
  padding-bottom: calc(var(--mobile-nav-height) + 20px);
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(205, 209, 220, 0.42);
  backdrop-filter: blur(10px);
  height: var(--topbar-height);
}

.topbar-inner {
  width: min(1300px, calc(100% - 28px));
  margin: 0 auto;
  height: 100%;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.menu-toggle,
.side-close {
  border: 0;
  background: transparent;
  color: var(--c-black);
  font-size: 28px;
  cursor: pointer;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brandlogo {
  width: 160px;
  display: block;
}

.top-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-family: "Gordita", sans-serif;
}

.top-links a {
  position: relative;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.24s ease, transform 0.24s ease;
}

.top-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d2132b, #ff4b57);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.top-links a:hover {
  color: #d2132b;
  transform: translateY(-1px);
}

.top-links a:hover::after {
  transform: scaleX(1);
}

.top-links a.is-current {
  color: #d2132b;
}

.top-links a.is-current::after {
  transform: scaleX(1);
}

.auth-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.auth-buttons .btn {
  min-height: 42px;
  min-width: 102px;
  padding: 8px 18px;
  border-radius: 22px;
  font-weight: 600;
}

.auth-buttons .btn-solid {
  min-width: 122px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 2px solid var(--c-red);
  font-family: "Gordita", sans-serif;
  padding: 7px 16px;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.btn-outline {
  background: transparent;
  color: var(--c-black);
}

.btn-solid {
  background: var(--c-red);
  color: #fff;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(228, 36, 33, 0.2);
}

.hero-slider {
  position: relative;
  margin-top: 8px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(17, 18, 26, 0.22);
  isolation: isolate;
}

.hero-track {
  position: relative;
  display: flex;
  width: 100%;
  background: var(--c-soft);
  transform: translateX(0);
  transition: transform 0.78s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  display: block;
  aspect-ratio: 2000 / 606;
  background: linear-gradient(180deg, #8f0f1f 0%, #c31b2a 100%);
}

.hero-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  left: 0;
  bottom: -15%;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 98, 111, 0.92) 0%, rgba(255, 54, 74, 0.44) 46%, rgba(255, 54, 74, 0) 72%);
  opacity: var(--alpha);
  filter: blur(0.35px);
  transform: translate3d(var(--x-start), 0, 0);
  animation: hero-particle-float var(--duration) linear infinite;
  animation-delay: var(--delay);
}

@keyframes hero-particle-float {
  0% {
    transform: translate3d(var(--x-start), 0, 0) scale(var(--scale));
    opacity: 0;
  }
  8% {
    opacity: var(--alpha);
  }
  85% {
    opacity: var(--alpha);
  }
  100% {
    transform: translate3d(var(--x-end), -135%, 0) scale(calc(var(--scale) * 1.15));
    opacity: 0;
  }
}

.hero-dots {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 3;
  display: flex;
  gap: 9px;
  padding: 7px 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(20, 25, 36, 0.32) 0%, rgba(13, 17, 26, 0.52) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 8px 20px rgba(8, 10, 16, 0.2);
  backdrop-filter: blur(6px);
}

.dot {
  position: relative;
  border: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(210, 219, 234, 0.72) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 1px 4px rgba(0, 0, 0, 0.34);
  opacity: 0.72;
  transition: transform 0.24s ease, opacity 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
  overflow: hidden;
}

.dot::after {
  content: "";
  position: absolute;
  inset: 1px 1px auto 1px;
  height: 35%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  pointer-events: none;
}

.dot.active {
  transform: scale(1.16);
  opacity: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 210, 216, 0.95) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 0 0 1px rgba(255, 255, 255, 0.45), 0 0 14px rgba(228, 36, 33, 0.45);
}

.category-pills {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  width: 100%;
}

.category-pills li {
  min-width: 0;
}

.pill {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(189, 194, 205, 0.5);
  cursor: pointer;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
  color: var(--c-black);
  padding: 14px 14px;
  min-height: 54px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: normal;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 6px 14px rgba(20, 25, 37, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.pill::before {
  content: "";
  position: absolute;
  inset: -120% auto auto -28%;
  width: 52%;
  height: 300%;
  transform: rotate(20deg) translateX(-100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.3s ease;
  pointer-events: none;
}

.pill i {
  font-size: 18px;
  transition: transform 0.24s ease, color 0.24s ease;
}

.pill:hover {
  transform: translateY(-3px);
  border-color: rgba(228, 36, 33, 0.35);
  box-shadow: 0 14px 22px rgba(24, 25, 33, 0.12);
}

.pill:hover::before {
  transform: rotate(20deg) translateX(300%);
  opacity: 1;
}

.pill:hover i {
  transform: rotate(-12deg) scale(1.07);
  color: #d5162b;
}

.pill-active {
  border-color: transparent;
  background: linear-gradient(135deg, #e42421 0%, #c11124 100%);
  color: #fff;
  box-shadow: 0 14px 22px rgba(209, 23, 39, 0.28);
}

.pill-active:hover {
  box-shadow: 0 16px 26px rgba(209, 23, 39, 0.34);
}

.pill-active:hover i {
  color: #fff;
}

.iconme {
  color: var(--c-red);
}

.iconme-active {
  color: #fff;
}

.block {
  margin-top: 36px;
}

.block-title-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.block-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  padding-left: 12px;
}

.block-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 3px;
  height: 70%;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff5967 0%, #d9172e 100%);
}

.markets-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scrollbar-width: none;
}

.markets-row::-webkit-scrollbar {
  display: none;
}

.market-card {
  flex: 0 0 204px;
  height: 100px;
  border-radius: 10px;
  background: var(--c-soft);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.market-card:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 12px 24px rgba(19, 24, 33, 0.16);
}

.market-card img {
  max-width: 55%;
  max-height: 70%;
  object-fit: contain;
}

.rail-shell {
  position: relative;
}

.rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  margin: 0 26px;
  scrollbar-width: none;
}

.rail::-webkit-scrollbar {
  display: none;
}

.rail-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(228, 36, 33, 0.38);
  background: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #971327;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.rail-arrow:hover {
  transform: translateY(-50%) scale(1.08);
  color: #fff;
  background: linear-gradient(135deg, #ea3a42 0%, #ce162d 100%);
  box-shadow: 0 14px 24px rgba(209, 23, 39, 0.34);
}

.rail-arrow.prev {
  left: 0;
}

.rail-arrow.next {
  right: 0;
}

.game-card,
.provider-card {
  scroll-snap-align: start;
  flex: 0 0 25%;
  border-radius: 8px;
  background: var(--c-soft);
  position: relative;
  height: 196px;
  min-height: 196px;
  overflow: hidden;
  box-shadow: 0 9px 16px rgba(14, 17, 26, 0.11);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.game-card:hover,
.provider-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 24px rgba(14, 17, 26, 0.2);
}

.game-card-body {
  position: relative;
  height: 100%;
}

.game-card-body::after {
  content: "";
  position: absolute;
  left: -44%;
  top: -28%;
  width: 38%;
  height: 160%;
  pointer-events: none;
  transform: rotate(16deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  transition: transform 0.6s ease;
}

.game-card:hover .game-card-body::after {
  transform: translateX(500%) rotate(16deg);
}

.game-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(228, 36, 33, 0.18), rgba(0, 0, 0, 0.68));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.24s ease;
}

.game-card:hover .play-overlay {
  opacity: 1;
}

.play-circle {
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  background: rgba(224, 47, 79, 0.92);
  color: #fff;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.88);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 0 0 0 rgba(228, 36, 33, 0);
}

.game-card:hover .play-circle {
  transform: scale(1);
  box-shadow: 0 0 0 10px rgba(228, 36, 33, 0.17);
}

.game-name {
  position: absolute;
  inset: auto 8px 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 6px;
  padding: 5px 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.provider-card {
  background: #543837;
  height: 130px;
  min-height: 130px;
  cursor: pointer;
}

.provider-card.small {
  background: var(--c-red);
  height: 100px;
  min-height: 100px;
}

.provider-card img {
  width: 80%;
  height: 100%;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}

.promotions-page {
  padding-top: calc(var(--topbar-height) + 18px);
  padding-bottom: 52px;
  scroll-margin-top: calc(var(--topbar-height) + 14px);
  background: #fff;
}

.footer-section {
  position: relative;
  padding-top: 24px;
  padding-bottom: calc(var(--mobile-nav-height) + 20px);
  border-top: 1px solid #e7ebf3;
  background:
    radial-gradient(circle at 95% 2%, rgba(228, 36, 33, 0.06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
}

.footer-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd0d7 0%, #e42421 50%, #ffd0d7 100%);
}

.footer-section > .container {
  width: min(1300px, calc(100% - 28px));
}

.footer-section .footer {
  margin-top: 0;
  position: relative;
  border: 0;
  border-radius: 0;
  padding: 22px 0 16px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.footer-section .footer::before {
  content: none;
}

.promotions-block {
  position: relative;
  border-radius: 20px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e6e9f0;
  box-shadow: 0 18px 34px rgba(14, 17, 26, 0.08);
  overflow: hidden;
}

.promotions-block::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #f8c9d0 0%, #e42421 50%, #f8c9d0 100%);
}

.promotions-intro {
  margin: 0 0 16px;
  max-width: none;
  width: 100%;
  color: #606a7b;
  line-height: 1.55;
  font-size: 14px;
}

.promotions-intro-rich p {
  margin: 0 0 6px;
}

.promotions-intro-rich p:last-child {
  margin-bottom: 0;
}

.promo-accent {
  color: #d71f2c;
  font-weight: 700;
}

.promo-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(228, 36, 33, 0.22);
  background: rgba(228, 36, 33, 0.11);
  color: #b4142a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 11px;
}

.promo-hero-card {
  appearance: none;
  font-family: "Gordita", sans-serif;
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
  text-align: left;
  border: 1px solid rgba(228, 36, 33, 0.25);
  border-radius: 16px;
  background:
    radial-gradient(circle at 88% 14%, rgba(228, 36, 33, 0.18), transparent 36%),
    linear-gradient(140deg, #ffffff 0%, #fff4f5 58%, #ffeef0 100%);
  min-height: 190px;
  padding: 20px;
  color: #5d1624;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 14px 24px rgba(228, 36, 33, 0.12), 0 8px 16px rgba(16, 20, 31, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promo-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(228, 36, 33, 0.08));
  pointer-events: none;
}

.promo-hero-card::after {
  content: "";
  position: absolute;
  left: -34%;
  top: -30%;
  width: 30%;
  height: 170%;
  transform: rotate(20deg) translateX(-120%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  transition: transform 0.62s ease;
}

.promo-hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 30px rgba(228, 36, 33, 0.18), 0 10px 20px rgba(16, 20, 31, 0.08);
}

.promo-hero-card:hover::after {
  transform: rotate(20deg) translateX(440%);
}

.promo-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  max-width: 580px;
}

.promo-hero-content strong {
  font-size: clamp(23px, 2.2vw, 34px);
  line-height: 1.05;
  color: #44111d;
}

.promo-hero-content small {
  color: #7f4f5c;
  font-size: 13px;
}

.promo-vertical-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.promo-tile {
  appearance: none;
  font-family: "Gordita", sans-serif;
  position: relative;
  border: 1px solid #e1e5ee;
  border-radius: 15px;
  width: 100%;
  aspect-ratio: 456 / 600;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  text-align: left;
  color: #fff;
  padding: 14px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 12px 22px rgba(13, 16, 26, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.promo-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.promo-tile::after {
  content: "";
  position: absolute;
  left: -40%;
  top: -28%;
  width: 38%;
  height: 170%;
  transform: rotate(14deg) translateX(-120%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  transition: transform 0.6s ease;
}

.promo-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(228, 36, 33, 0.38);
  box-shadow: 0 22px 30px rgba(13, 16, 26, 0.18);
}

.promo-tile:hover::after {
  transform: rotate(14deg) translateX(460%);
}

.promo-tile-info {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
}

.promo-tile .promo-badge {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(20, 24, 34, 0.24);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.32);
}

.promo-tile strong {
  font-size: 23px;
  line-height: 1.05;
}

.promo-tile small {
  color: rgba(255, 255, 255, 0.98);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.36);
}

.promo-theme-1 {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.24), transparent 33%),
    linear-gradient(165deg, #ff4c5d 0%, #ed3144 52%, #bb122d 100%);
}

.promo-theme-2 {
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(170deg, #ff6677 0%, #eb3f56 50%, #b71634 100%);
}

.promo-theme-3 {
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.24), transparent 36%),
    linear-gradient(172deg, #ff7b6c 0%, #ef4f4d 48%, #bf1a2f 100%);
}

.promo-theme-4 {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.25), transparent 30%),
    linear-gradient(165deg, #ff8c73 0%, #f65d57 48%, #cb2237 100%);
}

.promo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(10, 14, 22, 0.52);
  backdrop-filter: blur(8px);
}

.promo-lightbox.open {
  display: flex;
}

.promo-lightbox-card {
  position: relative;
  width: min(920px, 100%);
  max-height: 92dvh;
  overflow: auto;
  border-radius: 18px;
  border: 1px solid #e4e8f1;
  background: #fff;
  box-shadow: 0 30px 56px rgba(0, 0, 0, 0.28);
  color: #222b3a;
}

.promo-lightbox-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #d9deea;
  background: #fff;
  color: #303a4b;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.promo-lightbox-close:hover {
  transform: scale(1.06);
  background: #e42421;
  color: #fff;
}

.promo-lightbox-banner {
  margin: 16px;
  border-radius: 14px;
  border: 1px solid #e7b2bd;
  --promo-lightbox-banner-ratio: 21 / 9;
  aspect-ratio: var(--promo-lightbox-banner-ratio);
  min-height: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  position: relative;
  overflow: hidden;
  background-color: #12060b;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(120deg, #ef2f34 0%, #d82249 44%, #991934 100%);
}

.promo-lightbox-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
}

.promo-lightbox-banner-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.26);
  color: #fff;
  padding: 7px 12px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.promo-lightbox-content {
  padding: 4px 20px 22px;
}

.promo-lightbox-kicker {
  display: inline-flex;
  color: #cd1e36;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.promo-lightbox-content h3 {
  margin: 10px 0 10px;
  font-size: clamp(26px, 2.7vw, 42px);
  line-height: 1;
  color: #202a3a;
}

.promo-lightbox-divider {
  width: min(180px, 40%);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff6b7f 0%, #e42421 100%);
}

.promo-lightbox-text {
  margin-top: 14px;
  display: grid;
  gap: 10px;
  color: #576274;
  font-size: 15px;
  line-height: 1.62;
}

.promo-lightbox-text p {
  margin: 0;
}

.promo-lightbox-text ul,
.promo-lightbox-text ol {
  margin: 0;
  padding-left: 18px;
}

.promo-lightbox-text h3,
.promo-lightbox-text h4 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.25;
  color: #273247;
}

.iframe-block .iframe-placeholder {
  border-radius: 10px;
  background: var(--c-soft);
  padding: 40px 24px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 10px;
}

.iframe-placeholder img {
  width: 120px;
}

.report-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.report-header {
  background: #c61b24;
  color: #fff;
  text-align: center;
  font-size: 32px;
  padding: 16px;
  letter-spacing: 1px;
}

.report-body {
  padding: 18px;
}

.report-filters {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.report-filters label {
  display: grid;
  gap: 6px;
  font-size: 13px;
}

.report-filters input {
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 10px;
}

.report-table {
  overflow-x: auto;
}

.report-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.report-table th,
.report-table td {
  border: 1px solid #ececec;
  padding: 8px;
  text-align: left;
  font-size: 14px;
}

.muted {
  color: #666;
}

.search-wrap {
  position: relative;
  max-width: 700px;
  margin: 0 auto 20px;
}

.search-wrap i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

.search-wrap input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  background: #2a0000;
  color: #fff;
  font-size: 15px;
  padding: 14px 44px;
}

.search-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.search-wrap button {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

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

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.footer {
  margin-top: 44px;
}

.footer-row {
  border-top: 1px solid var(--c-footer-line);
  padding-top: 34px;
}

.footer-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(180px, 250px) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo {
  width: 220px;
  max-width: 100%;
}

.footer-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.footer-feature {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 6px clamp(14px, 2vw, 26px);
}

.footer-feature:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: #e8ebf2;
}

.footer-feature-icon {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #fff6f8 0%, #fdecef 100%);
  box-shadow: inset 0 0 0 1px rgba(210, 35, 57, 0.08);
  color: #cd1b33;
  font-size: 30px;
}

.footer-feature-text {
  display: grid;
  gap: 4px;
}

.footer-feature-text strong {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
  color: #1d2738;
  font-weight: 700;
}

.footer-feature-text span {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #4f596d;
}

.footer-legal-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: stretch;
}

.footer-legal-left {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 28px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px clamp(26px, 2vw, 36px);
}

.footer-legal-right {
  display: flex;
  align-items: center;
  border-left: 1px solid #e8ebf2;
  padding-left: clamp(22px, 3vw, 44px);
}

.footer-legal-title {
  margin: 0 0 4px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1d2738;
}

.footer-legal-right p {
  margin: 0;
  color: #4f596d;
  font-size: 14px;
  line-height: 1.75;
  max-width: 670px;
}

.footer-legal-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #394660;
  padding: 0 0 2px;
  margin: 0;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-legal-link:hover {
  color: #cd1b33;
  transform: translateX(1px);
}

.footer-legal-link span {
  color: #cd1b33;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.footer-legal-link:hover span {
  transform: translateX(2px);
}

.footer-inline-link {
  display: inline;
  padding: 0;
  margin: 0;
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
  vertical-align: baseline;
  text-transform: none;
  color: #cd1b33;
  text-decoration: none;
  gap: 0;
}

.footer-inline-link:hover {
  transform: none;
  color: #a4142a;
}

.footer-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  border-top: 1px solid #e8ebf2;
  margin-top: 32px;
  padding-top: 22px;
  font-size: 12px;
  line-height: 1.8;
  padding-bottom: 16px;
  color: #626d81;
  column-gap: 18px;
}

.footer-copy p {
  margin: 0;
  grid-column: 1;
}

.back-top {
  grid-column: 2;
  margin: 0;
  justify-self: center;
  border: 1px solid #e4c4cb;
  background: linear-gradient(180deg, #fff7f8 0%, #ffecef 100%);
  color: #a4142a;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  padding: 10px 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.back-top:hover {
  transform: translateY(-2px);
  border-color: #d3384a;
  box-shadow: 0 10px 18px rgba(212, 33, 55, 0.18);
}

.mobile-nav {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 999;
  background: #16181b;
  height: var(--mobile-nav-height);
  display: none;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  padding: 0 8px;
}

.mobile-nav button {
  border: 0;
  background: transparent;
  color: #fff;
  display: grid;
  justify-items: center;
  gap: 4px;
  cursor: pointer;
}

.mobile-nav a {
  border: 0;
  background: transparent;
  color: #fff;
  display: grid;
  justify-items: center;
  gap: 4px;
  cursor: pointer;
  text-decoration: none;
}

.mobile-nav i {
  font-size: 24px;
}

.mobile-nav span {
  font-size: 10px;
  text-transform: uppercase;
  max-width: 65px;
}

.wp-container {
  position: fixed;
  z-index: 900;
  right: 30px;
  bottom: 30px;
  width: 60px;
  height: 60px;
  display: block;
}

.wp-container img {
  width: 100%;
  height: 100%;
}

.side-menu {
  position: fixed;
  z-index: 1200;
  left: -320px;
  top: 0;
  width: min(320px, 86vw);
  height: 100dvh;
  background: #fff;
  box-shadow: 12px 0 30px rgba(0, 0, 0, 0.18);
  transition: left 0.22s ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.side-menu.active {
  left: 0;
}

.side-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid #eee;
}

.logomobile {
  width: 66px;
  display: block;
}

.side-links {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
  overflow-y: auto;
}

.sidebar-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 12px;
  text-decoration: none;
  background: linear-gradient(135deg, #e42421 0%, #ca1328 100%);
  color: #fff;
  padding: 11px 14px;
  font-weight: 600;
  box-shadow: 0 8px 16px rgba(202, 19, 40, 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sidebar-btn i {
  width: 20px;
  text-align: center;
  font-size: 16px;
}

.sidebar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 18px rgba(202, 19, 40, 0.34);
}

.side-menu-auth {
  border-top: 1px solid #eceef4;
  padding: 14px 16px 18px;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.side-auth-btn {
  width: min(220px, 100%);
  min-height: 44px;
  font-size: 14px;
}

.side-auth-btn.btn-solid {
  border-color: #ca1328;
}

.side-join-blink {
  animation: join-now-blink 1.05s ease-in-out infinite;
}

@keyframes join-now-blink {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(228, 36, 33, 0);
  }
  50% {
    opacity: 0.68;
    box-shadow: 0 0 0 8px rgba(228, 36, 33, 0.17);
  }
}

.side-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 1100;
  transition: 0.2s ease;
}

.side-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.notice {
  position: fixed;
  right: 18px;
  top: calc(var(--topbar-height) + 10px);
  z-index: 1300;
  background: #111;
  color: #fff;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(-6px);
  transition: 0.2s ease;
  pointer-events: none;
  max-width: min(420px, calc(100vw - 40px));
}

.notice.show {
  opacity: 1;
  transform: translateY(0);
}

.modal-shell {
  position: fixed;
  inset: 0;
  z-index: 1400;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-shell.open {
  display: flex;
}

.modal-card {
  width: min(940px, 100%);
  max-height: 90dvh;
  background: var(--c-red-dark);
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.modal-card.modal-card-doc {
  width: min(1180px, 100%);
  height: min(88dvh, 860px);
  background: #ffffff;
  color: #1d2738;
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(14, 20, 32, 0.35);
}

.modal-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
  color: #000;
}

.modal-card.modal-card-doc .modal-head {
  padding: 18px 22px;
  border-bottom: 1px solid #e7ebf3;
}

.modal-head h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.modal-head button {
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.modal-body {
  overflow: auto;
  padding: 20px;
  line-height: 1.7;
}

.modal-body.modal-doc-content {
  padding: 18px 22px 22px;
  background: linear-gradient(180deg, #f8f9fc 0%, #f3f5fa 100%);
  overflow: hidden;
  min-height: 0;
  display: flex;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
  gap: 18px;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.policy-sidebar {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 14px;
  min-height: 0;
}

.policy-sidebar-card,
.policy-help-card {
  background: #fff;
  border: 1px solid #e6ebf3;
  border-radius: 14px;
}

.policy-sidebar-card {
  padding: 14px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
  min-height: 0;
}

.policy-badge {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff8f9 0%, #fff1f3 100%);
}

.policy-badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #ca1328;
  font-size: 22px;
  box-shadow: inset 0 0 0 1px rgba(202, 19, 40, 0.1);
}

.policy-badge strong {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  color: #ca1328;
}

.policy-nav {
  display: grid;
  gap: 6px;
  align-content: start;
  max-height: 380px;
  overflow: auto;
  padding-right: 4px;
}

.policy-nav-empty {
  font-size: 13px;
  color: #62708a;
}

.policy-nav-link {
  border: 0;
  background: transparent;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  text-align: left;
  padding: 9px 10px;
  border-radius: 10px;
  color: #42516d;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.policy-nav-link i {
  color: #7a869e;
  font-size: 13px;
}

.policy-nav-link.active {
  background: #fff1f3;
  color: #ca1328;
}

.policy-nav-link.active i {
  color: #ca1328;
}

.policy-nav-link:hover {
  transform: translateX(1px);
  background: #f3f6fb;
}

.policy-help-card {
  padding: 14px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.policy-help-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #fff8f9 0%, #fff1f3 100%);
  color: #ca1328;
  font-size: 22px;
}

.policy-help-text {
  display: grid;
  gap: 4px;
}

.policy-help-text strong {
  margin: 0;
  color: #1f2a3d;
  font-size: 18px;
  line-height: 1.2;
}

.policy-help-text span {
  margin: 0;
  color: #58657d;
  font-size: 13px;
}

.policy-help-text a {
  color: #ca1328;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.policy-main {
  background: #fff;
  border: 1px solid #e6ebf3;
  border-radius: 14px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  min-height: 0;
}

.policy-meta-bar {
  margin: 14px;
  margin-bottom: 0;
  border: 1px solid #e7ebf3;
  border-radius: 10px;
  background: #f4f7fc;
  padding: 11px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #50607c;
  font-size: 13px;
}

.policy-meta-bar i {
  color: #607492;
}

.policy-meta-bar strong {
  color: #24324a;
}

.policy-meta-divider {
  color: #98a7c1;
}

.policy-main-scroll {
  overflow: auto;
  padding: 14px;
  padding-top: 12px;
  min-height: 0;
}

.policy-content-section {
  padding: 12px 4px 12px;
}

.policy-content-section + .policy-content-section {
  border-top: 1px solid #edf1f7;
}

.policy-content-section h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #182438;
}

.policy-content-section p {
  margin: 0 0 10px;
  color: #33415b;
  font-size: 15px;
  line-height: 1.75;
}

.policy-content-section ul {
  margin: 0 0 12px 18px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.policy-content-section li {
  color: #33415b;
  font-size: 15px;
  line-height: 1.6;
}

.policy-table-wrap {
  margin: 10px 0 14px;
  border: 1px solid #dbe3f0;
  border-radius: 10px;
  overflow: auto;
  background: #fff;
}

.policy-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.policy-table thead th {
  background: #f4f7fc;
  color: #1f2d45;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid #dbe3f0;
}

.policy-table tbody td {
  color: #33415b;
  font-size: 14px;
  line-height: 1.45;
  padding: 9px 12px;
  border-bottom: 1px solid #e8eef8;
  vertical-align: top;
}

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

.modal-body p {
  margin: 0 0 12px;
}

@media (max-width: 1200px) {
  .promo-vertical-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .promotions-block {
    padding: 20px;
  }

  .promo-vertical-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo-tile {
    min-height: 280px;
  }
}

@media (max-width: 1120px) {
  .topbar-inner {
    grid-template-columns: auto auto 1fr;
  }

  .top-links {
    display: none;
  }

  .auth-buttons {
    justify-self: end;
  }

  .game-card,
  .provider-card {
    flex-basis: 25%;
  }

  .games-grid {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-highlights {
    grid-template-columns: 1fr;
  }

  .footer-feature {
    padding: 10px 0;
  }

  .footer-feature:not(:last-child)::after {
    content: none;
  }

  .footer-feature:not(:last-child) {
    border-bottom: 1px solid #e8ebf2;
  }

  .modal-card.modal-card-doc {
    width: min(980px, 100%);
  }

  .policy-layout {
    grid-template-columns: 280px minmax(0, 1fr);
  }
}

@media (min-width: 992px) {
  .game-card,
  .provider-card {
    flex-basis: 12.5%;
  }
}

@media (max-width: 768px) {
  :root {
    --topbar-height: 68px;
  }

  .container {
    width: calc(100% - 20px);
  }

  .topbar-inner {
    gap: 10px;
  }

  .brandlogo {
    width: 82px;
  }

  .auth-buttons {
    gap: 8px;
  }

  .auth-buttons .btn {
    min-height: 38px;
    min-width: 72px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .auth-buttons .btn-solid {
    min-width: 90px;
  }

  .hero-track {
    min-height: 0;
  }

  .hero-slide {
    aspect-ratio: 1280 / 712;
  }

  .hero-slide picture,
  .hero-slide img {
    height: auto;
  }

  .hero-slide img {
    object-fit: contain;
  }

  .hero-dots {
    right: 10px;
    bottom: 9px;
  }

  .promotions-block {
    padding: 16px;
  }

  .promotions-intro {
    font-size: 13px;
  }

  .promo-hero-card {
    min-height: 150px;
    padding: 16px;
  }

  .promo-hero-content strong {
    font-size: 24px;
  }

  .promo-vertical-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .promo-tile {
    aspect-ratio: 456 / 600;
    min-height: 280px;
  }

  .promo-tile strong {
    font-size: 21px;
  }

  .promo-lightbox {
    padding: 12px;
  }

  .promo-lightbox-banner {
    margin: 12px;
    min-height: 0;
  }

  .promo-lightbox-content {
    padding: 0 14px 18px;
  }

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

  .pill {
    min-height: 48px;
    font-size: 13px;
    padding: 11px 10px;
  }

  .game-card,
  .provider-card {
    flex-basis: 33.333%;
    height: 168px;
    min-height: 168px;
  }

  .provider-card {
    height: 125px;
    min-height: 125px;
  }

  .report-header {
    font-size: 22px;
  }

  .modal-shell {
    padding: 10px;
  }

  .modal-card.modal-card-doc {
    border-radius: 14px;
  }

  .modal-card.modal-card-doc .modal-head {
    padding: 14px;
    gap: 8px;
  }

  .modal-head h2 {
    font-size: 18px;
  }

  .modal-body.modal-doc-content {
    padding: 12px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .policy-sidebar {
    display: none;
  }

  .policy-sidebar-card {
    gap: 10px;
  }

  .policy-badge {
    padding: 7px;
  }

  .policy-badge-icon,
  .policy-help-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 18px;
  }

  .policy-badge strong {
    font-size: 15px;
  }

  .policy-nav {
    max-height: 210px;
  }

  .policy-nav-link {
    padding: 8px;
    font-size: 13px;
    gap: 8px;
  }

  .policy-help-text strong {
    font-size: 16px;
  }

  .policy-help-text span,
  .policy-help-text a {
    font-size: 13px;
  }

  .policy-meta-bar {
    margin: 10px;
    padding: 10px;
    font-size: 12px;
    gap: 6px;
  }

  .policy-meta-divider {
    display: none;
  }

  .policy-main-scroll {
    padding: 10px;
  }

  .policy-content-section h3 {
    font-size: 18px;
  }

  .policy-content-section p,
  .policy-content-section li {
    font-size: 14px;
  }

  .games-grid {
    grid-template-columns: repeat(2, minmax(135px, 1fr));
  }

  .footer-main,
  .footer-legal-grid {
    grid-template-columns: 1fr;
  }

  .footer-section {
    padding-top: 16px;
  }

  .footer-section .footer {
    padding: 16px 0 12px;
    border-radius: 0;
  }

  .footer-row {
    padding-top: 20px;
  }

  .footer-legal-grid {
    gap: 12px;
  }

  .footer-feature-icon {
    width: 58px;
    height: 58px;
    font-size: 22px;
  }

  .footer-feature-text strong {
    font-size: 16px;
  }

  .footer-feature-text span {
    font-size: 13px;
  }

  .footer-legal-left {
    gap: 14px;
  }

  .footer-legal-links {
    display: grid;
    gap: 10px;
  }

  .footer-legal-right {
    border-left: 0;
    border-top: 1px solid #e8ebf2;
    padding-left: 0;
    padding-top: 14px;
  }

  .footer-legal-link {
    font-size: 13px;
  }

  .footer-legal-right p {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.75;
  }

  .footer-copy {
    grid-template-columns: 1fr;
    margin-top: 20px;
    padding-top: 14px;
    font-size: 11px;
    gap: 10px;
  }

  .footer-copy p {
    grid-column: 1;
  }

  .back-top {
    grid-column: 1;
    justify-self: start;
  }

  .mobile-nav {
    display: grid;
  }

  .desktop-only {
    display: none !important;
  }

  .wp-container {
    right: 12px;
    bottom: calc(var(--mobile-nav-height) + 10px);
    width: 56px;
    height: 56px;
  }

  .modal-head h2 {
    font-size: 18px;
  }
}
