/* ==========================================================================
   1. RESET & DESIGN VARIABLES (:root)
   ========================================================================== */
:root {
  --bg-main: #060c10;
  --bg-surface: #0e181e;
  --bg-card: rgba(14, 24, 30, 0.75);
  --glass-bg: rgba(14, 24, 30, 0.65);
  --glass-border: rgba(255, 255, 255, 0.08);
  
  --accent-mint: #00e699;
  --glow-mint: rgba(0, 230, 153, 0.4);
  --accent-ruby: #ff2a6d;
  --glow-ruby: rgba(255, 42, 109, 0.55);
  
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  --sidebar-width: 280px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', Verdana, sans-serif;
}

html, body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  min-height: 100%;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Анимации кнопок */
@keyframes regShimmer {
  0% { transform: translateX(-150%) skewX(-25deg); }
  50%, 100% { transform: translateX(150%) skewX(-25deg); }
}

@keyframes regGlowPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 42, 109, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.4); }
  50% { box-shadow: 0 0 28px rgba(255, 42, 109, 0.9), inset 0 1px 2px rgba(255, 255, 255, 0.6); }
}

@keyframes bannerPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(0, 230, 153, 0.4); }
  50% { box-shadow: 0 0 24px rgba(0, 230, 153, 0.85); }
}

/* Интерактивные элементы */
html body a, 
html body button, 
html body input, 
html body select, 
html body textarea, 
html body .toggle, 
html body .lbl-toggle, 
html body [role="button"], 
html body .slots_item, 
html body .units_item,
html body #burger,
html body .burger,
html body #close {
  cursor: pointer;
  transition: var(--transition);
}

button {
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

a {
  color: var(--accent-mint);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

html body main.mainContent {
  display: flex;
  width: 100%;
  min-height: 100vh;
  position: relative;
}

/* ==========================================================================
   2. DESKTOP LAYOUT (Fixed Sidebar Left & Header)
   ========================================================================== */
@media screen and (min-width: 993px) {
  html body .main-container {
    margin-left: var(--sidebar-width);
    margin-right: 0;
    width: calc(100% - var(--sidebar-width));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--bg-main);
  }

  html body .sidebar, 
  html body #mobileMenu {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    width: var(--sidebar-width);
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: rgba(6, 12, 16, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-right: 1px solid var(--glass-border);
    border-left: none;
    padding: 35px 20px;
    z-index: 1000;
  }

  html body .sidebar .logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 36px;
    padding-left: 8px;
  }

  html body header.header .logo,
  html body .burger, 
  html body #burger, 
  html body #close, 
  html body .overlay, 
  html body .footer-block-btn,
  html body .mainContent #mobileMenu:not([hidden]) ~ .main-container #close,
  html body .mainContent #mobileMenu.active ~ .main-container #close {
    display: none;
  }

  html body header.header .buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
  }
}

/* ==========================================================================
   3. MOBILE LAYOUT & NAVIGATION
   ========================================================================== */
@media screen and (max-width: 992px) {
  html body .main-container {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  html body header.header {
    height: 80px;
    padding: 0 16px;
    display: flex;
    align-items: center;
  }

  html body .headerWrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
  }

  html body .header_left {
    display: flex;
    align-items: center;
    height: 100%;
  }

  html body header.header .logo {
    display: flex;
    align-items: center;
    height: 100%;
  }

  html body header.header .buttons,
  html body .header-caption,
  html body .downloadApk,
  html body .header .menu {
    display: none;
  }

  html body .burger, 
  html body #burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-left: auto;
  }

  html body .burger img,
  html body #burger img {
    width: 28px;
    height: 28px;
    object-fit: contain;
  }

  /* Выезжающее меню: увеличен верхний отступ (padding-top: 85px) */
  html body .sidebar, 
  html body #mobileMenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    height: 100vh;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    background: rgba(6, 12, 16, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--glass-border);
    padding: 85px 20px 30px;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    overflow-y: auto;
  }

  /* Отступ для первого пункта ("Главная"), чтобы он не обрезался */
  html body .sidebar .menu-item:first-of-type,
  html body #mobileMenu .menu-item:first-of-type {
    margin-top: 10px;
  }

  html body .sidebar .logo,
  html body #mobileMenu .logo {
    display: none;
  }

  html body #mobileMenu:not([hidden]),
  html body .mainContent #mobileMenu:not([hidden]),
  html body .sidebar.active {
    right: 0;
  }

  html body #close {
    display: none;
  }

  html body .mainContent #mobileMenu:not([hidden]) ~ .main-container .header,
  html body .mainContent #mobileMenu.active ~ .main-container .header {
    z-index: 100000;
  }

  html body .mainContent #mobileMenu:not([hidden]) ~ .main-container #close,
  html body .mainContent #mobileMenu.active ~ .main-container #close {
    display: flex;
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 100001;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
  }

  html body .mainContent #mobileMenu:not([hidden]) ~ .main-container #close img,
  html body .mainContent #mobileMenu.active ~ .main-container #close img {
    width: 24px;
    height: 24px;
    display: block;
  }

  html body .overlay:not([hidden]) {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9998;
  }

  html body .footer-block-btn {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 85px;
    background: rgba(6, 12, 16, 0.96);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--glass-border);
    z-index: 99;
    align-items: flex-start;
    justify-content: center;
    padding: 12px 16px env(safe-area-inset-bottom, 20px) 16px;
  }

  html body .footer-block-btn .buttons {
    display: flex;
    width: 100%;
    max-width: 500px;
    gap: 12px;
  }

  html body .footer-block-btn .buttons button {
    flex: 1;
    height: 48px;
    font-size: 14px;
    text-align: center;
    border-radius: var(--radius-sm);
  }
}

