/* ===== 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";
  
  /* Chicken Road 2 inspired palette */
  --blue: #22c5d8;
  --indigo: #ff8a00;
  --purple: #ff8a00;
  --pink: #ff8a00;
  --red: #f2542d;
  --orange: #ff8a00;
  --yellow: #ffd166;
  --green: #6ebf49;
  --teal: #22c5d8;
  --cyan: #1fbfd9;
  --white: #fff8ed;
  --gray: #c1b3a7;
  --gray-dark: #1a0d04;
  --primary: #ff8a00;
  --secondary: #ffd166;
  --success: #6ebf49;
  --info: #22c5d8;
  --warning: #ffd166;
  --danger: #f2542d;
  --light: #2b1606;
  --dark: #0b0401;
  
  /* Breakpoints */
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  
  /* Typography */
  --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;
  
  /* Theme tokens */
  --button-radius: 50px;
  --shadow-color: rgba(0, 0, 0, 0.5);
  --primary-color: #ff8a00;
  --darken-primary-color: #c75a00;
  --lighten-primary-color: #ffd166;
  --accent: #ff8a00;
  --accent-gold: #ffd166;
  --accent-green: #6ebf49;
  --accent-sky: #1fbcd2;
  --accent-grass: #6ebf49;
  --site-background-color: #160902;
  --darken-site-background-color: #0b0401;
  --loader-darken-background-color: #f05d23;
  --loader-lighten-background-color: #ffd166;
  --site-background-text-color: #fff7eb;
  --site-background-color-secondary: #231106;
  --site-background-text-color-secondary: #fff7eb;
  --header-background-color: #1c0802;
  --header-background-text-color: #fff7eb;
  --footer-background-color: #1c0802;
  --footer-background-text-color: #fff7eb;
  --button-background: var(--primary-color);
  --darken-button-background: var(--darken-primary-color);
  --site-radius: 10px;
  --game-hover: rgba(255, 138, 0, 0.85);
  
  --body-background: linear-gradient(180deg, #150802 0%, #2b1204 60%, #120600 100%);
  --text-muted: rgba(255, 236, 210, 0.7);
  --text-muted-dark: rgba(255, 236, 210, 0.8);
  --text-light: rgba(255, 247, 235, 0.9);
  --border-light: rgba(255, 207, 150, 0.25);
  --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-theme-color: var(--primary-color);
  --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: 2rem;
  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;
}

/* ====== Casino Cards Container ====== */
.casino-cards-container {
  padding: 24px 16px;
  max-width: var(--container);
  margin: 0 auto;
}

.casino-heading {
  text-align: center;
  margin: 3rem auto 1.5rem;
  max-width: 960px;
  padding: 0 1rem;
}

.casino-heading h2 {
  font-family: var(--font-title-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--lighten-primary-color);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

/* Улучшенные стили для casino-card */
.casino-card {
  background: linear-gradient(135deg, #2b1306 0%, #180802 100%);
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  margin: 24px 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 209, 102, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.casino-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 65px rgba(0, 0, 0, 0.6);
}

.casino-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff8a00 0%, #ffd166 50%, #6ebf49 100%);
}

.casino-card .card-content {
  display: flex;
  align-items: stretch;
  min-height: 100px;
  gap: 0;
  flex-wrap: wrap;
}

.casino-card .logo-section {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 138, 0, 0.15) 100%);
  min-width: 200px;
  border-right: 1px solid rgba(255, 209, 102, 0.2);
}

.casino-card .logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(0,0,0,0.35);
  border: 2px solid rgba(255, 209, 102, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.casino-card .logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.casino-card .diamond {
  width: 20px;
  height: 20px;
  background: linear-gradient(45deg, var(--accent) 0%, #ff6b6b 100%);
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(220,53,69,0.3);
}

.casino-card .casino-info h2 {
  font-size: 20px;
  color: var(--site-background-text-color);
  font-weight: 700;
  margin-bottom: 6px;
  width: 200px;
  max-width: 200px;
  white-space: normal;
  word-break: break-word;
}

.casino-card .rating {
  display: flex;
  gap: 2px;
  align-items: center;
}

.casino-card .star {
  color: var(--accent-gold);
  font-size: 16px;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.casino-card .star--muted {
  color: rgba(255, 255, 255, 0.35);
}

.casino-card .divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 209, 102, 0.35), transparent);
  align-self: stretch;
  margin: 12px 0;
}

