/* Golden Panda — кастомная тема: палитра и скругления */
:root {
  --gp-bg0: #0c0d11;
  --gp-bg1: #1a1b1f;
  --gp-bg2: #232428;
  --gp-card: #2c2d32;
  --gp-stroke: rgba(255, 255, 255, 0.08);
  --gp-text: #ffffff;
  --gp-text-muted: rgba(255, 255, 255, 0.68);
  --gp-gold: #c9a227;
  --gp-gold-light: #e8d06a;
  --gp-gold-dark: #a6851e;
  --gp-gold-gradient: linear-gradient(135deg, #e8d06a 0%, #c9a227 48%, #a6851e 100%);
  --gp-radius-sm: 20px;
  --gp-radius-md: 22px;
  --gp-radius-lg: 24px;
  --gp-shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.35);
  --gp-shadow-glow: 0 0 24px rgba(201, 162, 39, 0.18);
  --gp-sidebar-width: 280px;
  --gp-topbar-height: 72px;
  --gp-bottom-nav-height: 64px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

html {
  scroll-behavior: smooth;
}

body, .site-body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--gp-bg0);
  color: var(--gp-text);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}

.accessibility-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 1000;
  padding: 12px 24px;
  background: var(--gp-gold);
  color: #0a0a0a;
  text-decoration: none;
  border-radius: var(--gp-radius-sm);
  box-shadow: var(--gp-shadow-soft);
}
.accessibility-link:focus { top: 12px; }

.container {
  display: grid;
  grid-template-columns: var(--gp-sidebar-width) 1fr;
  gap: 0;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  min-height: 100vh;
}

@media (max-width: 860px) {
  .container {
    grid-template-columns: 1fr;
    padding: 0;
  }
}

/* ========== SIDEBAR (панель навигации, лёгкая прозрачность) ========== */
.nav-panel {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  background: rgba(26, 27, 31, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-right: 1px solid var(--gp-stroke);
  padding: 16px 0;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 860px) {
  .nav-panel { display: none; }
}

.nav-panel__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px 16px;
  border-bottom: 1px solid var(--gp-stroke);
  margin-bottom: 12px;
}

.nav-panel__logo-link {
  display: block;
  flex: 1;
  min-width: 0;
}

.nav-panel__logo {
  display: block;
  width: 100%;
  max-width: 160px;
  height: auto;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-nav__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--gp-text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}

.sidebar-nav__item:hover {
  background: var(--gp-bg2);
  color: var(--gp-text);
}

.sidebar-nav__item.active {
  background: rgba(201, 162, 39, 0.14);
  color: var(--gp-text);
}

.sidebar-nav__item .sidebar-nav__icon {
  flex-shrink: 0;
  color: inherit;
}

.sidebar-nav__arrow {
  margin-left: auto;
  opacity: 0.6;
}

.sidebar-nav__divider {
  height: 1px;
  background: var(--gp-stroke);
  margin: 8px 16px;
}