/* Стилизация ссылок в меню */
.sidebar .menu-item {
  margin-bottom: 12px;
  width: 100%;
}

html body .sidebar .menu-item a,
html body .sidebar .menu-item button {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
}

html body .sidebar .menu-item a:hover,
html body .sidebar .menu-item button:hover {
  background: rgba(0, 230, 153, 0.1);
  border-color: var(--accent-mint);
  color: var(--accent-mint);
}

.sidebar .menu-item img {
  width: 20px;
  height: 20px;
  margin-right: 12px;
}

/* ==========================================================================
   4. HEADER & LOGO
   ========================================================================== */
.header {
  background: rgba(6, 12, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  z-index: 100;
  display: flex;
  align-items: center;
}

.headerInner.wrapper {
  width: 96%;
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
}

html body .logo img, 
html body img.logotype {
  width: auto;
  height: auto;
  max-height: 44px;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

/* ==========================================================================
   5. BUTTONS DESIGN (FX & Sizing)
   ========================================================================== */
html body .regButton, 
html body .btn-reg {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ff2a6d 0%, #ff0055 50%, #d80048 100%);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 0 28px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  animation: regGlowPulse 3s infinite ease-in-out;
  white-space: nowrap;
}

html body .regButton::before, 
html body .btn-reg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  animation: regShimmer 3s infinite;
  pointer-events: none;
}

.regButton:hover, .btn-reg:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 42, 109, 1);
}

html body .logButton, 
html body .btn-log {
  background: rgba(0, 230, 153, 0.08);
  border: 1px solid var(--accent-mint);
  color: var(--accent-mint);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0 26px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 12px rgba(0, 230, 153, 0.25);
  white-space: nowrap;
}

.logButton:hover, .btn-log:hover {
  background: var(--accent-mint);
  color: #060c10;
  box-shadow: 0 0 22px var(--glow-mint);
}

/* Кнопки на баннерах */
html body .banner_info button,
html body .bannerCasino,
html body .btn-banner {
  background: linear-gradient(135deg, #00e699 0%, #00b377 100%);
  color: #060c10;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.2;
  padding: 12px 24px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: bannerPulse 2.5s infinite ease-in-out;
  white-space: nowrap;
}

.banner_info button:hover,
.bannerCasino:hover,
.btn-banner:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 30px rgba(0, 230, 153, 0.9);
}

/* ==========================================================================
   6. BANNERS GRID
   ========================================================================== */
.banner {
  width: 96%;
  max-width: 1400px;
  margin: 24px auto;
  height: auto;
}

.banner .banner_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.banner .banner_left, 
.banner .banner_right {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  min-height: 280px;
}

.banner .banner_left {
  background: linear-gradient(180deg, rgba(6, 12, 16, 0.2) 0%, rgba(6, 12, 16, 0.9) 100%), url('/banner-2-bg.webp') center/cover no-repeat;
}

.banner .banner_right {
  background: linear-gradient(180deg, rgba(6, 12, 16, 0.2) 0%, rgba(6, 12, 16, 0.9) 100%), url('/banner-1-bg.webp') center/cover no-repeat;
}

.banner_left_img, .banner_right_img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 220px;
  height: 240px;
  z-index: 1;
  pointer-events: none;
}