.casino-card .deposit-info,
.casino-card .bonus-info {
  padding: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  white-space: normal;
  word-break: break-word;
}

.casino-card .deposit-info {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 209, 102, 0.12) 100%);
  color: var(--site-background-text-color);
  width: 200px;
  flex: 0 0 200px;
}

.casino-card .bonus-info {
  background: linear-gradient(135deg, #ff8a00 0%, #ffce6d 100%);
  color: #1b0802;
  width: 600px;
  flex: 0 0 600px;
}

.casino-card .deposit-label,
.casino-card .bonus-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  margin-bottom: 8px;
  opacity: 0.8;
  width: auto;
}

.casino-card .deposit-range,
.casino-card .bonus-value {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.casino-card .action-section {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.casino-card .action-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.casino-card .btn {
  padding: 12px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  min-width: 200px;
  border: 2px solid transparent;
}

.casino-card .btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--lighten-primary-color) 100%);
  color: #1b0802;
  box-shadow: 0 6px 18px rgba(255, 138, 0, 0.4);
}

.casino-card .btn-primary:hover,
.casino-card .btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(255, 138, 0, 0.5);
  background: linear-gradient(135deg, var(--darken-primary-color) 0%, var(--primary-color) 100%);
}

.casino-card .btn-secondary {
  background: transparent;
  color: var(--lighten-primary-color);
  border-color: rgba(255, 209, 102, 0.6);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.casino-card .btn-secondary:hover,
.casino-card .btn-secondary:focus {
  transform: translateY(-2px);
  background: rgba(255, 209, 102, 0.1);
  color: var(--site-background-text-color);
  border-color: var(--lighten-primary-color);
}

@media (max-width: 768px) {
  .casino-card .logo-section,
  .casino-card .deposit-info,
  .casino-card .bonus-info,
  .casino-card .action-section {
    flex: 1 1 100%;
    width: 100%;
    border-right: none;
    text-align: center;
    align-items: center;
  }

  .casino-card .casino-info h2 {
    max-width: none;
    width: auto;
  }

  .casino-card .deposit-info,
  .casino-card .bonus-info {
    flex: 1 1 auto;
  }
}
/* ===== 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: 50px;
  width: 100px;
}

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

.header-lang {
  margin-left: 20px;
}

.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);
}

.language-dropdown {
  position: relative;
  display: inline-flex;
}

.language-dropdown-header {
  margin-left: 1rem;
}

.language-dropdown-mobile {
  width: 100%;
  justify-content: center;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  color: var(--site-background-text-color);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.language-toggle:hover {
  border-color: var(--lighten-primary-color);
  color: var(--lighten-primary-color);
}

.language-caret {
  font-size: 0.8rem;
  line-height: 1;
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--header-background-color);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 0.5rem;
  display: none;
  min-width: 200px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  z-index: 50;
}

.language-dropdown.open .language-menu {
  display: block;
}

.language-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  color: var(--site-background-text-color);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.language-option:hover {
  background: rgba(255, 255, 255, 0.08);
}

.language-option.active {
  background: var(--primary-color);
  color: #1b0802;
  font-weight: 600;
}

.language-flag {
  font-size: 1rem;
  line-height: 1;
}

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

  .language-dropdown-mobile {
    flex-direction: column;
    gap: 0.75rem;
  }

  .language-dropdown-mobile .language-toggle {
    width: 100%;
    justify-content: center;
  }

  .language-dropdown-mobile .language-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 16px;
    display: none;
    margin-top: 0.5rem;
  }

  .language-dropdown-mobile.open .language-menu {
    display: block;
  }
}

/* ===== 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 {
  font-size: 1rem;
  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-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--primary-color);
  color: #1b0902;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  text-transform: uppercase;
}

.hero-btn:hover {
  background: var(--darken-primary-color);
  border-color: var(--darken-primary-color);
  transform: translateY(-2px);
}

.hero-btn-secondary {
  background: transparent;
  color: var(--lighten-primary-color);
  border: 2px solid var(--lighten-primary-color);
}

.hero-btn-secondary:hover {
  background: rgba(255, 209, 102, 0.15);
  color: var(--lighten-primary-color);
}

/* Адаптивная типографика для 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;
}

.hero-section.hero-demo {
  background: radial-gradient(circle at top, rgba(255, 138, 0, 0.25), rgba(7, 3, 1, 0.95));
  min-height: auto;
  height: auto;
  padding: 0;
}

.hero-section.hero-demo::before {
  display: none;
}

.hero-demo-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  position: relative;
}

.hero-demo-inner iframe {
  width: 100%;
  height: 70vh;
  min-height: 450px;
  max-height: 850px;
  border: none;
  border-radius: 22px;
  background: #050301;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65), inset 0 0 0 1px rgba(255, 209, 102, 0.3);
}

@media (max-width: 768px) {
  .hero-demo-inner {
    padding: 1.25rem;
  }

  .hero-demo-inner iframe {
    height: 60vh;
    min-height: 360px;
  }
}

/* Для demo-slot тоже делаем адаптивным */
/* Альтернативный вариант для компактного 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; /* отключает центрирование, если унаследовано */
  padding-top: 60px;
  padding-bottom: 60px;
}

