/* =============================================== */
/* MASCOT POPUP - Orly the Eagle                  */
/* =============================================== */

/* Full-viewport dim behind mascot (games.html — desktop + mobile) */
.mascot-popup-backdrop {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease, backdrop-filter 0.35s ease;
  pointer-events: none;
}

.mascot-popup-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mascot-popup {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 10060;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  animation: slideInFromRight 0.6s ease-out;
  pointer-events: auto;
}

@keyframes slideInFromRight {
  from {
    transform: translateX(150%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromBottom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.mascot-popup.hidden {
  animation: slideOutToRight 0.4s ease-in forwards;
}

@keyframes slideOutToRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(150%);
    opacity: 0;
  }
}

@keyframes slideOutToBottom {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

/* Content Box */
.mascot-popup__content {
  background: linear-gradient(135deg, #2a2d3e 0%, #1f2230 100%);
  border-radius: 20px;
  padding: 28px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
              0 0 0 1px rgba(255, 255, 255, 0.08);
  position: relative;
  max-width: 450px;
  backdrop-filter: blur(10px);
}

.mascot-popup__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 138, 60, 0.05) 0%, 
    rgba(255, 195, 68, 0.05) 100%);
  border-radius: 20px;
  pointer-events: none;
}

/* Скрываем индикатор свайпа на десктопе */
.mascot-popup__content::after {
  display: none;
}

/* Close Button */
.mascot-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.mascot-popup__close:hover {
  background: rgba(255, 77, 79, 0.8);
  border-color: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* Title */
.mascot-popup__title {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 16px;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

/* Text */
.mascot-popup__text {
  font-size: 15px;
  line-height: 1.6;
  color: #b9bccd;
  margin: 0 0 24px;
  position: relative;
  z-index: 2;
}

/* Button */
.mascot-popup__btn {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #ff8a3c 0%, #ffc344 100%);
  border: none;
  border-radius: 999px;
  color: #2a1304;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(255, 138, 60, 0.4);
  position: relative;
  z-index: 2;
}

.mascot-popup__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 138, 60, 0.6);
  background: linear-gradient(135deg, #ff9d5c 0%, #ffd764 100%);
}

.mascot-popup__btn:active {
  transform: translateY(0);
}

/* Character Section */
.mascot-popup__character {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: floatEagle 3s ease-in-out infinite;
}

@keyframes floatEagle {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Eagle Image */
.mascot-popup__eagle {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
  position: relative;
  z-index: 2;
  animation: eagleGlow 3s ease-in-out infinite;
}

/* Анимация свечения орла */
@keyframes eagleGlow {
  0%, 100% {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5))
            drop-shadow(0 0 20px rgba(255, 195, 68, 0.3));
  }
  50% {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5))
            drop-shadow(0 0 40px rgba(255, 195, 68, 0.7))
            drop-shadow(0 0 60px rgba(255, 138, 60, 0.5));
  }
}

/* Speech Bubble */
.mascot-popup__bubble {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #2a1304;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  z-index: 3;
}

.mascot-popup__bubble::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}

/* =============================================== */
/* LUCKY TRIO MODAL                               */
/* =============================================== */

.lucky-trio {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 12000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lucky-trio.is-active {
  opacity: 1;
  pointer-events: auto;
}

.lucky-trio__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lucky-trio__dialog {
  position: relative;
  width: min(960px, 92%);
  max-height: 88vh;
  background: linear-gradient(180deg, #f7c96c 0%, #d7702f 45%, #752a0c 100%);
  border-radius: 20px;
  padding: 44px 22px 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  color: #fff;
  overflow: hidden;
}

.lucky-trio__dialog::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.16), transparent 34%),
    radial-gradient(circle at 80% 12%, rgba(255, 195, 68, 0.22), transparent 42%),
    radial-gradient(circle at 50% 78%, rgba(255, 138, 60, 0.15), transparent 46%);
  pointer-events: none;
}

.lucky-trio__dialog::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath fill='rgba(255,255,255,0.09)' d='M10 4h4v4h-4zM90 26h4v4h-4zM54 54h4v4h-4zM18 80h4v4h-4zM70 94h4v4h-4z'/%3E%3C/svg%3E");
  background-size: cover;
  mix-blend-mode: soft-light;
  opacity: 0.4;
  pointer-events: none;
}

.lucky-trio__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.06em;
  text-align: center;
  margin: 2px 0 18px;
  position: relative;
  z-index: 2;
}

.lucky-trio__cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.lucky-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(2px);
}

.lucky-card__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  background: #0e0e0e;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 12px 24px rgba(0, 0, 0, 0.45);
}

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