/* Premium Sidebar Menu (nouveaux icônes vectoriels) */
.nav-panel .sb {
  width: 100%;
  border-right: none;
  background: linear-gradient(180deg, var(--sb-bg), var(--sb-bg-2));
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
:root {
  --sb-bg: #17181b;
  --sb-bg-2: #1d1f24;
  --sb-text: #cfd3da;
  --sb-muted: #9aa3ad;
  --sb-gold: #d8b45a;
  --sb-gold-2: #8a6b22;
  --sb-border: rgba(255, 255, 255, 0.08);
  --sb-hover: rgba(216, 180, 90, 0.1);
}
.sb.sidebar-nav .sb-section {
  padding: 14px 10px;
}
.sb.sidebar-nav .sb-divider {
  height: 1px;
  background: var(--sb-border);
  margin: 10px 10px;
}
.sb.sidebar-nav .sb-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  margin: 4px 6px;
  border-radius: 12px;
  color: var(--sb-text);
  text-decoration: none;
  position: relative;
  transition: background 0.18s ease, transform 0.18s ease, color 0.18s ease;
}
.sb.sidebar-nav .sb-item:hover {
  background: var(--sb-hover);
  transform: translateY(-1px);
  color: #fff;
}
.sb.sidebar-nav .sb-item.active,
.sb.sidebar-nav .sb-item[aria-current="page"] {
  background: linear-gradient(90deg, rgba(216, 180, 90, 0.18), rgba(216, 180, 90, 0.06));
  box-shadow: inset 0 0 0 1px rgba(216, 180, 90, 0.18);
  color: #fff;
}
.sb.sidebar-nav .sb-ico {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: radial-gradient(120% 120% at 20% 20%, rgba(216, 180, 90, 0.18), rgba(216, 180, 90, 0.04));
  box-shadow: inset 0 0 0 1px rgba(216, 180, 90, 0.12), 0 8px 18px rgba(0, 0, 0, 0.25);
}
.sb.sidebar-nav .sb-ico svg {
  width: 18px;
  height: 18px;
  overflow: visible;
}
.sb.sidebar-nav .duo-fill {
  fill: rgba(216, 180, 90, 0.22);
}
.sb.sidebar-nav .duo-stroke {
  stroke: rgba(216, 180, 90, 0.95);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}
.sb.sidebar-nav .label {
  font-size: 16px;
  letter-spacing: 0.2px;
}

/* ========== MOBILE HEADER ========== */
.mobile-header {
  display: none;
}

@media (max-width: 860px) {
  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(26, 27, 31, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gp-stroke);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  }
  .mobile-header__logo { height: 28px; width: auto; object-fit: contain; display: block; vertical-align: middle; }
  .mobile-header__logo-link { display: flex; align-items: center; }
  .mobile-header__actions { display: flex; gap: 8px; }
  .mobile-header__actions .action-btn { padding: 8px 14px; font-size: 12px; }
}

/* ========== PAGE HEADER (desktop) ========== */
.page-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 24px;
  background: rgba(26, 27, 31, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gp-stroke);
  height: var(--gp-topbar-height);
  width: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 860px) {
  .page-header {
    display: none;
  }
}

.page-header__tabs {
  display: flex;
  gap: 4px;
}

.page-header__tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: var(--gp-text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--gp-radius-sm);
  transition: color 0.2s, background 0.2s;
}

.page-header__tab:hover,
.page-header__tab.active {
  color: var(--gp-text);
}
.page-header__tab.active {
  background: var(--gp-bg2);
}

.search-form {
  flex: 1;
  max-width: 320px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(35, 36, 40, 0.8);
  border: 1px solid var(--gp-stroke);
  border-radius: var(--gp-radius-sm);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}

.search-form__icon {
  flex-shrink: 0;
  color: var(--gp-text-muted);
}

.search-form__field {
  flex: 1;
  min-width: 0;
  border: none;
  background: none;
  color: var(--gp-text);
  font-size: 14px;
}
.search-form__field::placeholder { color: var(--gp-text-muted); }
.search-form__field:focus { outline: none; }

.page-header__controls {
  display: flex;
  gap: 10px;
}

.menu-toggle {
  display: none;
  padding: 8px;
  background: none;
  border: none;
  color: var(--gp-text);
  cursor: pointer;
}

@media (max-width: 860px) {
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
}

/* ========== BUTTONS ========== */
.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: var(--gp-radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap;
  font-family: inherit;
}

.action-btn--primary {
  background: var(--gp-gold-gradient);
  color: #141414;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--gp-shadow-soft), var(--gp-shadow-glow);
}

.action-btn--primary:hover {
  opacity: 0.96;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4), 0 0 32px rgba(201, 162, 39, 0.22);
}

.action-btn--outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--gp-text);
  border: 1px solid var(--gp-gold);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.action-btn--outline:hover {
  background: rgba(201, 162, 39, 0.12);
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.12);
}

.action-btn--hero {
  padding: 16px 36px;
  font-size: 16px;
}

