/* ===== CSS ПЕРЕМЕННЫЕ ===== */
:root {
  /* Font Awesome переменные */
  --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Solid";
  --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Regular";
  --fa-font-light: normal 300 1em/1 "Font Awesome 6 Light";
  --fa-font-thin: normal 100 1em/1 "Font Awesome 6 Thin";
  --fa-font-duotone: normal 900 1em/1 "Font Awesome 6 Duotone";
  --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
  
  /* Темная цветовая схема */
  --blue: #dc2626;
  --indigo: #dc2626;
  --purple: #dc2626;
  --pink: #dc2626;
  --red: #dc2626;
  --orange: #f59e0b;
  --yellow: #fbbf24;
  --green: #dc2626;
  --teal: #dc2626;
  --cyan: #dc2626;
  --white: #f8f9fa;
  --gray: #9ca3af;
  --gray-dark: #1f2937;
  --primary: #dc2626;
  --secondary: #9ca3af;
  --success: #dc2626;
  --info: #dc2626;
  --warning: #fbbf24;
  --danger: #dc2626;
  --light: #374151;
  --dark: #111827;
  
  /* Breakpoints */
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  
  /* Шрифты */
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --font-regular: "Montserrat", sans-serif;
  --font-light: "Montserrat", sans-serif;
  --font-title-heading: "Raleway", sans-serif;
  
  /* Темная дизайн-система */
  --button-radius: 50px;
  --shadow-color: rgba(0, 0, 0, 0.5);
  --primary-color: #dc2626;
  --darken-primary-color: #991b1b;
  --lighten-primary-color: #ef4444;
  --site-background-color: #111827;
  --darken-site-background-color: #030712;
  --loader-darken-background-color: #dc2626;
  --loader-lighten-background-color: #ef4444;
  --site-background-text-color: #f8f9fa;
  --site-background-color-secondary: #1f2937;
  --site-background-text-color-secondary: #f8f9fa;
  --header-background-color: #030712;
  --header-background-text-color: #f8f9fa;
  --footer-background-color: #030712;
  --footer-background-text-color: #f8f9fa;
  --button-background: var(--primary-color);
  --darken-button-background: var(--darken-primary-color);
  --site-radius: 10px;
  --game-hover: rgba(220, 38, 38, 0.85);
  
  /* Дополнительные переменные для темной темы */
  --body-background: #111827;
  --text-muted: rgba(248,249,250,0.7);
  --text-muted-dark: rgba(248,249,250,0.8);
  --text-light: rgba(248,249,250,0.9);
  --border-light: rgba(248,249,250,0.1);
  --overlay-dark: rgba(0,0,0,0.6);
  --overlay-darker: rgba(0,0,0,0.8);
  --overlay-light: rgba(0,0,0,0.4);
  
  /* Swiper переменные */
  --swiper-theme-color: #dc2626;
  --swiper-navigation-size: 44px;
}