.lucky-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lucky-card__name {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  letter-spacing: 0.08em;
  margin: 0;
}

.lucky-card__stat {
  margin: 0;
  font-size: 13px;
  color: #ffe9c8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lucky-card__tag {
  margin: 0;
  font-size: 12px;
  color: #ffd9a0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lucky-card__desc {
  margin: 2px 0 8px;
  font-size: 12px;
  line-height: 1.5;
  color: #f5f5f5;
}

.lucky-card__btn {
  align-self: center;
  min-width: 118px;
  padding: 11px 18px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #ffb25a 0%, #ff9740 100%);
  color: #2a1304;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.lucky-card__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.lucky-card__btn:active {
  transform: translateY(0);
}

.lucky-trio__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lucky-trio__close:hover {
  background: rgba(0, 0, 0, 0.45);
  transform: rotate(90deg);
}

.body-locked {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .lucky-trio__dialog {
    padding: 40px 18px 18px;
  }

  .lucky-trio__title {
    font-size: 22px;
    margin-top: 20px;
  }

  .lucky-trio__cards {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .lucky-trio__cards::-webkit-scrollbar {
    display: none;
  }

  .lucky-card {
    flex: 0 0 76%;
    max-width: 76%;
    scroll-snap-align: center;
  }

  .lucky-card__image {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .lucky-trio__dialog {
    padding: 34px 14px 18px;
  }

  .lucky-card__name {
    font-size: 17px;
  }

  .lucky-card__stat,
  .lucky-card__tag,
  .lucky-card__desc {
    font-size: 12px;
  }

  .lucky-card__btn {
    width: 100%;
  }

  .lucky-card {
    flex-basis: 82%;
    max-width: 82%;
  }
}

/* Скрытие контента попапа (маскот остается) */
.popup-content-hidden {
  opacity: 0;
  transform: translateY(-20px) scale(0.9);
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Маскот в standalone режиме */
.mascot-standalone {
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
}

.mascot-standalone:hover {
  transform: translateY(-5px) scale(1.05);
}

.mascot-standalone:active {
  transform: translateY(0) scale(0.98);
}

/* Подсказка при наведении на маскота */
.mascot-standalone .mascot-popup__bubble {
  animation: bubblePulse 2s ease-in-out infinite;
}

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

/* Визуальная подсказка - пульсирующее кольцо вокруг маскота */
.mascot-standalone::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 195, 68, 0.6);
  border-radius: 50%;
  animation: ringPulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ringPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 1000px) {
  /* Мобильная версия попапа - вертикальная композиция */
  .mascot-popup {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: visible;
    padding: 0 12px calc(75px + env(safe-area-inset-bottom)); /* отступ для bottom-nav */
    animation: slideInFromBottom 0.6s ease-out;
  }

  .mascot-popup.hidden {
    animation: slideOutToBottom 0.4s ease-in forwards;
  }

  /* Когда контент скрыт, маскот опускается ниже */
  .mascot-popup:has(.popup-content-hidden) {
    bottom: 0;
    padding-bottom: calc(75px + env(safe-area-inset-bottom));
  }

  .mascot-popup__content {
    width: 100%;
    max-width: 100%;
    padding: 20px 18px 18px;
    padding-right: 150px; /* место для Орли справа */
    background: linear-gradient(135deg, #11141d 0%, #1a1d2a 100%);
    border-radius: 18px 18px 0 0; /* Скругление только сверху */
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8),
                0 0 0 1px rgba(255, 195, 68, 0.2);
    margin-bottom: 0; /* встык к меню */
    position: relative;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  /* Декоративная стрелка от попапа к маскоту - скрыта для full-width модалки */
  .mascot-popup::before {
    display: none;
  }

  /* Скрыть стрелку когда контент скрыт */
  .mascot-popup:has(.popup-content-hidden)::before {
    display: none;
  }

  /* Индикатор свайпа для мобильных - скрыт */
  .mascot-popup__content::after {
    display: none;
  }

  @keyframes swipeIndicator {
    0%, 100% {
      opacity: 0.3;
    }
    50% {
      opacity: 0.6;
    }
  }

  .mascot-popup__content::before {
    background: linear-gradient(135deg, 
      rgba(255, 138, 60, 0.08) 0%, 
      rgba(255, 195, 68, 0.08) 100%);
    border-radius: 18px;
  }

  .mascot-popup__close {
    width: 32px;
    height: 32px;
    top: 8px;
    right: 8px;
    font-size: 20px;
    z-index: 20;
  }

  .mascot-popup__title {
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.25;
    position: relative;
    z-index: 2;
  }

  .mascot-popup__text {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 14px;
    color: #9ca3be;
    position: relative;
    z-index: 2;
  }

  .mascot-popup__btn {
    font-size: 12px;
    padding: 10px 16px;
    box-shadow: 0 6px 20px rgba(255, 138, 60, 0.35);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    position: relative;
    z-index: 2;
  }

  .mascot-popup__btn:active {
    transform: translateY(1px);
    box-shadow: 0 4px 12px rgba(255, 138, 60, 0.3);
  }

  /* Маскот снизу справа в углу */
  .mascot-popup__character {
    position: absolute;
    top: 28%; /* в «дырке» справа от текста */
    right: 32px;
    bottom: auto;
    transform: translate(0, -50%);
    margin: 0;
    align-self: auto;
    animation: none; /* убираем анимацию, чтобы не сбивать transform-позиционирование */
    z-index: 12;
    cursor: pointer;
  }

  /* Декоративное свечение от маскота к попапу */
  .mascot-popup__character::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, 
      rgba(255, 195, 68, 0.2) 0%, 
      rgba(255, 138, 60, 0.1) 40%,
      transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
  }

  @keyframes glowPulse {
    0%, 100% {
      opacity: 0.6;
      transform: translateX(-50%) scale(1);
    }
    50% {
      opacity: 1;
      transform: translateX(-50%) scale(1.1);
    }
  }

  @keyframes floatEagleMobile {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-8px);
    }
  }

  .mascot-popup__eagle {
    width: 100px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.7))
            drop-shadow(0 0 25px rgba(255, 195, 68, 0.6));
  }

  .mascot-popup__bubble {
    font-size: 10px;
    padding: 6px 12px;
    border-radius: 16px;
    bottom: -12px;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  }

  .mascot-popup__bubble::before {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #fff;
  }
}

