:root {
  --bg-main: #0B1B17;
  --bg-card: #152723;
  --bg-card-alt: #1F1412;
  --accent-burgundy: #6B1724;
  --accent-burgundy-hover: #8C1F30;
  --accent-emerald: #0D473B;
  --accent-gold: #D4AF37;
  --text-primary: #F5E8D0;
  --text-secondary: #E5C590;
  --text-muted: #A39682;
  --border-gold: rgba(212, 175, 55, 0.25);
  --border-burgundy: rgba(107, 23, 36, 0.4);
  --shadow-premium: 0 12px 32px rgba(0, 0, 0, 0.45);
  --radius-lg: 16px;
  --radius-sm: 8px;
}

/* Блокировка прокрутки вбок без !important */
html, body {
  touch-action: manipulation;
  background-color: var(--bg-main);
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-primary);
  font-size: 16px;
}

body {
  background: radial-gradient(circle at top center, #142E28 0%, var(--bg-main) 100%);
  color: var(--text-primary);
  line-height: 1.6;
}

/* Анимация пульсации для кнопок */
@keyframes pulse-gold {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }
  70% {
    transform: scale(1.03);
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.wrapper {
  margin: 0 auto;
  max-width: 1400px;
  width: 100%;
}

h1, h2, h3 {
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

h1 {
  font-size: 32px;
  font-weight: 700;
  max-width: 70%;
  line-height: 1.2;
  margin-bottom: 24px;
}

h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}

button:hover {
  filter: brightness(1.15);
}

ul, ol {
  padding-left: 0;
  margin: 24px 0;
  list-style-position: inside;
}

li {
  margin-bottom: 12px;
  color: var(--text-primary);
  background: rgba(229, 197, 144, 0.03);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent-gold);
}

a {
  text-decoration: none;
  transition: color 0.3s ease;
  color: var(--text-secondary);
}

a:hover {
  color: var(--accent-gold);
}

section .mb0 {
  margin-bottom: 0;
}

/* Хедер (Десктоп) */
header {
  padding: 20px 0;
  margin-bottom: 24px;
  background: rgba(11, 27, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  position: relative;
  z-index: 100;
}

header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .iconsAndButtons {
  display: flex;
  gap: 20px;
  align-items: center;
}

header .icons {
  display: flex;
  gap: 8px;
}

header .icons button {
  background: rgba(229, 197, 144, 0.08);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--border-gold);
}

header .buttons {
  display: flex;
  gap: 16px;
}

button.reg, button.log {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

button.reg {
  background: linear-gradient(135deg, var(--accent-burgundy) 0%, #4A0E18 100%);
  border: 1px solid var(--accent-gold);
  box-shadow: 0 4px 15px rgba(107, 23, 36, 0.4);
}

button.log {
  background: transparent;
  border: 1px solid var(--text-secondary);
  color: var(--text-secondary);
}

button.log:hover {
  background: rgba(229, 197, 144, 0.1);
}

/* Главный баннер */
.banner .wrapper {
  position: relative;
  height: 380px;
  padding: 60px 40px;
  background: url(/banner-bg.webp) no-repeat center/cover;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-premium);
}

.banner .wrapper .image {
  position: absolute;
  bottom: -5px;
  right: 161px;
}

.banner .wrapper .text-mob {
  display: none;
}

.banner .button-block {
  width: 608px;
  max-width: 75%;
  padding: 32px 24px;
  position: relative;
  z-index: 2;
  background: rgba(31, 20, 18, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
}

.banner .button-block img {
  display: block;
  margin: 0 auto 20px;
  max-width: 100%;
}

.banner button {
  display: block;
  width: 100%;
  padding: 16px 24px;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-burgundy) 0%, var(--accent-burgundy-hover) 100%);
  border: 1px solid var(--accent-gold);
  animation: pulse-gold 2s infinite ease-in-out;
}

/* Секции */
section {
  margin-top: 36px;
  padding: 40px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(229, 197, 144, 0.08);
  box-shadow: var(--shadow-premium);
}

section.purple {
  background: linear-gradient(180deg, #1A1215 0%, var(--bg-card-alt) 100%);
  border: 1px solid var(--border-burgundy);
  box-shadow: inset 0 0 30px rgba(107, 23, 36, 0.2);
}

section.green {
  background: linear-gradient(180deg, #0F2420 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-gold);
  box-shadow: inset 0 0 30px rgba(13, 71, 59, 0.3);
}

section p {
  color: var(--text-primary);
  margin-bottom: 24px;
  font-size: 16px;
}

section p:last-child {
  margin-bottom: 0;
}

/* Таблицы */
.general-table-wrapper {
  overflow-x: auto;
  margin-bottom: 32px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
}

.general-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(11, 27, 23, 0.6);
}

table tr:first-child td {
  background: linear-gradient(90deg, var(--accent-burgundy) 0%, #4A0E18 100%);
  color: var(--text-secondary);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 2px solid var(--accent-gold);
}

section.purple tr:first-child td {
  background: linear-gradient(90deg, #4A0E18 0%, var(--accent-burgundy) 100%);
}

table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(229, 197, 144, 0.05);
  text-align: left;
}

table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

table tr:hover td {
  background: rgba(229, 197, 144, 0.05);
}

/* Блок отзывов */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.review-card {
  background: linear-gradient(145deg, rgba(31, 20, 18, 0.85) 0%, rgba(15, 36, 32, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.6);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(229, 197, 144, 0.1);
}

.review-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-burgundy) 0%, var(--accent-emerald) 100%);
  border: 1px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: #FFF;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.review-author {
  display: block;
  font-weight: 700;
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.2;
}

.review-badge {
  display: inline-block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.review-stars {
  color: #FFD700;
  font-size: 14px;
  letter-spacing: 2px;
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.5);
}

.review-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 0;
}

