﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

img {
  max-width: 100%;
  height: auto;
}

body {
  font-family: var(--font);
  background: var(--bg-body);
  color: var(--text-main);
  min-height: 100vh;
  line-height: 1.5;
}

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


.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-header);
  border-bottom: 1px solid var(--bg-card-hover);
  overflow: visible;
}

.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  overflow: visible;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.logo__img {
  display: block;
  height: var(--header-h);
  width: auto;
  max-width: min(18rem, 55vw);
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 0.25rem;
  flex: 1;
  overflow: visible;
  scrollbar-width: none;
}

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

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.625rem;
  font-size: 0.8125rem;
  font-weight: 700;
  white-space: nowrap;
  color: var(--text-main);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.nav__icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  transition: transform 0.2s, filter 0.2s;
}

.nav__link:hover .nav__icon,
.nav__link--active .nav__icon {
  transform: scale(1.08);
  filter: brightness(1.12);
}

.nav__link:hover { color: var(--blue-brand); }

.nav__link--active {
  color: var(--blue-brand);
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: var(--blue-brand);
  border-radius: 2px 2px 0 0;
}

.nav__badge {
  display: inline-block;
  background: var(--yellow-accent);
  color: #000;
  font-size: 0.5rem;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 3px;
  margin-left: 4px;
  vertical-align: super;
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.5rem;
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 11.5rem;
  padding: 0.375rem;
  margin-top: 0.125rem;
  background: var(--bg-header);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.25rem);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 300;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu,
.nav__dropdown.is-open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav__link--trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.nav__link--trigger::after {
  content: '▾';
  font-size: 0.625rem;
  line-height: 1;
  opacity: 0.75;
}

.nav__link--trigger.nav__link--active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: var(--blue-brand);
  border-radius: 2px 2px 0 0;
}

.nav__link--trigger.nav__link--active::after {
  content: '▾';
  position: static;
  height: auto;
  width: auto;
  background: none;
  transform: none;
}

.nav__dropdown-link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-main);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav__dropdown-link:hover {
  background: rgba(0, 118, 238, 0.12);
  color: var(--blue-brand);
}

.nav__dropdown-link--active {
  color: var(--blue-brand);
  background: rgba(0, 118, 238, 0.08);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.header__menu-btn {
  display: none;
  position: relative;
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.header__menu-btn:hover {
  background: rgba(0, 118, 238, 0.12);
  border-color: rgba(0, 118, 238, 0.35);
}

.header__menu-btn-bar {
  display: block;
  width: 1.125rem;
  height: 2px;
  background: var(--text-main);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.header__menu-btn.is-active .header__menu-btn-bar:nth-child(1) {
  transform: translateY(0.4375rem) rotate(45deg);
}

.header__menu-btn.is-active .header__menu-btn-bar:nth-child(2) {
  opacity: 0;
}

.header__menu-btn.is-active .header__menu-btn-bar:nth-child(3) {
  transform: translateY(-0.4375rem) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: none !important;
  pointer-events: none !important;
  visibility: hidden;
}

.mobile-menu.is-open,
.mobile-menu.is-closing {
  display: block !important;
}

.mobile-menu.is-open {
  pointer-events: auto !important;
  visibility: visible;
}

.mobile-menu.is-closing {
  pointer-events: none !important;
  visibility: visible;
}

.mobile-menu:not(.is-open) *,
.mobile-menu.is-closing * {
  pointer-events: none !important;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 24, 0.72);
  backdrop-filter: blur(2px);
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(20rem, 88vw);
  height: 100%;
  background: var(--bg-header);
  border-left: 1px solid var(--border);
  box-shadow: -12px 0 32px rgba(0, 0, 0, 0.45);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: env(safe-area-inset-bottom);
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-h);
  padding: 0 1rem;
  border-bottom: 1px solid var(--border);
}

.mobile-menu__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-main);
}

.mobile-menu__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-main);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu__close:hover {
  background: rgba(255, 255, 255, 0.06);
}

.mobile-menu__nav {
  padding: 0.5rem 0 1rem;
}

.mobile-menu__nav .nav__dropdown {
  border-bottom: 1px solid var(--border);
}

.mobile-menu__nav .nav__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  border-radius: 0;
}

.mobile-menu__nav .nav__link--active {
  color: var(--blue-brand);
  background: rgba(0, 118, 238, 0.08);
}

.mobile-menu__nav .nav__link--active::after,
.mobile-menu__nav .nav__link--trigger.nav__link--active::before {
  display: none;
}

.mobile-menu__nav .nav__link--trigger::after {
  margin-left: auto;
  transition: transform 0.2s;
}

.mobile-menu__nav .nav__dropdown.is-open .nav__link--trigger::after {
  transform: rotate(180deg);
}

.mobile-menu__nav .nav__dropdown-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  display: none;
  min-width: 0;
  margin: 0;
  padding: 0 0 0.5rem;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: rgba(0, 0, 0, 0.15);
}

.mobile-menu__nav .nav__dropdown.is-open .nav__dropdown-menu {
  display: block;
}

.mobile-menu__nav .nav__dropdown-link {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.625rem 1rem 0.625rem 2.25rem;
  font-size: 0.875rem;
}

.mobile-menu__nav .nav__icon {
  width: 1.125rem;
  height: 1.125rem;
}

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(3.75rem + env(safe-area-inset-bottom));
  z-index: 95;
  display: none;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(180deg, rgba(12, 28, 49, 0.96) 0%, var(--bg-surface) 100%);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  pointer-events: none;
}

.mobile-sticky-cta__btn {
  flex: 1;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
}

.mobile-sticky-cta__btn--bonus {
  border-color: rgba(250, 255, 0, 0.45);
  color: var(--yellow-accent);
}

.mobile-sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

body.mobile-menu-open .mobile-sticky-cta {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

.header-gift {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.375rem;
  height: 2.375rem;
  padding: 0;
  border: 1px solid rgba(250, 255, 0, 0.35);
  border-radius: var(--radius-sm);
  background: rgba(250, 255, 0, 0.1);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.header-gift:hover {
  background: rgba(250, 255, 0, 0.18);
  box-shadow: 0 0 16px rgba(250, 255, 0, 0.25);
  transform: scale(1.05);
}

.header-gift.is-active {
  background: rgba(250, 255, 0, 0.22);
  border-color: var(--yellow-accent);
}

.header-gift__icon {
  font-size: 1.25rem;
  line-height: 1;
}

.header-gift__dot {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--red-hot);
  border-radius: 50%;
  border: 2px solid var(--bg-header);
  animation: gift-pulse 2s ease-in-out infinite;
}

@keyframes gift-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.85; }
}

.bonus-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s, visibility 0.22s;
}