/* ===== БАЗОВЫЕ СТИЛИ ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  list-style: none;
}

body {
  font-family: var(--font-light);
  background: var(--body-background);
  color: var(--site-background-text-color);
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center !important;
  font-weight: 400;
  box-sizing: inherit;
  list-style: none;
  -webkit-text-size-adjust: none !important;
}

body.burger-open {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER СТИЛИ ===== */
.header {
  background: var(--header-background-color);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px var(--overlay-light);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo img {
  height: 100px;
  width: 100px;
}

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

.btn-login {
  background: var(--light);
  color: var(--site-background-text-color);
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-login:hover {
  background: var(--darken-site-background-color);
  transform: translateY(-1px);
}

.btn-register {
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-register:hover {
  background: var(--darken-primary-color);
  transform: translateY(-1px);
}

/* ===== BURGER MENU ===== */
.burger-toggle {
  display: flex;
  order: -1;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 4px;
}

.burger-toggle span {
  width: 24px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-menu {
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  height: 100vh;
  background: var(--header-background-color);
  z-index: 1000;
  transition: left 0.3s ease;
  overflow-y: auto;
}

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

.burger-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--overlay-darker);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.burger-overlay.active {
  opacity: 1;
  visibility: visible;
}

.burger-menu-content {
  padding: 30px 24px;
}

/* ===== BURGER MENU HEADER ===== */
.burger-menu-header {
  text-align: center;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-light);
}

.burger-menu-logo {
  height: 50px;
  width: auto;
  max-width: 200px;
}

.burger-menu-buttons {
  margin-bottom: 40px;
  margin-top: 0; 
}

.btn-register-burger {
  display: block;
  background: var(--primary-color);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.btn-login-burger {
  display: block;
  background: transparent;
  color: var(--white);
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  border: 2px solid var(--white);
  transition: all 0.3s ease;
}

.burger-menu-nav {
  display: flex;
  flex-direction: column;
}

.burger-menu-item {
  color: var(--white);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  transition: color 0.3s ease;
}

.burger-menu-item:hover {
  color: var(--primary-color);
}

.burger-menu-item .arrow {
  font-size: 14px;
  opacity: 0.7;
}

.loyalty-item {
  position: relative;
}

/* ===== HERO BANNER ===== */
/* Адаптивная hero-section */
.hero-section {
  width: 100%;
  min-height: 400px; /* Минимальная высота для мобильных */
  height: 60vh; /* 60% высоты экрана на десктопе */
  max-height: 600px; /* Максимальная высота */
  margin: 0;
  padding: 2rem 1rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll; /* Лучше для мобильных */
}

/* Для планшетов */
@media (min-width: 768px) {
  .hero-section {
    min-height: 500px;
    height: 70vh;
    padding: 3rem 2rem;
  }
}

/* Для десктопов */
@media (min-width: 1024px) {
  .hero-section {
    min-height: 600px;
    height: 80vh;
    max-height: 800px;
    padding: 4rem 2rem;
    background-attachment: fixed; /* Параллакс эффект только на десктопе */
  }
}

/* Для очень больших экранов */
@media (min-width: 1440px) {
  .hero-section {
    height: 70vh;
    max-height: 900px;
  }
}

/* Контент внутри hero */
.hero-content {
  text-align: center;
  max-width: 800px;
  width: 100%;
  padding: 0 1rem;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--site-background-text-color);
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.4;
  color: var(--site-background-text-color);
}

.hero-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #dc2626;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #991b1b;
  transform: translateY(-2px);
}

/* Адаптивная типографика для hero */
@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .hero-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
  }
}

/* Overlay для лучшей читаемости текста */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Для demo-slot тоже делаем адаптивным */
.demo-slot-fullscreen {
  width: 100%;
  height: 70vh;
  min-height: 400px;
  max-height: 600px;
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .demo-slot-fullscreen {
    height: 80vh;
    max-height: 700px;
  }
}

@media (min-width: 1024px) {
  .demo-slot-fullscreen {
    height: 85vh;
    max-height: 800px;
  }
}

.demo-slot-fullscreen iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Альтернативный вариант для компактного hero */
.hero-section.compact {
  height: 50vh;
  min-height: 300px;
  max-height: 400px;
}

@media (min-width: 768px) {
  .hero-section.compact {
    height: 60vh;
    max-height: 500px;
  }
}

/* ===== FEATURES SECTION ===== */
.features-section {
  background: var(--site-background-color-secondary);
  padding: 50px 0;
  margin-bottom: 40px;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-item {
  text-align: center;
  padding: 20px;
}

.feature-icon {
  margin-bottom: 20px;
}

.feature-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}


.feature-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--site-background-text-color);
  margin-bottom: 10px;
  line-height: 1.3;
  font-family: var(--font-title-heading);
}

.feature-description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}


/* ===== GAME NAVIGATION ===== */
.game-nav {
  background: var(--site-background-color-secondary);
  padding-right: 20px; 
  padding-left: 20px; /* внутренний отступ слева */
  margin-bottom: 30px;
  border-radius: var(--site-radius);
  overflow: hidden;
}