.review-summary {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px rgba(229, 197, 144, 0.1) dashed;
}

/* Дивизионы и преимущества */
.divisions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.divisions .division {
  padding: 24px 16px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(21, 39, 35, 0.8), rgba(31, 20, 18, 0.8));
  border: 1px solid var(--border-gold);
}

.divisions .division img {
  display: block;
  margin: 0 auto 12px;
}

.divisions .division span {
  display: block;
  margin-top: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-secondary);
}

.advantages-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 32px 0;
  gap: 20px;
}

.advantages-list .advantage {
  padding: 32px 20px;
  background: linear-gradient(145deg, var(--bg-card-alt) 0%, var(--bg-card) 100%);
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-burgundy);
  box-shadow: var(--shadow-premium);
}

.advantages-list .advantage .icon {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 12px;
}

.advantages-list .advantage p {
  margin-top: 12px;
  font-size: 15px;
}

/* FAQ */
.faq-container .faq-item {
  padding: 20px 24px;
  background: rgba(21, 39, 35, 0.5);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.faq-container input {
  display: none;
}

.faq-container h3 {
  margin: 0 0 12px 0;
  font-size: 18px;
  text-align: left;
  color: var(--text-secondary);
}

.faq-container p {
  padding: 0;
  font-size: 15px;
  color: var(--text-muted);
}

/* Двойной баннер (Десктоп) */
.double_inner {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  min-height: 300px;
}

.double_left {
  background: url(/double-left.webp) no-repeat center/cover;
}

.double_right {
  background: url(/double-right.webp) no-repeat center/cover;
}

.double_left, .double_right {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-gold);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.double button {
  background: linear-gradient(135deg, var(--accent-burgundy) 0%, var(--accent-burgundy-hover) 100%);
  border-radius: 8px;
  padding: 14px 24px;
  color: #FFF;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  border: 1px solid var(--accent-gold);
  animation: pulse-gold 2s infinite ease-in-out;
}

.double_info {
  display: flex;
  gap: 8px;
  flex-direction: column;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.double_info span.bold {
  font-weight: 800;
  font-style: italic;
  font-size: 28px;
  text-transform: uppercase;
  color: #FFF;
}

.double_info span.italic {
  font-style: italic;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.double_info span.marked {
  color: var(--accent-gold);
}

.double_left_img {
  position: absolute;
  bottom: 0;
  right: 0px;
  width: 180px;
  height: 284px;
  z-index: 1;
  background: url(/double-left-img.webp) no-repeat center/cover;
}

.double_right_img {
  position: absolute;
  bottom: 0;
  right: 56px;
  width: 180px;
  height: 284px;
  z-index: 1;
  background: url(/double-right-img.webp) no-repeat center/cover;
}

.double_left .double_badge {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 3;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--accent-burgundy);
  border-radius: 0 var(--radius-lg) 0 var(--radius-lg);
  border-bottom: 1px solid var(--border-gold);
  border-left: 1px solid var(--border-gold);
}

.double_left .double_badge_text {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.double_left .double_badge_icon {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  background: url(/calendar.svg) no-repeat center/contain;
}

/* Блок Android */
.androidBlock {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0D2B24 0%, #1A0D10 100%);
  border: 1px solid var(--border-gold);
}

.androidBlock .text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  text-align: center;
  justify-content: center;
  z-index: 3;
  max-width: 460px;
}

.androidBlock .text p {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-secondary);
}

.androidBlock .android {
  position: absolute;
  right: 10%;
  bottom: -18px;
}

/* Слоты и Игры (Десктоп: 4 в 2 ряда) */
.slotsList .buttons {
  margin: 24px 0 32px;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 16px;
  padding-bottom: 8px;
}

.slotsList .buttons .button-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
}