.bonus-popup.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.bonus-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 41, 0.55);
  border: none;
  padding: 0;
  cursor: pointer;
}

.bonus-popup__panel {
  position: relative;
  z-index: 1;
  width: min(21rem, calc(100vw - 2rem));
  background: linear-gradient(155deg, #0076ee 0%, #0256b3 42%, #122640 100%);
  border: 1px solid rgba(142, 240, 197, 0.25);
  border-radius: var(--radius);
  padding: 1.375rem 1.25rem 1.25rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  transform: translateY(-0.75rem) scale(0.97);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.bonus-popup.is-open .bonus-popup__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.bonus-popup__close {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.bonus-popup__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.bonus-popup__badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--yellow-accent);
  background: rgba(250, 255, 0, 0.12);
  border: 1px solid rgba(250, 255, 0, 0.3);
  border-radius: 999px;
  padding: 0.25rem 0.625rem;
  margin-bottom: 0.75rem;
}

.bonus-popup__title {
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.375rem;
  padding-right: 1.5rem;
}

.bonus-popup__amount {
  font-size: 2rem;
  font-weight: 800;
  color: #8ef0c5;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.bonus-popup__note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
  margin-bottom: 1.125rem;
}

.bonus-popup__cta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.bonus-popup__cta .btn {
  flex: 1;
  min-width: 7rem;
}

.bonus-popup__terms {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.625rem;
  color: rgba(164, 209, 255, 0.55);
  text-align: center;
}

.bonus-popup__terms a {
  color: rgba(164, 209, 255, 0.75);
  text-decoration: underline;
}

.bonus-popup .btn--outline {
  border-color: rgba(255, 255, 255, 0.35);
}

.bonus-popup .btn--outline:hover {
  background: rgba(255, 255, 255, 0.18);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}

.btn:active { transform: scale(0.98); }

.btn--signin {
  background: var(--blue-brand);
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 118, 238, 0.35);
}

.btn--signin:hover {
  background: var(--blue-primary);
  box-shadow: 0 0 28px rgba(5, 129, 255, 0.5);
}

.btn--register {
  background: var(--green-cta);
  color: #fff;
  box-shadow: 0 0 20px rgba(22, 177, 74, 0.3);
}

.btn--register:hover {
  background: #18c452;
  box-shadow: 0 0 28px rgba(22, 177, 74, 0.45);
}

.btn--outline {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid var(--border);
}


.layout {
  max-width: var(--max-w);
  margin: 0 auto;
}

.main {
  padding: 1rem 1.5rem 3rem;
  min-width: 0;
}

.page-heading {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-heading__title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

@media (min-width: 768px) {
  .page-heading__title {
    font-size: 1.75rem;
  }
}


.hero-slider {
  position: relative;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-slider__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slider__track {
  display: flex;
  width: 100%;
  transition: transform 0.55s ease;
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  position: relative;
}

.hero-slider:not(.is-initialized) .hero-slide:not(.hero-slide--active) {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider__track {
    transition: none;
  }
}

.hero-slide__banner {
  position: relative;
  width: 100%;
  height: clamp(12.5rem, 28vw, 22rem);
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

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

.hero-slide__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 24, 41, 0.95) 0%, rgba(10, 24, 41, 0.72) 28%, rgba(10, 24, 41, 0.28) 55%, rgba(10, 24, 41, 0.08) 100%);
  pointer-events: none;
}

.hero-slide__overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 1.25rem 2rem 3.25rem;
  text-align: center;
}

.hero-slide__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0.25rem;
}

.hero-slide__value {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.1;
  color: #8ef0c5;
  margin-bottom: 0.375rem;
  letter-spacing: -0.02em;
}

.hero-slide__note {
  font-size: 0.8125rem;
  color: rgba(164, 209, 255, 0.72);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.hero-slide__cta {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(10, 24, 41, 0.75);
  color: var(--text-main);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.125rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.hero-slider__arrow:hover {
  background: rgba(0, 118, 238, 0.35);
  border-color: rgba(0, 118, 238, 0.5);
  color: #fff;
}

.hero-slider__arrow--prev { left: 0.75rem; }
.hero-slider__arrow--next { right: 0.75rem; }

.hero-slider__dots {
  position: absolute;
  bottom: 0.875rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.5rem;
}

.hero-slider__dot {
  width: 0.5rem;
  height: 0.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.hero-slider__dot--active {
  background: var(--blue-brand);
  transform: scale(1.2);
}

.hero-slider__dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.hero-slider__dot--active:hover {
  background: var(--blue-light);
}


.page-hero {
  position: relative;
  width: 100%;
  height: clamp(12.5rem, 28vw, 22rem);
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0, 118, 238, 0.2);
}

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

.page-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 24, 41, 0.95) 0%, rgba(10, 24, 41, 0.55) 40%, rgba(10, 24, 41, 0.15) 100%);
  pointer-events: none;
}

.page-hero__overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 1.25rem 2rem 1.75rem;
  text-align: center;
}

.page-hero__label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0.25rem;
}

.page-hero__value {
  font-size: clamp(1.375rem, 3.5vw, 2rem);
  font-weight: 800;
  color: #8ef0c5;
  line-height: 1.15;
  margin-bottom: 0.375rem;
}

.page-hero__note {
  font-size: 0.8125rem;
  color: rgba(164, 209, 255, 0.75);
  margin-bottom: 1rem;
}

.page-hero__cta {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #122640, #1a3556);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.cta-strip__text {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.cta-strip__text strong {
  color: var(--text-main);
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.breadcrumbs {
  margin: -0.25rem 0 1rem;
  font-size: 0.75rem;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--text-muted);
}

.breadcrumbs__item:not(:last-child)::after {
  content: "›";
  margin-left: 0.375rem;
  opacity: 0.55;
}

.breadcrumbs__item a {
  color: var(--blue-light);
}

.breadcrumbs__item a:hover {
  text-decoration: underline;
}

.breadcrumbs__item--current {
  color: var(--text-main);
  font-weight: 600;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  padding: 0.875rem 1rem;
  margin-bottom: 1.5rem;
  background: var(--bg-header);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-strip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.12);
  color: var(--blue-light);
  font-size: 0.6875rem;
  font-weight: 800;
  flex-shrink: 0;
}

.trust-strip__icon--18 {
  background: rgba(255, 80, 80, 0.15);
  color: #ff6b6b;
  font-size: 0.625rem;
}

.trust-strip strong {
  color: var(--text-main);
}

.content-table-wrap {
  overflow-x: auto;
  margin: 0.75rem 0 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.content-table {
  width: 100%;
  min-width: 28rem;
  border-collapse: collapse;
  font-size: 0.75rem;
}

.content-table th,
.content-table td {
  padding: 0.625rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.content-table th {
  background: var(--bg-header);
  color: var(--text-main);
  font-weight: 700;
}

.content-table td { color: var(--text-muted); }

.content-table tbody tr:last-child td { border-bottom: none; }

.content-prose {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.content-prose h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 1.5rem 0 0.625rem;
}

.content-prose h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-light);
  margin: 1rem 0 0.5rem;
}