.banner_left_img { background: url('/bonus-casino-desk.webp') right bottom/contain no-repeat; }
.banner_right_img { background: url('/banner_left_img.webp') right bottom/contain no-repeat; }

.banner_title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-primary);
  text-transform: uppercase;
  z-index: 2;
}

.banner_caption {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
  z-index: 2;
}

.banner_caption_gradient {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(90deg, #00e699 0%, #00b377 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px var(--glow-mint);
  z-index: 2;
}

.banner_info {
  z-index: 2;
  margin-top: auto;
  padding-top: 16px;
  width: 100%;
  display: flex;
  align-items: flex-end;
}

@media screen and (max-width: 992px) {
  .banner .banner_inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .banner .banner_left, 
  .banner .banner_right {
    min-height: 200px;
    padding: 20px;
  }

  .banner_left_img, 
  .banner_right_img {
    width: 160px;
    height: 180px;
  }

  html body .banner_info button,
  html body .bannerCasino,
  html body .btn-banner {
    width: auto;
    padding: 10px 20px;
    height: 40px;
    font-size: 12px;
  }
}

/* ==========================================================================
   7. TABLE OF CONTENTS (.toc)
   ========================================================================== */
.toc.wrapper {
  width: 96%;
  max-width: 1400px;
  margin: 24px auto;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 16px;
}

html body .toc ul {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 10px;
  list-style: none;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-mint) transparent;
}

.toc ul::-webkit-scrollbar { height: 3px; }
.toc ul::-webkit-scrollbar-thumb { background: var(--accent-mint); border-radius: 3px; }

html body .toc li { flex: 0 0 auto; list-style: none; }

html body .toc li a {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
}

.toc li a:hover {
  background: var(--accent-mint);
  color: #060c10;
  box-shadow: 0 0 12px var(--glow-mint);
  border-color: var(--accent-mint);
}

/* ==========================================================================
   8. CONTENT & TYPOGRAPHY
   ========================================================================== */
.textBlock {
  width: 96%;
  max-width: 1400px;
  margin: 24px auto;
  padding: 28px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  text-align: left;
  padding: 10px 0;
  font-weight: 700;
}

h1.general-h1 { font-size: 26px; line-height: 1.3; color: #fff; margin-bottom: 12px; }
h2.general-h2 { font-size: 22px; line-height: 1.4; margin: 10px 0 14px; border-left: 3px solid var(--accent-mint); padding-left: 12px; }
h3.general-h3 { font-size: 18px; line-height: 1.4; color: var(--text-secondary); margin: 16px 0 10px; }

p, .general-p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  padding-bottom: 14px;
}

.button-block { text-align: center; margin: 20px 0; }

html body .button-block button, 
html body .btn-content {
  background: linear-gradient(135deg, #ff2a6d 0%, #d80048 100%);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  box-shadow: 0 0 20px var(--glow-ruby);
}

.button-block button:hover, .btn-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--glow-ruby);
}

/* Списки */
.general-ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 24px;
}

.general-ul li {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--accent-mint);
  padding: 12px 16px 12px 36px;
  border-radius: var(--radius-sm);
  position: relative;
  font-size: 15px;
  color: var(--text-primary);
}

.general-ul li::before {
  content: '✦';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-mint);
  font-size: 12px;
  text-shadow: 0 0 8px var(--glow-mint);
}

.general-ol {
  list-style: none;
  counter-reset: ol-counter;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 24px;
}

.general-ol li {
  counter-increment: ol-counter;
  position: relative;
  padding: 12px 16px 12px 48px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text-primary);
}

.general-ol li::before {
  content: counter(ol-counter);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-mint), var(--accent-ruby));
  color: #060c10;
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Таблицы */
.general-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
}

.general-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(14, 24, 30, 0.4);
}

.general-table .general-td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 14px;
}

.general-table .general-tr:hover { background: rgba(255, 255, 255, 0.02); }

.general-table .general-tr .general-td:first-child {
  color: var(--text-primary);
  font-weight: 600;
  width: 35%;
  border-right: 1px solid var(--glass-border);
}

/* ==========================================================================
   9. UNITS & SLOTS GRID
   ========================================================================== */
.units, .slots {
  width: 96%;
  max-width: 1400px;
  margin: 36px auto;
}

.units_title, .slots_title { text-align: center; margin-bottom: 20px; }