.slotsList .buttons .button-item button {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.slotsList .buttons .button-item span {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-primary);
}

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

.games .game {
  position: relative;
  cursor: pointer;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(229, 197, 144, 0.15);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  background: var(--bg-main);
  width: 100%;
}

.games .game img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.games .game .overlay {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  background: rgba(11, 27, 23, 0.88);
  backdrop-filter: blur(4px);
  transform: translateY(100%);
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 2;
}

.games .game:hover .overlay {
  transform: translateY(0);
  opacity: 1;
}

/* Оглавление (TOC) */
main .toc.wrapper { 
  margin: 20px auto 36px;
  border: 1px solid var(--border-gold);
  padding: 24px;
  width: 640px;
  max-width: 95%;
  border-radius: var(--radius-sm);
  background: rgba(21, 39, 35, 0.4);
}

.toc p.big { 
  font-size: 18px; 
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.toc ul { padding-left: 20px; }
.toc li { 
  background: none; 
  border: none; 
  padding: 4px 0; 
  margin: 0;
  list-style-type: disc;
}

.button-block {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 32px 0;
}

.button-block button {
  padding: 14px 32px;
  border-radius: 8px;
  border: 1px solid var(--accent-gold);
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-burgundy) 0%, var(--accent-burgundy-hover) 100%);
  text-transform: uppercase;
}

/* Бургер меню */
.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(229, 197, 144, 0.05);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  z-index: 1001;
}

.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-secondary);
  border-radius: 2px;
}

.burger-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0.3s ease, opacity 0.3s ease;
}