.content-prose p { margin-bottom: 0.875rem; }

.content-prose ul,
.content-prose ol {
  margin: 0 0 0.875rem 1.25rem;
}

.content-prose li { margin-bottom: 0.375rem; }

.content-prose__steps {
  margin: 0.75rem 0 1rem 1.25rem;
  padding: 0;
}

.content-prose__steps li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.legal-prose {
  max-width: none;
  margin: 0;
}

/* ── Legal / Information pages ── */

.page-heading__subtitle {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-weight: 400;
}

.page-heading__meta {
  margin-top: 0.75rem;
}

.legal-updated {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
}

.legal-hero {
  position: relative;
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0, 118, 238, 0.25);
  min-height: clamp(9rem, 22vw, 12rem);
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, #0a2a4a 0%, #0d3d6b 45%, #0a1829 100%);
}

.legal-hero:has(img) {
  min-height: clamp(12rem, 28vw, 16rem);
}

.legal-hero--about {
  background: linear-gradient(135deg, #0a3d2e 0%, #0d5c45 45%, #0a1829 100%);
}

.legal-hero--terms {
  background: linear-gradient(135deg, #1a2a4a 0%, #243b6b 45%, #0a1829 100%);
}

.legal-hero--privacy {
  background: linear-gradient(135deg, #2a1a4a 0%, #3d2b6b 45%, #0a1829 100%);
}

.legal-hero--responsible {
  background: linear-gradient(135deg, #3d2a0a 0%, #6b4a0d 45%, #0a1829 100%);
}

.legal-hero--affiliate {
  background: linear-gradient(135deg, #0a2a3d 0%, #0d4a6b 45%, #0a1829 100%);
}

.legal-hero--contact {
  background: linear-gradient(135deg, #0a2540 0%, #0d3d6b 45%, #0a1829 100%);
}

.legal-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legal-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(10, 24, 41, 0.35) 0%, rgba(10, 24, 41, 0.88) 100%);
  pointer-events: none;
}

.legal-hero__pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.08;
  background-image: radial-gradient(circle at 20% 50%, #fff 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, #fff 1px, transparent 1px);
  background-size: 2rem 2rem;
  pointer-events: none;
}

.legal-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.25rem 1.5rem 1.5rem;
  text-align: center;
}

.legal-hero__label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.25rem;
}

.legal-hero__value {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  color: #8ef0c5;
  line-height: 1.15;
  margin-bottom: 0.375rem;
}

.legal-hero__note {
  font-size: 0.8125rem;
  color: rgba(164, 209, 255, 0.8);
}

.info-hub {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.info-hub__link {
  display: inline-flex;
  align-items: center;
  padding: 0.4375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.info-hub__link:hover {
  color: var(--text-main);
  border-color: rgba(0, 118, 238, 0.4);
}

.info-hub__link--active {
  color: var(--text-main);
  background: rgba(0, 118, 238, 0.15);
  border-color: var(--blue-brand);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 13rem) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 5rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.legal-toc__title {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.legal-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.legal-toc__link {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.375rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.legal-toc__link:hover {
  color: var(--blue-light);
  background: rgba(255, 255, 255, 0.03);
}

.info-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 0.875rem;
}

.info-card {
  padding: 1.125rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color 0.2s;
}

.info-card:hover {
  border-color: rgba(0, 118, 238, 0.35);
}

.info-card__icon {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.info-card__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.375rem;
}

.info-card__text {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

.help-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}

.help-card {
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 3px solid var(--blue-brand);
}

.help-card--urgent {
  border-left-color: #e85d04;
  background: rgba(232, 93, 4, 0.06);
}

.help-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.375rem;
}

.help-card__text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 0.625rem;
}

.help-card__link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue-light);
  text-decoration: none;
}

.help-card__hotline {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--text-main);
}

.help-card__hotline strong {
  color: var(--green-cta);
}

.legal-callout {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 1rem 1.125rem;
  margin-bottom: 1.25rem;
  background: rgba(0, 118, 238, 0.08);
  border: 1px solid rgba(0, 118, 238, 0.25);
  border-radius: var(--radius);
}

.legal-callout--warn {
  background: rgba(232, 93, 4, 0.08);
  border-color: rgba(232, 93, 4, 0.3);
}

.legal-callout__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
}

.legal-callout__body {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.legal-callout__body strong {
  color: var(--text-main);
}

.legal-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 0.875rem;
  margin: 1rem 0 1.5rem;
  counter-reset: legal-step;
}

.legal-step {
  position: relative;
  padding: 1.125rem 1rem 1rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.legal-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--blue-light);
  background: rgba(0, 118, 238, 0.15);
  border-radius: 50%;
  margin-bottom: 0.625rem;
}

.legal-step__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.375rem;
}

.legal-step__text {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

.legal-related {
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.legal-related__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.legal-related__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.legal-related__link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue-light);
  text-decoration: none;
  padding: 0.375rem 0.75rem;
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: border-color 0.2s;
}

.legal-related__link:hover {
  border-color: var(--blue-brand);
  text-decoration: none;
}

.cta-strip--legal {
  background: linear-gradient(90deg, rgba(0, 118, 238, 0.12) 0%, rgba(0, 200, 120, 0.08) 100%);
}

.legal-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}

.legal-tool {
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.legal-tool__icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-tool__title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.legal-tool__text {
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 767px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .legal-toc {
    position: static;
  }

  .legal-toc__list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-hub {
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .legal-prose--narrow {
    max-width: 48rem;
  }
}

.content-prose a {
  color: var(--blue-brand);
  text-decoration: underline;
}

@media (max-width: 767px) {
  .page-hero { height: clamp(14rem, 52vw, 18rem); }
  .page-hero__overlay { padding: 1rem 1rem 1.5rem; }
  .cta-strip { flex-direction: column; align-items: stretch; text-align: center; }
  .trust-strip { flex-direction: column; align-items: center; text-align: center; }
}


.section { margin-bottom: 2rem; }

.section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.section__title {
  font-size: 1.25rem;
  font-weight: 700;
}

#faq .section__title {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (min-width: 1200px) {
  .section__title { font-size: 1.5rem; }
}

.section__more {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue-brand);
  cursor: pointer;
}

.section__more:hover { text-decoration: underline; }

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.quick-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.25rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.quick-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.quick-card__icon {
  font-size: 2rem;
  line-height: 1;
}

.quick-card__name {
  font-size: 0.8125rem;
  font-weight: 700;
  text-align: center;
  text-transform: capitalize;
}