@media (max-width: 480px) {
  .mascot-popup {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    padding: 0 10px calc(75px + env(safe-area-inset-bottom));
  }

  /* Стрелка для маленьких экранов - скрыта */
  .mascot-popup::before {
    display: none;
  }

  .mascot-popup__content {
    width: 100%;
    max-width: 100%;
    padding: 18px 14px 14px;
    padding-right: 130px;
    margin-bottom: 0;
  }

  .mascot-popup__close {
    width: 28px;
    height: 28px;
    font-size: 18px;
  }

  .mascot-popup__title {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .mascot-popup__text {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .mascot-popup__btn {
    font-size: 11px;
    padding: 9px 14px;
  }

  .mascot-popup__character {
    right: 35;
    top: 34%;
    transform: translate(0, -50%);
    animation: none;
  }

  .mascot-popup__eagle {
    width: 85px;
  }

  .mascot-popup__bubble {
    font-size: 9px;
    padding: 5px 10px;
    bottom: -10px;
  }
}

@media (max-width: 380px) {
  .mascot-popup {
    padding: 0 8px calc(75px + env(safe-area-inset-bottom));
  }

  /* Стрелка для очень маленьких экранов - скрыта */
  .mascot-popup::before {
    display: none;
  }

  .mascot-popup__content {
    width: 100%;
    max-width: 100%;
    padding: 16px 12px 12px;
    padding-right: 118px;
  }

  .mascot-popup__character {
    right: 30px;
    top: 33%;
    transform: translate(0, -50%);
    animation: none;
  }

  .mascot-popup__eagle {
    width: 75px;
  }

  .mascot-popup__bubble {
    font-size: 8px;
    padding: 4px 8px;
    bottom: -8px;
  }

  .mascot-popup__title {
    font-size: 12px;
  }

  .mascot-popup__text {
    font-size: 10px;
  }
}

/* =============================================== */
/* GAMES PAGE SPECIFIC STYLES                     */
/* =============================================== */

/* Убираем фоновое изображение, оставляем только черный цвет */
.casino-page {
  background: #000 !important;
}

/* Используем структуру из index.html - sidebar и footer скроллятся естественно */

/* =============================================== */
/* TOPBAR STYLES (из maskot.css)                  */
/* =============================================== */

:root {
  --accent: #ff8a3c;
  --accent-2: #ffc344;
  --text-muted: #9ca0b8;
}

.topbar {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 16px 24px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  gap: 8px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  background-color: #151822;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
  font-style: normal;
}

.back-link:hover {
  background-color: #1a1d2a;
}

.back-link img {
  width: 20px;
  height: 20px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
}

/* Стили для header-right как в index-mobile.html */
.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-right-desktop {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-right-mobile {
  display: none;
  align-items: center;
  gap: 8px;
}

.header-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.9);
  padding: 0;
}

.header-circle img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.header-circle--plus {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-2);
  background: transparent;
}