.content-section > .container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.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: 2.2rem !important;
  color: var(--site-background-text-color);
}

.content-section h2 {
  font-size: 2.2rem !important;
}

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

.content-section p {
  color: var(--white);
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 1.3rem !important;
}

.content-section ul {
  list-style-type: disc;
  list-style-position: outside;
   font-size: 1.3rem !important;
}

.content-section ol {
  list-style-type: decimal;
  list-style-position: outside;
   font-size: 1.3rem !important;
}

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

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

.content-section ul li,
.content-section ol li {
  margin-bottom: 0.75rem;
   font-size: 1.3rem !important;
   list-style: disc;
  line-height: 1.85;
}

@media (max-width: 768px) {
  .content-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .content-section > .container {
    max-width: 100%;
    padding: 0 10px;
  }

  .content-section p,
  .content-section ul li,
  .content-section ol li {
    font-size: 1rem;
    line-height: 1.75;
  }
}

/* ===== 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: 1.5rem;
  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 var(--primary-color);
}

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: var(--accent-sky);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

table a:hover {
  color: var(--lighten-primary-color);
  text-decoration: underline;
}

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

  table {
    font-size: 1rem;
  }

  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: var(--accent-sky);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

#TableOfContents a:hover {
  color: var(--lighten-primary-color);
}

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

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

.faq-item {
  background-color: #514137;
  border: 1px solid #634b4b;
  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: var(--accent-gold);
  margin-bottom: 1rem;
}

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

.faq-item:hover {
  background-color: #6b6542;
}

/* ========== АДАПТИВ ========== */
@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: linear-gradient(135deg, #2b1204 0%, #1b0802 100%);
  padding: 2.5rem;
  border-radius: 20px;
  max-width: 1100px;
  margin: 0 auto 3rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
  font-family: var(--font-regular);
  border: 1px solid rgba(255, 188, 99, 0.2);
}

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

.info-item {
  background: rgba(255, 138, 0, 0.08);
  border: 1px solid rgba(255, 188, 99, 0.35);
  padding: 1.25rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
  color: #f8f9fa;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  text-align: left;
  min-height: 120px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.info-item:hover {
  background: rgba(255, 138, 0, 0.18);
  border-color: rgba(255, 209, 102, 0.5);
  transform: translateY(-4px);
}

.info-item svg,
.info-item img {
  flex-shrink: 0;
}

.info-icon {
  width: 52px;
  height: 52px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 209, 102, 0.12);
  border: 1px solid rgba(255, 209, 102, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  object-fit: contain;
  position: relative;
  overflow: hidden;
}

.info-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  mix-blend-mode: screen;
}

.info-item-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.info-label {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lighten-primary-color);
  width: 100px;
  min-width: 100px;
  font-weight: 700;
}

.info-value {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--site-background-text-color);
  line-height: 1.3;
  flex: 1;
}

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

@media (max-width: 480px) {
  .slot-info {
    padding: 1rem 0.75rem;
  }
  
  .info-grid {
    gap: 0.75rem;
  }
  
  .info-item {
    padding: 1rem 0.5rem;
    font-size: 0.9rem;
  }
  
  .info-icon {
    width: 40px;
    height: 40px;
  }
  
  .info-item-text {
    gap: 0.25rem;
  }
}