.quick-card__new {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--yellow-accent);
  color: #000;
  font-size: 0.5625rem;
  font-weight: 700;
  padding: 2px 8px;
  border-bottom-left-radius: 30%;
  border-top-right-radius: var(--radius);
}


.events-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.event-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 0;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  min-height: 14rem;
}

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

.event-card__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(8, 15, 28, 0.96) 0%, rgba(8, 15, 28, 0.82) 45%, rgba(8, 15, 28, 0.45) 100%);
  pointer-events: none;
}

.event-card__content {
  position: relative;
  z-index: 2;
  padding: 1rem;
  min-height: 14rem;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  border-color: rgba(0, 118, 238, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.event-card__league {
  font-size: 0.625rem;
  color: rgba(164, 209, 255, 0.85);
  text-align: center;
  margin-top: auto;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.event-card .odd-btn {
  background: rgba(8, 15, 28, 0.55);
  backdrop-filter: blur(4px);
  border-color: rgba(164, 209, 255, 0.15);
}

.event-card .odd-btn:hover {
  border-color: rgba(0, 118, 238, 0.5);
  background: rgba(0, 118, 238, 0.2);
}

.event-card__live {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--red-hot);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  align-self: flex-start;
  padding: 0.125rem 0.5rem;
  background: rgba(8, 15, 28, 0.65);
  border-radius: 999px;
  border: 1px solid rgba(241, 0, 51, 0.35);
}

.event-card__dot {
  width: 6px;
  height: 6px;
  background: var(--red-hot);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.event-card__teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.event-card__team {
  text-align: center;
  flex: 1;
}

.event-card__team-icon {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.event-card__team-name {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.event-card__score {
  font-size: 1.25rem;
  font-weight: 800;
  padding: 0 0.75rem;
}

.event-card__odds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.375rem;
}

.odd-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.375rem;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.odd-btn:hover {
  background: rgba(0, 118, 238, 0.15);
  border-color: var(--blue-brand);
}

.odd-btn__label {
  font-size: 0.5625rem;
  color: var(--text-muted);
  display: block;
}

.odd-btn__value {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--blue-light);
}


.slider {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(164,209,255,0.2) transparent;
  padding-bottom: 0.5rem;
}

.section__count {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
  gap: 0.75rem;
}

.games-grid .game-card {
  flex: unset;
  width: 100%;
}

.hub-games-section {
  margin-bottom: 0.25rem;
}

a.game-card,
a.crash-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.game-card,
.crash-card {
  flex: 0 0 10.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  position: relative;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.game-card:hover,
.crash-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 118, 238, 0.4);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
}

.game-card__thumb,
.crash-card__thumb {
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-header);
}

.game-card__thumb img,
.crash-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  inset: 0;
}

.game-card__thumb:has(img)::after,
.crash-card__thumb:has(img)::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(5, 12, 24, 0.15) 0%,
    rgba(5, 12, 24, 0.45) 45%,
    rgba(5, 12, 24, 0.88) 100%
  );
  transition: opacity 0.22s ease;
}

.game-card:hover .game-card__thumb:has(img)::after,
.crash-card:hover .crash-card__thumb:has(img)::after {
  opacity: 0.95;
}

.game-card__overlay,
.crash-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.125rem;
  padding: 0.5rem 0.625rem 0.625rem;
  pointer-events: none;
  overflow: hidden;
  box-sizing: border-box;
}

.game-card__rtp,
.game-card__stat,
.crash-card__stat {
  position: absolute;
  top: 0.5rem;
  right: 0.625rem;
  left: auto;
  z-index: 1;
  margin: 0;
  max-width: calc(50% - 0.75rem);
  font-size: 0.5625rem;
  font-weight: 700;
  line-height: 1.2;
  color: rgba(164, 209, 255, 0.9);
  white-space: nowrap;
  background: rgba(8, 15, 28, 0.78);
  border: 1px solid rgba(22, 177, 74, 0.28);
  border-radius: 999px;
  padding: 0.1875rem 0.4375rem;
  text-shadow: none;
  box-sizing: border-box;
}

.game-card__provider,
.crash-card__provider {
  position: absolute;
  top: 0.5rem;
  left: 0.625rem;
  right: auto;
  z-index: 1;
  max-width: calc(100% - 3rem);
  margin: 0;
  font-size: 0.5rem;
  font-weight: 600;
  color: rgba(164, 209, 255, 0.92);
  line-height: 1.15;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  background: rgba(8, 15, 28, 0.78);
  border: 1px solid rgba(164, 209, 255, 0.22);
  border-radius: 0.375rem;
  padding: 0.125rem 0.375rem;
  text-shadow: none;
  box-sizing: border-box;
  letter-spacing: -0.01em;
}