.action-btn:focus-visible {
  outline: 2px solid var(--gp-gold);
  outline-offset: 2px;
}

/* Скругление всех интерактивных элементов */

/* ========== MAIN CONTENT ========== */
.page-content {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
}

.main-content {
  flex: 1;
  width: 100%;
}

@media (max-width: 860px) {
  .main-content {
    padding-top: 56px;
    padding-bottom: calc(var(--gp-bottom-nav-height) + 16px);
  }
}

/* ========== HERO / BANNER ========== */
.banner-section {
  width: 100%;
  margin-bottom: 24px;
}

.banner-section__wrapper {
  position: relative;
  border-radius: var(--gp-radius-lg);
  overflow: hidden;
  max-width: 100%;
}

.banner-section__image,
.banner-section__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
}

.banner-section__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}

.banner-section__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--gp-text);
  max-width: 560px;
}

.banner-section__subtitle {
  font-size: 16px;
  color: var(--gp-text-muted);
  margin-bottom: 20px;
}

@media (max-width: 860px) {
  .banner-section__wrapper { border-radius: 0; }
  .banner-section__content { padding: 20px 16px; }
  .banner-section__title { font-size: 20px; }
  .banner-section__subtitle { font-size: 14px; margin-bottom: 16px; }
}

/* ========== DÉPÔTS ========== */
.deposits-section {
  padding: 24px;
  background: rgba(26, 27, 31, 0.92);
  border-bottom: 1px solid var(--gp-stroke);
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.deposits-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.deposits-section__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--gp-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: auto;
}

.deposits-section__methods {
  max-height: 36px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 860px) {
  .deposits-section__inner { flex-direction: column; align-items: stretch; text-align: center; }
  .deposits-section__title { margin-right: 0; }
  .deposits-section__methods { margin: 0 auto; }
}

/* ========== CONTENT BLOCKS (sliders) ========== */
.content-block {
  margin-bottom: 40px;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

@media (max-width: 860px) {
  .content-block {
    margin-bottom: 28px;
    padding: 0 16px;
  }
  .content-block--slider { padding: 0; }
  .content-block--slider .content-block__header { padding: 0 16px; }
}

.content-block__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.content-block__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--gp-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex: 1;
  min-width: 0;
}

.content-block__title::before {
  display: none;
}

.content-block__link {
  color: var(--gp-text-muted);
  font-size: 14px;
  text-decoration: none;
}
.content-block__link:hover { color: var(--gp-text); }