.burger-menu.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.burger-menu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.burger-menu__content {
  position: absolute;
  top: 0;
  right: -340px;
  width: 300px;
  height: 100%;
  max-width: 85vw;
  background: linear-gradient(180deg, #152723 0%, #0B1B17 100%);
  border-left: 1px solid var(--border-gold);
  padding: 80px 24px 40px;
  overflow-y: auto;
  transition: right 0.3s ease;
}

.burger-menu.active .burger-menu__content {
  right: 0;
}

.burger-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.burger-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.burger-menu__link {
  display: block;
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 15px;
  border-radius: 8px;
  border-left: 3px solid transparent;
}

.burger-menu__link:hover {
  color: var(--text-secondary);
  background: rgba(107, 23, 36, 0.3);
  border-left-color: var(--accent-gold);
}

/* Футер */
footer {
  padding: 40px 0 90px;
  background: #07120F;
  border-top: 1px solid var(--border-gold);
  margin-top: 60px;
}

footer p {
  color: var(--text-secondary);
  font-weight: 600;
}

.newmenu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.newmenu .column span, .newmenu .column p {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.newmenu .column a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

footer .copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
  border-top: 1px solid rgba(229, 197, 144, 0.1);
}

footer .copyright span {
  font-size: 13px;
  color: var(--text-muted);
}

footer .copyright a {
  color: var(--text-secondary);
  margin-left: 8px;
}

.scrollToTop {
  background: var(--accent-burgundy);
  border: 1px solid var(--accent-gold);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 30px;
  right: 20px;
  opacity: 0.9;
  border-radius: 50%;
  z-index: 99;
}

/* Скрытие нижних кнопок на десктопе */
@media screen and (min-width: 769px) {
  .fixedButtons {
    display: none;
  }
}

/* Адаптивность для мобильных устройств (До 768px) */
@media (max-width: 1280px) {
  .double_inner { height: auto; }
  .double_left_img, .double_right_img { width: 140px; height: 220px; }
}

@media (max-width: 840px) {
  .newmenu { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 24px; max-width: 100%; text-align: center; }
}

@media screen and (max-width: 768px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 500;
    padding: 10px 16px;
    margin-bottom: 0;
    background: #0B1B17;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  }

  header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
  }

  header .text,
  header .text.hide-mobile,
  header .icons,
  header .buttons,
  header .iconsAndButtons > .buttons,
  header .iconsAndButtons > .icons {
    display: none;
  }

  header .iconsAndButtons {
    gap: 0;
  }

  main.mainContent,
  body {
    padding-top: 56px;
  }

  .burger-btn {
    margin: 0;
  }

  /* Баннеры на 1 экране */
  .double {
    margin-bottom: 24px;
  }

  .double_inner {
    grid-template-columns: 1fr;
    gap: 12px;
    height: auto;
    min-height: initial;
  }

  .double_left, .double_right {
    padding: 14px 16px;
    border-radius: 14px;
    min-height: calc((100vh - 160px) / 2);
    max-height: 175px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  }

  .double_info {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
    z-index: 3;
    width: 65%;
    text-align: center;
  }

  .double_info span.bold {
    font-size: 19px;
    font-weight: 800;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0,0,0,0.9);
    line-height: 1.1;
  }

  .double_info span.italic {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-secondary);
    text-shadow: 0 2px 4px rgba(0,0,0,0.9);
    line-height: 1.1;
  }

  .double_info span.marked {
    font-size: 21px;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6), 0 2px 4px rgba(0,0,0,0.9);
  }

  .double button {
    font-size: 13px;
    font-weight: 800;
    padding: 10px 16px;
    width: 65%;
    margin: 0 auto;
    text-align: center;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--accent-burgundy) 0%, #8C1F30 100%);
    border: 1px solid #FFD700;
    z-index: 3;
    animation: pulse-gold 2s infinite ease-in-out;
  }

  .double_left_img, 
  .double_right_img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 45%;
    height: 100%;
    opacity: 1;
    background-size: contain;
    background-position: right bottom;
    z-index: 2;
    pointer-events: none;
  }

  .double_left .double_badge {
    padding: 4px 10px;
    z-index: 4;
  }

  .double_left .double_badge_text {
    font-size: 11px;
    font-weight: 700;
    color: #FFF;
  }

  /* Баннер Android */
  .androidBlock {
    margin-top: 24px;
    padding: 20px 16px;
    min-height: 140px;
    border-radius: 14px;
  }

  .androidBlock .text {
    gap: 12px;
    max-width: 65%;
    align-items: center;
    text-align: center;
  }

  .androidBlock .text p {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-secondary);
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  }

  .androidBlock .text button {
    font-size: 13px;
    font-weight: 800;
    padding: 10px 18px;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--accent-burgundy) 0%, #8C1F30 100%);
    border: 1px solid #FFD700;
    animation: pulse-gold 2s infinite ease-in-out;
  }

  .androidBlock .android {
    right: 0;
    bottom: 0;
    top: 0;
    width: 40%;
    opacity: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .androidBlock .android img {
    max-height: 100%;
    object-fit: contain;
  }

  /* Нижние кнопки на мобилке */
  .fixedButtons {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    gap: 12px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    z-index: 400;
    background: #0B1B17;
    border-top: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.8);
  }

  .fixedButtons button.reg,
  .fixedButtons button.log {
    flex: 1;
    width: 50%;
    padding: 12px 0;
    font-size: 15px;
    border-radius: 8px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  section { padding: 20px 14px; }
  .newmenu { grid-template-columns: 1fr; }
}