/* ===== COMMENTS SECTION ===== */
.comments-section {
  background: #1b0b04;
  border: 1px solid rgba(255, 209, 102, 0.2);
  border-radius: 24px;
  padding: 2.5rem;
  margin: 3rem auto;
  max-width: 1100px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.comments-header {
  text-align: center;
  margin-bottom: 2rem;
}

.comments-header h2 {
  font-family: var(--font-title-heading);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--lighten-primary-color);
}

.comments-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.comments-list {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.comment-card {
  background: rgba(255, 138, 0, 0.08);
  border: 1px solid rgba(255, 209, 102, 0.25);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.comment-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted-dark);
}

.comment-author {
  font-weight: 600;
  color: var(--site-background-text-color);
}

.comment-casino {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--lighten-primary-color);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.comment-casino a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.5rem;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 209, 102, 0.45);
  background: rgba(255, 209, 102, 0.12);
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.comment-casino a::after {
  content: "\2197";
  font-size: 0.8rem;
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.comment-casino a:hover,
.comment-casino a:focus-visible {
  background: var(--accent-gold);
  color: #1c1405;
  border-color: var(--accent-gold);
  transform: translateY(-1px);
}

.comment-casino a:hover::after,
.comment-casino a:focus-visible::after {
  transform: translateX(2px);
  opacity: 1;
}

.comment-rating {
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  color: var(--accent-gold);
}

.comment-rating .star {
  font-size: 1rem;
  color: rgba(255, 209, 102, 0.35);
  transition: color 0.2s ease, transform 0.2s ease;
}

.comment-rating .star.filled {
  color: var(--accent-gold);
}

.comment-rating .comment-rating-value {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.comment-text {
  margin-top: 1rem;
  line-height: 1.6;
  font-size: 1rem;
  color: var(--site-background-text-color);
}

.comment-form-wrapper {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 209, 102, 0.2);
  border-radius: 18px;
  padding: 1.75rem;
}

.comment-form-wrapper h3 {
  margin-bottom: 0.25rem;
  font-size: 1.5rem;
  color: var(--lighten-primary-color);
}

.comment-form-wrapper p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.comment-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.comment-form .form-field span {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
}

.comment-form input,
.comment-form textarea,
.comment-form select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 209, 102, 0.2);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: var(--site-background-text-color);
  font-family: var(--font-regular);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.comment-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255, 209, 102, 0.8) 50%), linear-gradient(135deg, rgba(255, 209, 102, 0.8) 50%, transparent 50%);
  background-position: calc(100% - 1.1rem) 55%, calc(100% - 0.7rem) 55%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
  cursor: pointer;
  font-weight: 600;
}

.comment-form select::-ms-expand {
  display: none;
}

.comment-form select option {
  background-color: rgba(12, 9, 4, 0.96);
  color: var(--site-background-text-color);
  font-weight: 500;
}

.comment-form select option:checked {
  background-color: var(--primary-color);
  color: #0c0a05;
}

.comment-form input:focus,
.comment-form textarea:focus,
.comment-form select:focus {
  outline: none;
  border-color: var(--lighten-primary-color);
  box-shadow: 0 0 0 2px rgba(255, 209, 102, 0.25);
}

.comment-submit {
  background: var(--primary-color);
  border: none;
  border-radius: 999px;
  padding: 0.9rem 2.5rem;
  color: #1b0802;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.comment-submit:hover {
  background: var(--darken-primary-color);
  transform: translateY(-2px);
}

.comment-status {
  min-height: 1.5rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--lighten-primary-color);
}

@media (max-width: 768px) {
  .comments-section {
    padding: 1.5rem;
  }

  .comment-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
}

/* ===== Locale specific tweaks ===== */
html[lang="it-IT"] {
  font-size: 18px;
}

html[lang="it-IT"] .slot-info-grid .info-item-text,
html[lang="it-IT"] .slot-info-grid .info-value {
  font-size: 1.1rem;
}

html[lang="it-IT"] .content-section p,
html[lang="it-IT"] .content-section li {
  font-size: 1.05rem !important;
  line-height: 1.9;
}

html[lang="it-IT"] .content-section table,
html[lang="it-IT"] .content-section table th,
html[lang="it-IT"] .content-section table td {
  font-size: 1.05rem;
}

html[lang="it-IT"] .content-section table th,
html[lang="it-IT"] .content-section table td {
  padding: 0.85rem 1.1rem;
}