.header-circle--badge {
  position: relative;
}

.header-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  padding: 0 4px;
  height: 18px;
  border-radius: 999px;
  background: #ff4d4f;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.header-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: var(--text-main);
  font-size: 13px;
  cursor: pointer;
  transition: background 0.18s ease-out, border-color 0.18s ease-out,
    transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.header-btn a {
  color: inherit;
  text-decoration: none;
}

.header-btn.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text-main);
}

.header-btn.primary {
  background: linear-gradient(135deg, #ff8a3c, #ffc344);
  border-color: transparent;
  color: #261105;
  font-weight: 600;
}

.header-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.pill {
  border-radius: 999px;
  padding: 9px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  color: #fff;
}

.pill img {
  width: 35px;
  height: 35px;
}

.pill--ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}

.pill--accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #2a1304;
  font-weight: 700;
}

.wallet {
  display: flex;
  border-radius: 999px;
  background: rgba(5, 5, 10, 0.55);
  padding: 6px 14px;
  gap: 32px;
}

.wallet-item span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.wallet-item strong {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.04em;
}

.topbar-mobile {
  display: none;
}

.circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.circle img {
  width: 24px;
  height: 24px;
}

.circle--plus {
  font-size: 24px;
  color: var(--accent-2);
}

.circle--badge {
  position: relative;
}

.circle--badge span {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #ff4d4f;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 1000px) {
  .topbar-right {
    display: none !important;
  }
  
  .topbar-mobile {
    display: none !important;
  }

  .header-right-desktop {
    display: none !important;
  }
  
  .header-right-mobile {
    display: flex !important;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
  }

  .header-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.9);
  }

  .header-circle img {
    width: 35px;
    height: 35px;
    object-fit: contain;
  }

  .header-circle--plus {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-2);
    background: transparent;
  }

  .header-circle--badge {
    position: relative;
  }

  .header-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    padding: 0 4px;
    height: 18px;
    border-radius: 999px;
    background: #ff4d4f;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }
}

@media (min-width: 1024px) {
  .header-right-mobile {
    display: none !important;
  }

  .header-right-desktop {
    display: flex !important;
  }
}

/* Games content wrapper */
.games-content {
  max-width: 1500px;
  margin: 0 auto;
}

/* Content area spacing */
.section--categories,
.section-slots {
  margin-left: auto;
  margin-right: auto;
}

/* Footer использует стили из styles.css (как в index.html) */

/* Стили для картинок слотов как в index-mobile.html */
@media (max-width: 1000px) {
  .slot-card {
    min-width: 140px;
    width: 140px;
    height: 180px;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
    overflow: hidden;
    display: block;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .games-content {
    padding: 12px;
  }
  
  .page .footer {
    margin-top: 20px;
  }

  .slot-card {
    min-width: 190px;
  }

  /* Стили для footer--full как в index-mobile.html */
  .footer--full {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    max-width: 100vw;
    border-radius: 0;
    padding: 20px 14px 30px;
    background: url("../img/footer.png") center/cover no-repeat;
    background-color: #05070c;
    background-size: cover;
    background-position: center;
    border-top: none;
    font-size: 11px;
    color: #9ca0b8;
    box-sizing: border-box;
  }

  .footer--full .footer-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .footer--full .footer-left .logo {
    font-family: "Oswald", system-ui, sans-serif;
    font-size: 18px;
    letter-spacing: 0.14em;
  }

  .footer--full .footer-left .desc {
    margin: 6px 0 8px;
  }

  .footer--full .footer-left h4 {
    margin: 0 0 4px;
    font-size: 12px;
    color: #fff;
  }

  .footer--full .socials {
    display: flex;
    gap: 6px;
  }

  .footer--full .socials a {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #181b25;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer--full .socials img {
    width: 14px;
  }

  .footer--full .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .footer--full .footer-links .col h4 {
    margin: 0 0 4px;
    font-size: 12px;
    color: #fff;
  }

  .footer--full .footer-links .col a {
    display: block;
    font-size: 11px;
    color: #9ca0b8;
    text-decoration: none;
    margin-bottom: 2px;
  }

  .footer--full .footer-bottom {
    margin-top: 10px;
    font-size: 10px;
  }

  .footer--full .footer-bottom .age {
    margin-top: 8px;
    display: flex;
    gap: 6px;
    align-items: center;
  }

  .footer--full .footer-bottom .age span {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