.game-nav-container {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

.game-nav-tab {
  background: transparent;
  border: none;
  color: var(--site-background-text-color);
  padding: 16px 24px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}

.game-nav-tab:hover {
  color: var(--fbbf24);
  background: var(--border-light);
}

.game-nav-tab.active {
  color: var(--fbbf24);
  border-bottom-color: var(--primary-color);
  background: rgba(220, 38, 38, 0.1);
}

/* ===== GAME SECTIONS ===== */
.game-section {
  padding-left: 20px; /* внутренний отступ слева */
  padding-right: 20px; 
  margin-bottom: 50px;
}

.game-section.hidden {
  display: none;
}

.game-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.game-section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--site-background-text-color);
  font-family: var(--font-title-heading);
}

.game-section-controls {
  display: flex;
  gap: 8px;
}

.game-nav-prev,
.game-nav-next {
  background: var(--primary-color);
  border: none;
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-nav-prev:hover,
.game-nav-next:hover {
  background: var(--darken-primary-color);
  transform: scale(1.1);
}

/* ===== GAMES GRID ===== */

.games-grid {
  padding-left: 20px; /* внутренний отступ слева */
  padding-right: 20px; 
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding: 0 20px;
}

.game-card {
  background: var(--site-background-color-secondary);
  border-radius: var(--site-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: var(--shadow-color) 0 4px 12px;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--overlay-dark);
}

.game-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover .game-image {
  transform: scale(1.05);
}

/* ===== GAME ACTIONS OVERLAY ===== */
.game-actions {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--game-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover .game-actions {
  opacity: 1;
}

.btn-demo,
.btn-play,
.btn-play-single {
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-demo {
  background: rgba(248,249,250,0.2);
  color: var(--white);
  border: 2px solid var(--fbbf24);
}

.btn-demo:hover {
  background: var(--fbbf24);
  color: var(--dark);
}

.btn-play,
.btn-play-single {
  background: var(--button-background);
  color: var(--white);
  border: 2px solid var(--button-background);
}

.btn-play:hover,
.btn-play-single:hover {
  background: var(--darken-button-background);
  border-color: var(--darken-button-background);
  transform: translateY(-2px);
}

/* ===== BADGES ===== */
.jackpot-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: linear-gradient(45deg, var(--fbbf24), var(--warning));
  color: var(--dark);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: var(--shadow-color) 0 2px 10px;
}

.jackpot-icon {
  font-size: 14px;
}

.exclusive-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--danger);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-title {
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--site-background-text-color);
  text-align: center;
  line-height: 1.4;
}

/* ===== CONTENT SECTION ===== */
.content-section {
  padding-left: 20px;
  padding-right: 20px; /* внутренний отступ слева */
  text-align: left; /* отключает центрирование, если унаследовано */

}

.content-section h1,
.content-section h2,
.content-section h3 {
  color: var(--site-background-text-color);
  margin-bottom: 20px;
  font-family: var(--font-title-heading);
}

.content-section h1 {
  font-size: 36px;
  color: var(--site-background-text-color);
}

.content-section h2 {
  font-size: 28px;
}

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

.content-section p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.content-section ul {
  list-style-type: disc;
  list-style-position: outside;
}

.content-section ol {
  list-style-type: decimal;
  list-style-position: outside;
}

.content-section ul,
.content-section ol {
  margin-left: 40px;
  padding-left: 0;
}

.content-section strong {
  color: var(--site-background-text-color);
  font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--footer-background-color);
  padding: 50px 0 30px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
}

.footer-description {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 14px;
}

.footer-nav {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: var(--text-muted-dark);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--primary-color);
}

.footer-contact p {
  margin-bottom: 8px;
}

.footer-contact a {
  color: var(--primary-color);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 30px;
  text-align: center;
}

.footer-copyright,
.footer-text {
  color: rgba(248,249,250,0.6);
  font-size: 12px;
  margin-bottom: 8px;
}