.slider-controls {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

@media (max-width: 860px) {
  .slider-controls { display: none; }
}

.slider-controls__button {
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(35, 36, 40, 0.9);
  border: 1px solid var(--gp-stroke);
  border-radius: 50%;
  color: var(--gp-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.slider-controls__button:hover:not(:disabled) {
  background: var(--gp-card);
  border-color: var(--gp-gold);
  box-shadow: 0 0 16px rgba(201, 162, 39, 0.15);
}

.slider-controls__button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.slider-controls__button::before {
  content: '';
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
}

.slider-controls__button[data-carousel-next]::before {
  transform: rotate(135deg);
}

/* Desktop: carousel with visible track, no scrollbar */
.slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

@media (min-width: 861px) {
  .content-block--slider .slider {
    padding: 4px 0;
  }
}

@media (max-width: 860px) {
  .content-block--slider .slider {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .content-block--slider .slider::-webkit-scrollbar { display: none; }
}

.slider__container {
  display: flex;
  gap: 16px;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: max-content;
  will-change: transform;
}

@media (min-width: 861px) {
  .content-block--slider .slider__container {
    flex-wrap: nowrap;
  }
}

@media (max-width: 860px) {
  .content-block--slider .slider__container {
    padding: 0 16px 8px;
    gap: 12px;
    scroll-snap-type: x mandatory;
  }
}

/* ========== SLOT / SPORTS / LIVE CARDS ========== */
.slot-card,
.sports-card,
.live-game-card {
  position: relative;
  flex-shrink: 0;
  width: 200px;
  min-width: 200px;
  text-decoration: none;
  color: var(--gp-text);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-radius: var(--gp-radius-md);
  overflow: hidden;
  background: rgba(35, 36, 40, 0.88);
  border: 1px solid transparent;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

@media (min-width: 861px) {
  .slot-card:hover,
  .sports-card:hover,
  .live-game-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45), 0 0 24px rgba(201, 162, 39, 0.08);
    border-color: rgba(201, 162, 39, 0.28);
  }
}

@media (max-width: 860px) {
  .slot-card, .sports-card, .live-game-card {
    width: 160px;
    min-width: 160px;
    scroll-snap-align: start;
  }
  .slot-card:hover,
  .sports-card:hover,
  .live-game-card:hover {
    transform: translateY(-2px);
  }
}

.slot-card__fav {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 38px;
  height: 38px;
  padding: 0;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(6px);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.slot-card__fav:hover {
  background: rgba(0, 0, 0, 0.75);
  color: var(--gp-gold);
  box-shadow: 0 0 14px rgba(201, 162, 39, 0.2);
}

.slot-card img,
.sports-card img,
.live-game-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

@media (min-width: 861px) {
  .slot-card:hover img,
  .sports-card:hover img,
  .live-game-card:hover img {
    transform: scale(1.03);
  }
}

@media (max-width: 860px) {
  .slot-card img, .sports-card img, .live-game-card img { height: 220px; }
}

.slot-card__title,
.sports-card__title,
.live-game-card__title {
  padding: 12px 10px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  background: var(--gp-bg2);
  border-top: 1px solid var(--gp-stroke);
  line-height: 1.3;
}

/* ========== JACKPOTS ========== */
.jackpots-section {
  padding: 32px 24px;
  margin-bottom: 40px;
  background: rgba(26, 27, 31, 0.9);
  border-top: 1px solid var(--gp-stroke);
  border-bottom: 1px solid var(--gp-stroke);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.jackpots-section__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 860px) {
  .jackpots-section__grid { grid-template-columns: 1fr; }
}

.jackpots-section__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--gp-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.jackpots-section__text {
  font-size: 15px;
  color: var(--gp-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.jackpots-section__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.jackpots-section__stripes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jackpot-stripe {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--gp-gold-gradient);
  border-radius: var(--gp-radius-sm);
  color: #141414;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 0 20px rgba(201, 162, 39, 0.12);
}

.jackpot-stripe__name {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.jackpot-stripe__value {
  font-size: 18px;
}

/* ========== WHY SECTION ========== */
.why-section {
  margin-bottom: 40px;
  padding: 0 24px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.why-section__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--gp-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.why-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 860px) {
  .why-section__grid { grid-template-columns: 1fr; }
}

.why-card {
  background: rgba(35, 36, 40, 0.9);
  border-radius: var(--gp-radius-md);
  overflow: hidden;
  border: 1px solid var(--gp-stroke);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.why-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 20px rgba(201, 162, 39, 0.06);
}

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

.why-card__title {
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gp-text);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-align: center;
  line-height: 1.4;
}

/* ========== PROVIDERS ========== */
.providers-section {
  padding: 32px 24px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.providers-section__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--gp-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.providers-section__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.providers-section__logo {
  padding: 10px 18px;
  background: var(--gp-bg2);
  border: 1px solid var(--gp-stroke);
  border-radius: var(--gp-radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--gp-text-muted);
}

.providers-section__select-wrap {
  max-width: 280px;
}

.providers-section__select {
  width: 100%;
  padding: 12px 16px;
  background: var(--gp-bg2);
  border: 1px solid var(--gp-stroke);
  border-radius: var(--gp-radius-sm);
  color: var(--gp-text);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
}

/* ========== PROMOTIONS ========== */
.promotions-section {
  padding: 0 24px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.promotions-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.promotion-card {
  padding: 24px;
  background: rgba(35, 36, 40, 0.88);
  border: 1px solid var(--gp-stroke);
  border-radius: var(--gp-radius-md);
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.promotion-card:hover {
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.3), 0 0 18px rgba(201, 162, 39, 0.06);
}

.promotion-card__heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gp-text);
}

.promotion-card__text {
  font-size: 14px;
  color: var(--gp-text-muted);
  margin-bottom: 16px;
}

/* ========== FAQ ========== */
.faq-section {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-list__item {
  background: var(--gp-bg2);
  border: 1px solid var(--gp-stroke);
  border-radius: var(--gp-radius-md);
  overflow: hidden;
}

.faq-list__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: none;
  border: none;
  color: var(--gp-text);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.faq-list__question:hover {
  background: var(--gp-card);
}

.faq-list__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  transition: transform 0.3s;
}

.faq-list__question[aria-expanded="true"] .faq-list__icon {
  transform: rotate(180deg);
}

.faq-list__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-list__answer[aria-hidden="false"] {
  max-height: 300px;
}

.faq-list__answer p {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gp-text-muted);
}

/* ========== SEO CONTENT ========== */
.seo-content {
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 24px;
}

.seo-content__wrapper {
  background: rgba(35, 36, 40, 0.9);
  border: 1px solid var(--gp-stroke);
  border-radius: var(--gp-radius-md);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.seo-content h1 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gp-text);
}

.seo-content h2 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--gp-text);
}

.seo-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: var(--gp-text-muted);
}