.game-card__name,
.crash-card__name {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 0.125rem;
  box-sizing: border-box;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.game-card__rtp strong,
.game-card__stat strong,
.crash-card__stat strong {
  color: var(--green-cta);
  font-weight: 800;
}

.game-card__badge,
.game-card__multiplier,
.crash-card__multiplier {
  display: none;
}

.game-card__body,
.crash-card__body {
  display: none;
}

.game-card__thumb--1,
.game-card__thumb--2,
.game-card__thumb--3,
.game-card__thumb--4,
.game-card__thumb--5,
.game-card__thumb--6,
.game-card__thumb--7,
.game-card__thumb--8,
.game-card__thumb--9,
.game-card__thumb--10,
.game-card__thumb--11,
.game-card__thumb--12,
.game-card__thumb--13,
.game-card__thumb--14,
.game-card__thumb--15,
.game-card__thumb--16,
.game-card__thumb--17,
.game-card__thumb--18,
.game-card__thumb--19,
.crash-card__thumb--aviator,
.crash-card__thumb--jetx,
.crash-card__thumb--tower,
.crash-card__thumb--chicken,
.crash-card__thumb--balloon,
.crash-card__thumb--mines {
  background: linear-gradient(160deg, #1a3556, #0076ee);
}

.game-card__thumb--1 { background: linear-gradient(160deg, #1a3556, #0076ee); }
.game-card__thumb--2 { background: linear-gradient(160deg, #2d1b4e, #f10033); }
.game-card__thumb--3 { background: linear-gradient(160deg, #1a3a2a, #16b14a); }
.game-card__thumb--4 { background: linear-gradient(160deg, #3a2a1a, #faa930); }
.game-card__thumb--5 { background: linear-gradient(160deg, #1a2a3a, #039be5); }
.game-card__thumb--6 { background: linear-gradient(160deg, #3a1a2a, #ff6b9d); }

.game-card__jackpot {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.75);
  padding: 0.375rem;
  font-size: 0.5625rem;
  font-weight: 700;
  text-align: center;
  color: var(--yellow-accent);
}

/* ── Individual pokie game page ── */

.game-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.game-demo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.game-demo__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.625rem 1rem;
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
}

.game-demo__label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-cta);
}

.game-demo__notice {
  margin: 0;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.game-demo__iframe-wrap {
  position: relative;
  width: 100%;
  min-height: 31.25rem;
  aspect-ratio: 16 / 9;
  background: #000;
}

.game-demo__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.game-demo__iframe-wrap--cover {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.game-demo__cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16 / 9;
}

.game-demo__cover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.game-demo__cover-text {
  font-size: 0.9375rem;
  color: #fff;
  max-width: 22rem;
  line-height: 1.5;
}

.game-demo__cta {
  position: relative;
  width: 100%;
  margin-top: 0.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  max-height: 13.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.game-demo__cta-cover {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.game-demo__cta-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.88) 100%);
}

.game-demo__cta-text {
  margin: 0;
  font-size: 0.8125rem;
  color: #fff;
  max-width: 26rem;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .game-demo__cta {
    max-height: 11.5rem;
  }
  .game-demo__cta-overlay {
    padding: 0.875rem 1rem;
    gap: 0.625rem;
  }
}

.game-demo__bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  background: var(--bg-header);
  border-top: 1px solid var(--border);
}

.game-demo__fullscreen {
  white-space: nowrap;
}

.game-demo:fullscreen,
.game-demo:-webkit-full-screen {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-width: none;
  border: none;
  border-radius: 0;
  background: #000;
}

.game-demo:fullscreen .game-demo__iframe-wrap,
.game-demo:-webkit-full-screen .game-demo__iframe-wrap {
  flex: 1;
  min-height: 0;
  aspect-ratio: unset;
}

.game-demo:fullscreen .game-demo__head,
.game-demo:-webkit-full-screen .game-demo__head,
.game-demo:fullscreen .game-demo__bar,
.game-demo:-webkit-full-screen .game-demo__bar {
  flex-shrink: 0;
}

.game-demo--fs {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-width: none;
  border: none;
  border-radius: 0;
  background: #000;
}

.game-demo--fs .game-demo__iframe-wrap {
  flex: 1;
  min-height: 0;
  aspect-ratio: unset;
}

body.game-demo-fs-active {
  overflow: hidden;
}

.game-page-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.game-specs {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.125rem;
}

.game-specs__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.875rem;
}

.game-specs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}

.game-specs__item {
  padding: 0.625rem 0.75rem;
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.game-specs__label {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.game-specs__value {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-main);
}

.game-specs__value--highlight {
  color: var(--green-cta);
}

.game-cta-box {
  padding: 1.125rem;
  background: linear-gradient(135deg, rgba(0, 118, 238, 0.15) 0%, rgba(22, 177, 74, 0.1) 100%);
  border: 1px solid rgba(0, 118, 238, 0.25);
  border-radius: var(--radius);
}

.game-cta-box__text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.875rem;
  line-height: 1.45;
}

.game-cta-box__text strong {
  color: var(--text-main);
}

.game-related {
  display: flex;
  gap: 0.625rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}

.game-related .game-card {
  flex: 0 0 10.5rem;
}

@media (max-width: 767px) {
  .game-page-hero {
    grid-template-columns: 1fr;
  }

  .game-specs__grid {
    grid-template-columns: 1fr 1fr;
  }

  .game-demo__bar {
    flex-direction: column;
    align-items: stretch;
  }

  .game-demo__bar .btn {
    width: 100%;
    justify-content: center;
  }

  .game-demo__iframe-wrap {
    min-height: 18.75rem;
    aspect-ratio: 4 / 3;
  }
}


.sports-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}

.sport-chip {
  background: rgba(164, 209, 255, 0.05);
  border-radius: var(--radius);
  height: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  cursor: pointer;
  transition: background 0.2s;
}

.sport-chip:hover { background: rgba(164, 209, 255, 0.12); }

.sport-chip__icon { font-size: 1.25rem; }

.sport-chip__name {
  font-size: 0.6875rem;
  text-transform: capitalize;
}


.bonus-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.bonus-card {
  border-radius: var(--radius);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  color: #fff;
  text-decoration: none;
  background-color: var(--bg-card);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 7.5rem;
}

.bonus-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(8, 15, 28, 0.82) 0%, rgba(8, 15, 28, 0.55) 45%, rgba(8, 15, 28, 0.15) 100%);
  pointer-events: none;
  transition: opacity 0.2s;
}

.bonus-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.bonus-card:hover::before {
  opacity: 0.88;
}

.bonus-card--welcome {
  background-image: url('../img/bonuses/bonus-welcome.webp');
}

.bonus-card--cashback {
  background-image: url('../img/bonuses/bonus-cashback.webp');
}

.bonus-card--vip {
  background-image: url('../img/bonuses/bonus-vip.webp');
  border: 1px solid rgba(255, 215, 120, 0.2);
}

.bonus-card__label,
.bonus-card__amount,
.bonus-card__desc,
.bonus-card__arrow {
  position: relative;
  z-index: 1;
}

.bonus-card__label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.375rem;
}

.bonus-card__amount {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.bonus-card__desc {
  font-size: 0.75rem;
  opacity: 0.8;
}

.bonus-card__arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  opacity: 0.5;
}


.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
}

.stat {
  text-align: center;
}

.stat__value {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--blue-light);
}

.stat__label {
  font-size: 0.625rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}


.racing-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.race-card {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.race-card:hover {
  border-color: rgba(0, 118, 238, 0.35);
  background: var(--bg-card-hover);
}

.race-card__time {
  text-align: center;
  min-width: 3rem;
}

.race-card__time-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue-light);
}

.race-card__time-label {
  font-size: 0.5625rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.race-card__info { min-width: 0; }

.race-card__venue {
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 0.125rem;
}

.race-card__detail {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.race-card__runners {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
}

.race-card__runner {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}

.race-card__runner:hover {
  background: rgba(0, 118, 238, 0.15);
  border-color: var(--blue-brand);
}

.race-card__runner-odds {
  color: var(--blue-light);
  margin-left: 0.25rem;
}

.race-card__cta {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--blue-brand);
  white-space: nowrap;
}


/* Legacy alias — use .game-card in markup */
a.crash-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.crash-card {
  flex: 0 0 10.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  position: relative;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.crash-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 118, 238, 0.4);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
}