/* ===== UTILITY КЛАССЫ ===== */
.d-flex {
  display: flex !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.pl-1 {
  padding-left: .25rem !important;
}

.pr-2 {
  padding-right: .5rem !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  
  .burger-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .features-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .game-section-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  
  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    padding: 0 10px;
  }
  
  .game-nav-container {
    padding: 0 10px;
  }
  
  .game-nav-tab {
    font-size: 13px;
    padding: 14px 18px;
  }
  
  .content-section {
    padding: 40px 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .game-section-title {
    font-size: 24px;
  }
  
  .burger-menu {
    width: 280px;
    left: -280px;
  }
  
  .hero-btn {
    padding: 14px 24px;
    font-size: 14px;
  }
}

/* ===== АНИМАЦИИ И ЭФФЕКТЫ ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.game-card {
  animation: fadeInUp 0.6s ease-out;
}

.game-card:nth-child(1) { animation-delay: 0.1s; }
.game-card:nth-child(2) { animation-delay: 0.2s; }
.game-card:nth-child(3) { animation-delay: 0.3s; }
.game-card:nth-child(4) { animation-delay: 0.4s; }

/* ===== ПРЕЛОАДЕРЫ И СКРОЛЛЫ ===== */
.games-grid[data-section] {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--border-light);
}

.games-grid[data-section]::-webkit-scrollbar {
  height: 6px;
}

.games-grid[data-section]::-webkit-scrollbar-track {
  background: var(--border-light);
  border-radius: 3px;
}

.games-grid[data-section]::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
}

.games-grid[data-section]::-webkit-scrollbar-thumb:hover {
  background: var(--darken-primary-color);
}

/* ===== BONUS TILES SECTION ===== */
.bonus-tiles-section {
  background: var(--site-background-color-secondary);
  padding: 60px 0;
  margin-bottom: 50px;
}

.bonus-tiles-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.bonus-tile {
  background: var(--site-background-color);
  border-radius: var(--site-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: var(--shadow-color) 0 4px 12px;
  border: 1px solid rgba(248, 249, 250, 0.05);
}

.bonus-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--overlay-dark);
}

.bonus-tile-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--header-background-color);
}

.bonus-tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bonus-tile:hover .bonus-tile-image img {
  transform: scale(1.05);
}

.bonus-tile-content {
  padding: 24px;
  text-align: center;
}

.bonus-tile-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--site-background-text-color);
  margin-bottom: 16px;
  line-height: 1.3;
  font-family: var(--font-title-heading);
}

.bonus-tile-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  opacity: 0.9;
}

.bonus-tile-button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--site-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid var(--primary-color);
  box-shadow: var(--shadow-color) 0 4px 12px;
}