.seo-content ul {
  margin: 0 0 16px 1.2em;
  padding: 0;
  color: var(--gp-text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.seo-content ul li {
  margin-bottom: 6px;
}

.seo-content ol {
  margin: 0 0 16px 1.5em;
  padding: 0;
  color: var(--gp-text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.seo-content ol li {
  margin-bottom: 8px;
}

.seo-content__divider {
  border: none;
  height: 1px;
  background: var(--gp-stroke);
  margin: 28px 0 24px;
}

.seo-content__table-wrap {
  margin: 16px 0 24px;
}

.seo-content__table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 14px;
  color: var(--gp-text-muted);
  background: rgba(26, 27, 31, 0.85);
  border: 1px solid var(--gp-stroke);
  border-radius: var(--gp-radius-sm);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.seo-content__table th,
.seo-content__table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gp-stroke);
}

.seo-content__table thead th {
  background: rgba(201, 162, 39, 0.14);
  color: var(--gp-text);
  font-weight: 600;
}

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

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

/* Мобильная версия: таблицы как карточки */
@media (max-width: 860px) {
  .seo-content__table-wrap {
    margin: 16px -4px 24px;
    max-width: calc(100% + 8px);
  }

  .seo-content__table {
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .seo-content__table thead {
    display: none;
  }

  .seo-content__table tbody tr {
    display: block;
    margin-bottom: 16px;
    padding: 14px 16px;
    background: rgba(26, 27, 31, 0.85);
    border: 1px solid var(--gp-stroke);
    border-radius: var(--gp-radius-sm);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  }

  .seo-content__table tbody tr:last-child {
    margin-bottom: 0;
  }

  .seo-content__table tbody td {
    display: block;
    padding: 8px 0 10px;
    border-bottom: 1px solid var(--gp-stroke);
    font-size: 14px;
    line-height: 1.45;
  }

  .seo-content__table tbody tr td:first-child {
    padding-top: 0;
  }

  .seo-content__table tbody tr td:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .seo-content__table tbody td::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--gp-gold);
    margin-bottom: 4px;
  }

  .seo-content__table tbody tr:hover td {
    background: transparent;
  }
}

.seo-content__warning {
  background: rgba(201, 162, 39, 0.1);
  border-left: 4px solid var(--gp-gold);
  padding: 16px;
  margin-top: 24px;
  border-radius: 0 var(--gp-radius-sm) var(--gp-radius-sm) 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.seo-content__warning strong { color: var(--gp-gold); }

/* ========== FOOTER ========== */
.site-footer {
  margin-top: 48px;
  padding: 40px 24px 24px;
  background: rgba(26, 27, 31, 0.95);
  border-top: 1px solid var(--gp-stroke);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
}

.site-footer__top {
  max-width: 1200px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 860px) {
  .site-footer__top { grid-template-columns: 1fr; gap: 24px; }
}

.site-footer__logo {
  margin-bottom: 12px;
  display: block;
  width: 140px;
  height: auto;
}

.site-footer__copyright {
  font-size: 13px;
  color: var(--gp-text-muted);
  margin-bottom: 16px;
}

.site-footer__lang-select {
  width: 100%;
  max-width: 180px;
  padding: 10px 14px;
  background: rgba(35, 36, 40, 0.9);
  border: 1px solid var(--gp-stroke);
  border-radius: var(--gp-radius-sm);
  color: var(--gp-text);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.site-footer__column h3 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gp-text-muted);
  margin-bottom: 12px;
}

.site-footer__column a {
  display: block;
  padding: 6px 0;
  color: var(--gp-text-muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__column a:hover {
  color: var(--gp-text);
}

.site-footer__payments {
  max-width: 1200px;
  margin: 0 auto 24px;
  text-align: center;
}

.site-footer__payments img {
  max-width: 100%;
  height: 36px;
  object-fit: contain;
}

.site-footer__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer__badge {
  padding: 8px 14px;
  border: 1px solid var(--gp-stroke);
  border-radius: var(--gp-radius-sm);
  font-size: 12px;
  font-weight: 600;
  color: var(--gp-text-muted);
}

.site-footer__badge--18 {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* ========== BOTTOM NAV (mobile) ========== */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--gp-bottom-nav-height);
  background: rgba(26, 27, 31, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--gp-stroke);
  z-index: 100;
  padding: 8px 0;
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 860px) {
  .bottom-nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
}

.bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 12px;
  color: var(--gp-text-muted);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
}

.bottom-nav__item:hover,
.bottom-nav__item:focus {
  color: var(--gp-text);
}

.bottom-nav__item svg {
  flex-shrink: 0;
}

/* ========== FULLSCREEN MOBILE MENU ========== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  display: none;
}

.mobile-menu[aria-hidden="false"] {
  display: block;
  pointer-events: auto;
}

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-menu[aria-hidden="false"] .mobile-menu__overlay {
  opacity: 1;
}

.mobile-menu__panel {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(26, 27, 31, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow-y: auto;
  padding: 24px;
  padding-top: 60px;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
}

.mobile-menu__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  padding: 0;
  background: rgba(35, 36, 40, 0.9);
  border: 1px solid var(--gp-stroke);
  border-radius: 50%;
  color: var(--gp-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.mobile-menu__header {
  margin-bottom: 32px;
}

.mobile-menu__logo {
  display: block;
  width: 160px;
  height: auto;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}

.mobile-menu__link {
  padding: 14px 0;
  color: var(--gp-text);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--gp-stroke);
  transition: color 0.2s;
}

.mobile-menu__link:hover {
  color: var(--gp-gold);
}

.mobile-menu__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mobile-menu__actions .action-btn {
  flex: 1;
  min-width: 140px;
}

/* ========== STICKY HEADER CONTROLS (desktop) ========== */
.page-header__controls--fixed {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 999;
  gap: 10px;
  background: rgba(26, 27, 31, 0.94);
  backdrop-filter: blur(12px);
  padding: 12px 16px;
  border-radius: var(--gp-radius-md);
  border: 1px solid var(--gp-stroke);
  box-shadow: var(--gp-shadow-soft), 0 0 20px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s, visibility 0.3s;
}

.page-header__controls--fixed.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (min-width: 861px) {
  .page-header__controls--fixed {
    display: flex;
  }
}

@media (max-width: 860px) {
  .page-header__controls--fixed {
    display: none !important;
  }
}

/* ========== SCROLL PADDING ========== */
@media (max-width: 860px) {
  html {
    scroll-padding-top: 60px;
  }
}