.crash-card__thumb--aviator { background: linear-gradient(160deg, #3a1020, #f10033); }
.crash-card__thumb--jetx { background: linear-gradient(160deg, #1a2040, #0076ee); }
.crash-card__thumb--tower { background: linear-gradient(160deg, #1a3020, #16b14a); }
.crash-card__thumb--chicken { background: linear-gradient(160deg, #3a3010, #faa930); }
.crash-card__thumb--balloon { background: linear-gradient(160deg, #4a1030, #ff4d8d); }
.crash-card__thumb--mines { background: linear-gradient(160deg, #1a2838, #039be5); }


.fixtures-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.fixtures-tab {
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.fixtures-tab--active {
  background: var(--blue-brand);
  border-color: var(--blue-brand);
  color: #fff;
}

.fixtures-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fixture-row {
  display: grid;
  grid-template-columns: 5rem 1fr auto;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  transition: border-color 0.2s;
}

.fixture-row:hover { border-color: rgba(0, 118, 238, 0.35); }

.fixture-row[hidden] {
  display: none !important;
}

.fixtures-list[data-active-sport="cricket"] .fixture-row[data-sport="football"],
.fixtures-list[data-active-sport="football"] .fixture-row[data-sport="cricket"] {
  display: none !important;
}

.fixture-row__datetime {
  text-align: center;
}

.fixture-row__date {
  font-size: 0.5625rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.fixture-row__time {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--blue-light);
}

.fixture-row__match {
  min-width: 0;
}

.fixture-row__league {
  font-size: 0.5625rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.125rem;
}

.fixture-row__teams {
  font-size: 0.8125rem;
  font-weight: 600;
}

.fixture-row__odds {
  display: flex;
  gap: 0.375rem;
}

.fixture-row__odd {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.375rem 0.625rem;
  text-align: center;
  cursor: pointer;
  min-width: 3rem;
  transition: background 0.2s, border-color 0.2s;
}

.fixture-row__odd:hover {
  background: rgba(0, 118, 238, 0.15);
  border-color: var(--blue-brand);
}

.fixture-row__odd-label {
  font-size: 0.5rem;
  color: var(--text-muted);
  display: block;
}

.fixture-row__odd-value {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--blue-light);
}


.wins-feed {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.win-item {
  display: grid;
  grid-template-columns: auto auto 1fr auto auto;
  align-items: center;
  gap: 0.875rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
}

.win-item__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.win-item__icon--pokie { background: linear-gradient(135deg, #1a3556, #0076ee); }
.win-item__icon--crash { background: linear-gradient(135deg, #3a1020, #f10033); }
.win-item__icon--sport { background: linear-gradient(135deg, #1a3a2a, #16b14a); }
.win-item__icon--live { background: linear-gradient(135deg, #2d1b4e, #7b61ff); }

.win-item__info { min-width: 0; }

.win-item__player {
  font-size: 0.8125rem;
  font-weight: 600;
}

.win-item__player span {
  color: var(--text-muted);
  font-weight: 400;
}

.win-item__player span::before {
  content: '·';
  margin: 0 0.25rem;
  opacity: 0.6;
}

.win-item__game {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.win-item__amount {
  font-size: 1rem;
  font-weight: 800;
  color: var(--yellow-accent);
  white-space: nowrap;
}

.win-item__time {
  font-size: 0.625rem;
  color: var(--text-muted);
  white-space: nowrap;
}


.app-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, #122640 0%, #1a3556 50%, #0d2847 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.app-banner::before {
  content: '';
  position: absolute;
  right: -2rem;
  top: -2rem;
  width: 14rem;
  height: 14rem;
  background: radial-gradient(circle, rgba(0, 118, 238, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.app-banner__tag {
  display: inline-block;
  background: var(--yellow-accent);
  color: #000;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  text-transform: uppercase;
  margin-bottom: 0.625rem;
}

.app-banner__title {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 0.375rem;
}

.app-banner__desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: 28rem;
}

.app-banner__features {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.app-banner__feature {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.app-banner__feature strong { color: var(--text-main); }

.app-banner__buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  min-width: 8.75rem;
  height: 2.75rem;
  padding: 0 0.875rem 0 0.75rem;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.5rem;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.store-badge:hover {
  background: #111;
  border-color: rgba(255, 255, 255, 0.4);
}

.store-badge:active {
  transform: scale(0.98);
}

.store-badge__icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.store-badge__icon--google {
  width: 1.375rem;
  height: 1.375rem;
}

.store-badge__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.store-badge__label {
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
}

.store-badge--google .store-badge__label {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.store-badge__name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.app-banner__right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.app-banner__phones {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-banner__phones img {
  display: block;
  width: auto;
  height: auto;
  max-height: 16rem;
  max-width: 100%;
  object-fit: contain;
}


.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s;
  list-style: none;
}

.faq-item__question::-webkit-details-marker { display: none; }

.faq-item__question:hover { background: rgba(255,255,255,0.03); }

.faq-item[open] .faq-item__question {
  border-bottom: 1px solid var(--border);
  color: var(--blue-light);
}

.faq-item__icon {
  font-size: 1.25rem;
  color: var(--text-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item[open] .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  padding: 0.875rem 1.25rem 1.125rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-item__answer a {
  color: var(--blue-brand);
  text-decoration: underline;
}


.seo-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}

.seo-block__inner {
  padding: 1.5rem 1.5rem 0;
}

.seo-block__fade {
  position: absolute;
  bottom: 4.5rem;
  left: 0;
  right: 0;
  height: 6rem;
  background: linear-gradient(to bottom, transparent, var(--bg-card));
  pointer-events: none;
  transition: opacity 0.3s;
}

.seo-block--expanded .seo-block__fade {
  opacity: 0;
}

.seo-block__toggle-wrap {
  padding: 1rem 1.5rem 1.375rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.seo-block__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--blue-brand);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  padding: 0.625rem 1.5rem;
  box-shadow: 0 0 20px rgba(0, 118, 238, 0.35);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.seo-block__toggle::after {
  content: '';
  display: inline-block;
  width: 0.4375rem;
  height: 0.4375rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -0.1875rem;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.seo-block--expanded .seo-block__toggle::after {
  transform: rotate(-135deg);
  margin-top: 0.125rem;
}

.seo-block__toggle:hover {
  background: var(--blue-primary);
  box-shadow: 0 0 28px rgba(5, 129, 255, 0.5);
  color: #fff;
}

.seo-block__toggle:active {
  transform: scale(0.98);
}

.seo-content h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 1.5rem 0 0.625rem;
}

.seo-content h2:first-child { margin-top: 0; }

.seo-section--media {
  display: grid;
  gap: 1.25rem;
  margin: 1.75rem 0 2rem;
  align-items: center;
}

.seo-section__figure {
  margin: 0;
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(0, 118, 238, 0.22);
  background: var(--bg-header);
  box-shadow:
    0 0.5rem 1.5rem rgba(0, 0, 0, 0.35),
    0 0 2rem rgba(0, 118, 238, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.seo-section__figure::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    165deg,
    rgba(0, 118, 238, 0.12) 0%,
    transparent 42%,
    rgba(10, 24, 41, 0.15) 100%
  );
}

.seo-section__figure::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.seo-section__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.seo-section__caption {
  position: relative;
  z-index: 2;
  font-size: 0.6875rem;
  color: var(--text-subtle);
  padding: 0.625rem 0.875rem;
  border-top: 1px solid rgba(0, 118, 238, 0.15);
  background: linear-gradient(180deg, rgba(18, 38, 64, 0.85), rgba(12, 28, 49, 0.95));
}

@media (hover: hover) {
  .seo-section__figure:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 118, 238, 0.4);
    box-shadow:
      0 0.75rem 2rem rgba(0, 0, 0, 0.4),
      0 0 2.5rem rgba(0, 118, 238, 0.22);
  }

  .seo-section__figure:hover img {
    transform: scale(1.04);
  }
}

.seo-section--media .seo-section__content h2 {
  margin-top: 0;
}

@media (min-width: 48rem) {
  .seo-section--media {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.5rem;
  }

  .seo-section--media-right .seo-section__figure {
    order: 2;
  }

  .seo-section--media-right .seo-section__content {
    order: 1;
  }
}

.seo-content p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.875rem;
}

.seo-content h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-light);
  margin: 1rem 0 0.5rem;
}

.seo-content ol {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 0.875rem 1.25rem;
}

.seo-content ul {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 0.875rem 1.125rem;
}

.seo-content li { margin-bottom: 0.375rem; }

.seo-table-wrap {
  overflow-x: auto;
  margin: 0.75rem 0 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.seo-table {
  width: 100%;
  min-width: 28rem;
  border-collapse: collapse;
  font-size: 0.75rem;
}

.seo-table th,
.seo-table td {
  padding: 0.625rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.seo-table th {
  background: var(--bg-header);
  color: var(--text-main);
  font-weight: 700;
  white-space: nowrap;
}

.seo-table td {
  color: var(--text-muted);
}

.seo-table tbody tr:last-child td {
  border-bottom: none;
}

.seo-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.seo-content li strong {
  color: var(--text-main);
  font-weight: 600;
}

.seo-content a:not(.btn):not(.seo-toc-pills__link) {
  color: var(--blue-brand);
  text-decoration: underline;
}

.seo-content a:not(.btn):not(.seo-toc-pills__link):hover {
  color: var(--blue-light);
}

/* Horizontal TOC pill navigation */
.seo-toc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin: 0 0 1.25rem;
  padding: 0;
}

.seo-toc-pills__link {
  display: inline-flex;
  align-items: center;
  padding: 0.3125rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(164, 209, 255, 0.18);
  background: rgba(12, 28, 49, 0.65);
  color: var(--text-muted);
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.seo-toc-pills__link--sub {
  font-weight: 500;
  font-size: 0.625rem;
  padding: 0.25rem 0.625rem;
  opacity: 0.92;
}

.seo-toc-pills__link:hover,
.seo-toc-pills__link:focus-visible {
  background: rgba(0, 118, 238, 0.14);
  border-color: rgba(0, 118, 238, 0.45);
  color: var(--text-main);
  box-shadow: 0 0 0.75rem rgba(0, 118, 238, 0.12);
}

.seo-toc-pills__link--active,
.seo-toc-pills__link:active {
  background: rgba(0, 118, 238, 0.22);
  border-color: var(--blue-brand);
  color: #fff;
}

/* Key facts cards */
.seo-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 40rem) {
  .seo-facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.seo-facts__card {
  background: linear-gradient(145deg, rgba(0, 118, 238, 0.12), rgba(12, 28, 49, 0.9));
  border: 1px solid rgba(0, 118, 238, 0.22);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.875rem;
  text-align: center;
}

.seo-facts__value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue-light);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.seo-facts__label {
  font-size: 0.625rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Callout boxes */
.seo-callout {
  display: flex;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  margin: 0.875rem 0;
  border-left: 3px solid;
  font-size: 0.8125rem;
  line-height: 1.65;
}

.seo-callout p {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}

.seo-callout__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-align: center;
  opacity: 0.9;
}

.seo-callout--info {
  background: rgba(0, 118, 238, 0.08);
  border-color: var(--blue-brand);
  color: var(--text-muted);
}

.seo-callout--tip {
  background: rgba(34, 197, 94, 0.08);
  border-color: #22C55E;
  color: var(--text-muted);
}

.seo-callout--warning {
  background: rgba(251, 191, 36, 0.08);
  border-color: #FBBF24;
  color: var(--text-muted);
}

/* Section dividers */
.seo-divider {
  border: none;
  height: 1px;
  margin: 1.75rem 0;
  background: linear-gradient(90deg, transparent, var(--border) 15%, rgba(0, 118, 238, 0.35) 50%, var(--border) 85%, transparent);
}

/* Inline CTA within SEO content — uses standard .btn / .btn--register / .btn--outline */
.seo-cta-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem 0 1.5rem;
  padding: 1.125rem 1.25rem;
  background: linear-gradient(160deg, rgba(0, 118, 238, 0.08), rgba(12, 28, 49, 0.4));
  border: 1px solid rgba(0, 118, 238, 0.22);
  border-radius: var(--radius);
}

/* Prevent .seo-content link styles from overriding button CTAs inside SEO blocks */
.seo-block a.btn,
.seo-cta-inline a.btn {
  text-decoration: none;
}

.seo-block a.btn--register,
.seo-cta-inline a.btn--register {
  color: #fff;
  background: var(--green-cta);
  box-shadow: 0 0 20px rgba(22, 177, 74, 0.3);
}

.seo-block a.btn--register:hover,
.seo-cta-inline a.btn--register:hover {
  color: #fff;
  background: #18c452;
  box-shadow: 0 0 28px rgba(22, 177, 74, 0.45);
}

.seo-block a.btn--outline,
.seo-cta-inline a.btn--outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.seo-block a.btn--outline:hover,
.seo-cta-inline a.btn--outline:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
}

/* FAQ styling within SEO context */
.seo-faq.faq-list {
  margin-top: 0.5rem;
}

.seo-content h2[id],
.seo-content h3[id] {
  scroll-margin-top: 5rem;
}


.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 1.5rem 1.5rem 1.25rem;
  margin-top: 1.5rem;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.footer__brand {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
}

.footer__brand-logo {
  display: inline-block;
  line-height: 0;
}

.footer__brand-logo img {
  height: 2.25rem;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
}

.footer__tagline {
  font-size: 0.8125rem;
  color: var(--text-muted);
  max-width: 22rem;
  line-height: 1.5;
}

.footer__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.25rem;
}

.footer__section-title {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-subtle);
  margin-bottom: 0.5rem;
}

.footer__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.footer__pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.5rem;
  height: 2rem;
  padding: 0 0.625rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
}

.footer__pay-icon {
  width: 2.75rem;
  height: 1.25rem;
  display: block;
}

.footer__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.footer__trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  white-space: nowrap;
}

.footer__trust-pill svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}

.footer__trust-pill--age {
  font-weight: 800;
  border-color: var(--text-muted);
}

.footer__trust-pill--link {
  transition: color 0.2s, border-color 0.2s;
}

.footer__trust-pill--link:hover {
  color: var(--text-main);
  border-color: var(--blue-brand);
}

.footer__providers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.footer__provider-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer__social-link svg {
  width: 1.125rem;
  height: 1.125rem;
}

.footer__social-link:hover {
  color: var(--text-main);
  border-color: var(--blue-brand);
  background: var(--bg-card-hover);
}

.footer__social-link--sharechat svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer__nav {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem 2rem;
  align-items: start;
  margin-bottom: 1.25rem;
}

.footer__app {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  padding: 0.75rem 0.875rem;
  min-width: 11.5rem;
  max-width: 14rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.footer__app .footer__section-title {
  margin-bottom: 0;
}

.footer__app-desc {
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

.footer__app-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.footer__store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.625rem;
  color: var(--text-main);
  background: var(--bg-body);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.footer__store-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.footer__store-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer__store-btn strong {
  font-size: 0.75rem;
  font-weight: 700;
}

.footer__store-btn:hover {
  border-color: var(--blue-brand);
  background: var(--bg-card-hover);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 2rem;
  margin-bottom: 0;
}

.footer__col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}

.footer__link {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
  transition: color 0.2s;
}

.footer__link:hover { color: var(--text-main); }

.footer__link--active { color: var(--blue-light); }

.footer__responsible {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--yellow-accent);
}

.footer__responsible-title {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer__responsible-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer__responsible-text a {
  color: var(--blue-brand);
  text-decoration: underline;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.footer__age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.75rem;
}


.mob-subnav {
  display: none;
  background: var(--bg-header);
  border-bottom: 1px solid var(--bg-card-hover);
  overflow-x: auto;
  scrollbar-width: none;
}

.mob-subnav::-webkit-scrollbar { display: none; }

.mob-subnav__inner {
  display: flex;
  gap: 0;
  padding: 0.375rem 1rem;
}

.mob-subnav__link {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.375rem 0.75rem;
  white-space: nowrap;
}

.mob-subnav__link--active {
  color: var(--blue-light);
  box-shadow: inset 0 -2px 0 var(--blue-brand);
}


.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  z-index: 100;
  padding-bottom: env(safe-area-inset-bottom);
}

.bottom-nav__list {
  display: flex;
  list-style: none;
}

.bottom-nav__item {
  flex: 1;
  text-align: center;
}

.bottom-nav__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0.5rem 0.25rem;
  font-size: 9px;
  color: var(--text-muted);
}

.bottom-nav__btn--active { color: var(--text-main); }

.bottom-nav__icon { font-size: 1.25rem; }

.bottom-nav__center {
  position: relative;
}

.bottom-nav__center-btn {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: var(--blue-brand);
  border-radius: 0.5625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 0 13px rgba(0, 118, 238, 0.4);
}


@media (max-width: 1199px) {
  .hero-slide__banner {
    height: clamp(12rem, 36vw, 20rem);
  }

  .hero-slide__overlay {
    padding: 1rem 1.5rem 3rem;
  }

  .sports-grid { grid-template-columns: repeat(4, 1fr); }
  .nav { display: none; }
  .header__menu-btn { display: inline-flex; }

  .header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas:
      "spacer logo menu"
      "actions actions actions";
    height: auto;
    min-height: var(--header-h);
    padding-top: 0.5rem;
    padding-bottom: 0.625rem;
    gap: 0.625rem 0.75rem;
    align-items: center;
  }

  .logo {
    grid-area: logo;
    justify-self: center;
    min-width: 0;
  }

  .header__menu-btn {
    grid-area: menu;
    justify-self: end;
  }

  .header__actions {
    grid-area: actions;
    width: 100%;
  }

  .header__actions .btn {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .header__inner { gap: 0.5rem 0.75rem; }
  .logo__img {
    height: 3.25rem;
    max-width: min(15rem, 58vw);
  }
  .btn { padding: 0.5rem 1rem; font-size: 0.75rem; }
  .hero-slide__banner { height: clamp(14rem, 52vw, 18rem); }
  .hero-slide__value { font-size: 1.375rem; }
  .hero-slide__note { font-size: 0.75rem; margin-bottom: 0.75rem; }
  .hero-slide__overlay { padding: 0.875rem 1rem 2.75rem; }
  .hero-slide__cta .btn { padding: 0.5rem 0.875rem; font-size: 0.6875rem; }
  .hero-slider__arrow { width: 2rem; height: 2rem; font-size: 1.25rem; }
  .page-heading__title { font-size: 1.25rem; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .events-row { grid-template-columns: 1fr; }
  .bonus-strip { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .sports-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 0.875rem; }
  .footer__nav { grid-template-columns: 1fr; gap: 1rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 1rem 1.25rem; }
  .footer__row { grid-template-columns: 1fr; gap: 0.75rem; }
  .footer__app { max-width: none; min-width: 0; }
  .footer__app-buttons { flex-direction: row; flex-wrap: wrap; }
  .footer__store-btn { flex: 1 1 auto; min-width: 0; }
  .bottom-nav { display: block; }
  .mobile-sticky-cta { display: flex; }
  .main { padding-bottom: 5rem; }
  body.has-mobile-sticky-cta.mobile-sticky-cta-visible .main,
  body.has-mobile-sticky-cta.mobile-sticky-cta-visible .footer {
    padding-bottom: calc(5rem + 3.25rem);
  }
  .footer { padding-bottom: 5rem; }
  .race-card { grid-template-columns: 1fr; gap: 0.625rem; }
  .race-card__runners { display: none; }
  .race-card__cta { justify-self: start; }
  .fixture-row { grid-template-columns: 1fr; gap: 0.625rem; }
  .fixture-row__odds { justify-content: flex-start; }
  .win-item {
    grid-template-columns: auto auto 1fr;
    grid-template-rows: auto auto;
    row-gap: 0.25rem;
  }

  .win-item__avatar { grid-row: 1 / 3; align-self: center; }
  .win-item__icon { grid-row: 1 / 3; align-self: center; }
  .win-item__info { grid-column: 3; grid-row: 1; }
  .win-item__amount { grid-column: 3; grid-row: 2; justify-self: start; }
  .win-item__time { display: none; }
  .app-banner { grid-template-columns: 1fr; padding: 1.5rem; }
  .app-banner__right { justify-content: center; }
  .app-banner__phones img { max-height: 13rem; }
}