.bonus-tile-button:hover {
  background: var(--darken-primary-color);
  border-color: var(--darken-primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

/* ===== BONUS TILES ANIMATIONS ===== */
.bonus-tile {
  animation: fadeInUp 0.6s ease-out;
}

.bonus-tile:nth-child(1) { animation-delay: 0.1s; }
.bonus-tile:nth-child(2) { animation-delay: 0.2s; }
.bonus-tile:nth-child(3) { animation-delay: 0.3s; }
.bonus-tile:nth-child(4) { animation-delay: 0.4s; }
.bonus-tile:nth-child(5) { animation-delay: 0.5s; }
.bonus-tile:nth-child(6) { animation-delay: 0.6s; }

/* ===== BONUS TILES RESPONSIVE ===== */
@media (max-width: 768px) {
  .bonus-tiles-section {
    padding: 40px 0;
  }
  
  .bonus-tiles-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 15px;
  }
  
  .bonus-tile-content {
    padding: 20px;
  }
  
  .bonus-tile-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .bonus-tile-text {
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  .bonus-tile-button {
    padding: 10px 24px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .bonus-tiles-container {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 10px;
  }
  
  .bonus-tile-title {
    font-size: 16px;
  }
  
  .bonus-tile-text {
    font-size: 12px;
  }
}

/* ========== TABLE STYLES (DARK THEME) ========== */
.table-container {
  background-color: #1f2937;
  border: 1px solid #374151;
  border-radius: 0.75rem;
  margin: 2rem 0;
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  color: #f8f9fa;
  background-color: transparent;
}

thead {
  background-color: #374151;
}

th {
  padding: 1rem 0.75rem;
  text-align: left;
  font-weight: 600;
  color: #fbbf24;
  border-bottom: 2px solid #dc2626;
}

td {
  padding: 0.875rem 0.75rem;
  border-bottom: 1px solid #374151;
}

tbody tr:hover {
  background-color: #2d3748;
}

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

/* Ссылки в таблице */
table a {
  color: #dc2626;
  text-decoration: none;
  font-weight: 500;
}

table a:hover {
  color: #ef4444;
  text-decoration: underline;
}

/* ========== МОБИЛЬНАЯ АДАПТАЦИЯ ========== */
@media (max-width: 768px) {
  .table-container {
    margin: 1rem -1rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  table {
    font-size: 0.8rem;
  }

  th, td {
    padding: 0.5rem 0.4rem;
  }

  /* Первая колонка зафиксирована при скролле */
  th:first-child,
  td:first-child {
    position: sticky;
    left: 0;
    background-color: #1f2937;
    z-index: 1;
  }

  thead th:first-child {
    background-color: #374151;
  }
}

/* ========== PROSE (DARK THEME) ========== */
.prose {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #f8f9fa;
  margin-top: 3rem;
}

.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fbbf24;
}

/* ========== TABLE OF CONTENTS ========== */
#TableOfContents {
  background-color: #1f2937;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #374151;
  font-size: 1rem;
  margin: 2rem 0;
  color: #f8f9fa;
}

#TableOfContents ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

#TableOfContents li {
  margin-bottom: 1rem;
}

#TableOfContents a {
  color: #dc2626;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

#TableOfContents a:hover {
  color: #ef4444;
}

/* ========== FAQ BLOCK (DARK THEME) ========== */
.faq-block {
  background-color: #1f2937;
  padding: 2rem;
  margin: 3rem 0;
  border-radius: 0.75rem;
  border: 1px solid #374151;
}

.faq-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 2rem;
  text-align: center;
}

.faq-item {
  background-color: #374151;
  border: 1px solid #4b5563;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  color: #f8f9fa;
  font-size: 1.125rem;
  transition: background-color 0.3s ease;
}

.faq-item h3 {
  font-size: 1.4rem;
  color: #dc2626;
  margin-bottom: 1rem;
}

.faq-item div {
  line-height: 1.7;
}

.faq-item:hover {
  background-color: #4b5563;
}

/* ========== АДАПТИВ ========== */
@media (max-width: 768px) {
  .prose {
    font-size: 1.2rem;
    line-height: 1.6;
  }

  .prose h1,
  .prose h2,
  .prose h3 {
    font-size: 1.4rem;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto;
}

.slot-info {
  background-color: #1f2937;
  padding: 2rem;
  border-radius: 12px;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  font-family: sans-serif;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.info-grid div {
  background: #374151;
  border: 1px solid #4b5563;
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #f8f9fa;
  transition: background 0.3s ease;
}

.info-grid div:hover {
  background: #4b5563;
}

.info-grid svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
  color: #dc2626;
}

/* Мобильный адаптив */
@media (max-width: 768px) {
  .slot-info {
    padding: 1.5rem 1rem;
    border-radius: 8px;
  }
  
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .info-grid div {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 0.75rem;
    min-height: 120px;
    justify-content: center;
  }
  
  .info-grid svg {
    margin-bottom: 0.5rem;
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .slot-info {
    padding: 1rem 0.75rem;
  }
  
  .info-grid {
    gap: 0.75rem;
  }
  
  .info-grid div {
    padding: 1rem 0.5rem;
    font-size: 0.9rem;
    min-height: 100px;
  }
  
  .info-grid svg {
    width: 24px;
    height: 24px;
  }
}