.units_title h2 p, .slots_title_first {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

.units_line, .slots_line {
  display: flex;
  justify-content: center;
  margin-top: 6px;
  opacity: 0.6;
}

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

.units_item {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.units_item:hover {
  border-color: var(--accent-mint);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.units_item_img {
  height: 120px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}

.units_item:nth-child(1) .units_item_img { background: url('/card_bg_1.webp') center/cover no-repeat; }
.units_item:nth-child(2) .units_item_img { background: url('/card_bg_2.webp') center/cover no-repeat; }
.units_item:nth-child(3) .units_item_img { background: url('/card_bg_3.webp') center/cover no-repeat; }
.units_item:nth-child(4) .units_item_img { background: url('/card_bg_4.webp') center/cover no-repeat; }

.units_item span {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-primary);
}

.units_item button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.slots_list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.slots_list .slots_item {
  position: relative;
  height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.slots_list .slots_item:nth-child(1) { background: url('/slot_1.webp') center/cover no-repeat; }
.slots_list .slots_item:nth-child(2) { background: url('/slot_2.webp') center/cover no-repeat; }
.slots_list .slots_item:nth-child(3) { background: url('/slot_3.webp') center/cover no-repeat; }
.slots_list .slots_item:nth-child(4) { background: url('/slot_4.webp') center/cover no-repeat; }
.slots_list .slots_item:nth-child(5) { background: url('/slot_5.webp') center/cover no-repeat; }
.slots_list .slots_item:nth-child(6) { background: url('/slot_6.webp') center/cover no-repeat; }

.slots_item_inner {
  position: absolute;
  inset: 0;
  background: rgba(6, 12, 16, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 16px 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slots_list .slots_item:hover .slots_item_inner { opacity: 1; }

.slots_item_inner .name {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

.slots_item_inner .button_inner {
  background: linear-gradient(135deg, #00e699 0%, #00b377 100%);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 10px var(--glow-mint);
}

.slots_item_inner .button span {
  color: #060c10;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}

.slots_item_inner button { position: absolute; inset: 0; z-index: 3; }

/* ==========================================================================
   10. FAQ ACCORDION
   ========================================================================== */
.faq-container { width: 100%; margin-top: 20px; }

.faq-container .faq-item {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-container .toggle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 60px;
  opacity: 0;
  z-index: 10;
}

.faq-container .faq-question {
  font-size: 16px;
  font-weight: 600;
  padding: 18px 50px 18px 20px;
  color: var(--text-primary);
  position: relative;
  pointer-events: none;
}

.faq-container .icon {
  position: absolute;
  right: 20px;
  top: 22px;
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.faq-container .icon::before,
.faq-container .icon::after {
  content: '';
  position: absolute;
  background: var(--accent-mint);
  transition: transform 0.3s ease;
}

.faq-container .icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-container .icon::after { top: 0; left: 7px; width: 2px; height: 16px; }

.faq-container .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  transition: all 0.3s ease;
  opacity: 0;
}

.faq-container .toggle:checked ~ .icon::after { transform: rotate(90deg); opacity: 0; }
.faq-container .toggle:checked ~ .faq-answer { max-height: 500px; padding: 0 20px 20px 20px; opacity: 1; }
.faq-container .toggle:checked ~ .faq-question { color: var(--accent-mint); }

/* ==========================================================================
   11. FOOTER & SCROLL TOP
   ========================================================================== */
.footer {
  background: #030709;
  border-top: 1px solid var(--glass-border);
  padding: 40px 0 100px;
  margin-top: 60px;
}

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

.footer p.big {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer .menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer .menu ul { list-style: none; }
.footer .menu li { margin-bottom: 10px; }
.footer .menu a { color: var(--text-secondary); font-size: 14px; }
.footer .menu a:hover { color: var(--accent-mint); }

.footer .divider {
  height: 1px;
  background: var(--glass-border);
  margin: 24px 0;
}

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

.copyright {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 20px;
}

.scrollTop {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(14, 24, 30, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  backdrop-filter: blur(8px);
}

/* ==========================================================================
   12. EXTRA RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media screen and (max-width: 1200px) {
  .units_list { grid-template-columns: repeat(2, 1fr); }
  .slots_list { grid-template-columns: repeat(3, 1fr); }
  .slots_item_inner { opacity: 1; background: rgba(6, 12, 16, 0.6); }
}

@media screen and (max-width: 768px) {
  .footer .menu { grid-template-columns: 1fr; gap: 15px; }
  .textBlock { padding: 18px; }
  h1.general-h1 { font-size: 20px; }
  h2.general-h2 { font-size: 18px; }
  .banner_title { font-size: 22px; }
  .banner_caption_gradient { font-size: 24px; }
}

@media screen and (max-width: 550px) {
  .slots_list, .units_list { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .units_item_img { height: 90px; }
}