/* ==========================================================================
   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: 20px 16px;
    z-index: 1000;
  }

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

  html body header.header .logo,
  .headerWrapper .header_left .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;
  }
}

html body header.header .logo {
    display: none;
}

/* ==========================================================================
   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,
  .headerWrapper .header_left .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: 65px 16px 20px;
    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: 6px; /* Было 12px — уменьшили отступ между кнопками */
  width: 100%;
}

html body .sidebar .menu-item a,
html body .sidebar .menu-item button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 8px 14px; /* Было 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: 14px; /* Уменьшили шрифт на 1px для компактности */
  font-weight: 500;
}
html body .sidebar .menu-item a img,
html body .sidebar .menu-item button img {
    margin: 0 5px 0 0 ;

}
/* ==========================================================================
   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,
.banner_left_img-new, .banner_right_img-new {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 220px;
  height: 240px;
  z-index: 1;
  pointer-events: none;
}

.banner_left_img-new , .banner_left_img{ background: url('/bonus-casino-desk.webp') right bottom/contain no-repeat; }
.banner_right_img-new , .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; }
}

/* New */

:root {
  /* Розовая (малиновая) приоритезация с активным зеленым (салатовым) неоном */
  --pinco-bg: #fff5f7; 
  --pinco-bg-card: #ffffff;
  
  --pinco-crimson-pastel: #ff7aa5;
  --pinco-crimson-bright: #ff1a53;
  --pinco-crimson-glow: rgba(255, 26, 83, 0.4);
  
  --pinco-lime-pastel: #84f2b9; 
  --pinco-lime-bright: #00d26a;
  --pinco-lime-glow: rgba(0, 210, 106, 0.5);
  
  --pinco-gray-light: #fefeff;
  --pinco-gray-border: #f2e1e6; 
  
  --text-dark: #2d3748;
  --text-muted: #64748b;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}


.app-viewport{
  background-color: var(--pinco-bg);
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 26, 83, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(0, 210, 106, 0.15) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--text-dark);
  font-family: var(--font-family);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: var(--pinco-crimson-bright); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--pinco-lime-bright); text-shadow: 0 0 10px var(--pinco-lime-glow); }

/* Центрирование картинок */
img { display: block; margin: 0 auto; max-width: 100%; }

/* Кастомный скроллбар */
::-webkit-scrollbar { width: 8px; height: 6px; }
::-webkit-scrollbar-track { background: var(--pinco-bg); }
::-webkit-scrollbar-thumb { background: var(--pinco-crimson-pastel); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--pinco-lime-bright); }

/* =========================================
   Бургер меню
   ========================================= */
#sidebar-toggle { display: none; }
.app-viewport { display: flex; flex-direction: column; min-height: 100vh; position: relative; }

.sidebar-drawer {
  width: 320px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-right: 1px solid var(--pinco-crimson-glow);
  display: flex; flex-direction: column; padding: 30px 24px;
  position: fixed; top: 0; bottom: 0; left: 0;
  z-index: 1000; overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 10px 0 40px rgba(255, 26, 83, 0.15);
}

#sidebar-toggle:checked ~ .app-viewport .sidebar-drawer { transform: translateX(0); }
#sidebar-toggle:checked ~ .app-viewport .sidebar-overlay { opacity: 1; pointer-events: auto; }

.sidebar-overlay {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3px); z-index: 999;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}

.sidebar-drawer .logo-box {
  margin-bottom: 30px; display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 20px; border-bottom: 1px dashed var(--pinco-gray-border);
}

.drawer-close-btn { color: var(--text-muted); font-size: 32px; cursor: pointer; line-height: 1; transition: color 0.3s; }
.drawer-close-btn:hover { color: var(--pinco-crimson-bright); text-shadow: 0 0 10px var(--pinco-crimson-glow); }

.nav-menu-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.nav-menu-item a, .nav-menu-item button {
  display: flex; align-items: center; gap: 16px; width: 100%;
  padding: 14px 20px; border-radius: 12px;
  background: #fff0f3; border: 1px solid rgba(255, 26, 83, 0.15);
  color: var(--text-dark); font-weight: 600; font-size: 15px;
  cursor: pointer; transition: all 0.3s ease;
}
.nav-menu-item button img {margin:0;}
.nav-menu-item a:hover, .nav-menu-item button:hover {
  background: #fff; border-color: var(--pinco-crimson-bright);
  box-shadow: inset 4px 0 0 var(--pinco-crimson-bright), 0 5px 15px var(--pinco-crimson-glow);
  padding-left: 26px; color: var(--pinco-crimson-bright);
}

/* =========================================
   Шапка
   ========================================= */
.main-viewport { flex: 1; display: flex; flex-direction: column; }
.cyber-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 26, 83, 0.2);
  position: sticky; top: 0; z-index: 900;
  padding: 12px 24px; box-shadow: 0 4px 30px rgba(255, 26, 83, 0.1);
}

.header-content { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; }

.header-left-group { display: flex; align-items: center; gap: 20px; }
html body header.header .logo,.header-left-group .logo {
    display: flex;
}
html body .burger-trigger , html body .burger-trigger {
    display: flex;
}
.burger-trigger {
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  padding: 10px; border-radius: 10px;
  background: #fff0f3; border: 1px solid rgba(255, 26, 83, 0.2); transition: all 0.3s ease;
}
.burger-trigger:hover {
  background: #fff; border-color: var(--pinco-crimson-bright); box-shadow: 0 0 15px var(--pinco-crimson-glow);
}

.header-caption {
  font-size: 13px; color: var(--pinco-crimson-bright); font-weight: 800; text-transform: uppercase;
  background: rgba(255, 26, 83, 0.1); padding: 8px 16px; border-radius: 20px;
  border: 1px solid rgba(255, 26, 83, 0.2); text-shadow: 0 0 10px rgba(255, 26, 83, 0.2);
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.html body .cyber-header .header-content .header-actions .btn-reg {
  background: var(--pinco-crimson-bright); color: #ffffff;
  font-weight: 800; padding: 10px 24px; border-radius: 8px; border: none; cursor: pointer;
  box-shadow: 0 0 15px var(--pinco-crimson-glow);
  text-transform: uppercase; font-size: 14px; letter-spacing: 1px; transition: all 0.3s ease;
}
html body .header-actions .btn-cyber-primary:hover, .regButton:hover, .btn-reg:hover { background: var(--pinco-lime-bright); box-shadow: 0 0 25px var(--pinco-lime-glow); transform: translateY(-2px); color: #111; }

.html body .cyber-header .header-content .header-actions .btn-log {
  background: #fff0f3; color: var(--text-dark);
  font-weight: 800; padding: 10px 24px; border-radius: 8px;
  border: 2px solid rgba(255, 26, 83, 0.3); cursor: pointer;
  text-transform: uppercase; font-size: 14px; letter-spacing: 1px; transition: all 0.3s ease;
}
html body .header-actions .btn-cyber-secondary:hover, .logButton:hover, .btn-log:hover {
  border-color: var(--pinco-lime-bright); background: #fff; box-shadow: 0 0 15px var(--pinco-lime-glow); transform: translateY(-2px);
}

.downloadApk { display: none; }

/* =========================================
   Выделение слов перед двоеточием
   ========================================= */
.highlight-term {
  color: var(--pinco-crimson-bright);
  font-weight: 900;
  text-shadow: 0 0 8px rgba(255, 26, 83, 0.3);
  display: inline-block;
  margin-right: 4px;
}

/* =========================================
   Баннеры
   ========================================= */
.cyber-banner-wrapper { max-width: 1400px; margin: 0 auto 0; width: 98%; }
.banner_inner-new { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.banner-new {
        width: 100%;
    max-width: 1400px;
    margin: 24px 0;
    height: auto;
}

.banner_left-new, .banner_right-new {
  background: linear-gradient(135deg, #ffffff, #fff0f3);
  border: 1px solid rgba(255, 26, 83, 0.4); border-radius: 20px; padding: 36px 32px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 0 30px rgba(255, 26, 83, 0.15), inset 0 0 20px rgba(255, 26, 83, 0.05); 
  position: relative; overflow: visible; 
  transition: all 0.3s; min-height: 250px;
}
.banner_right-new { 
  background: linear-gradient(135deg, #ffffff, #ebfff5); 
  border-color: rgba(0, 210, 106, 0.3);
  box-shadow: 0 0 30px rgba(0, 210, 106, 0.15), inset 0 0 20px rgba(0, 210, 106, 0.05); 
}

.banner_left-new:hover { border-color: var(--pinco-lime-bright); box-shadow: 0 0 40px var(--pinco-lime-glow); }
.banner_righ-newt:hover { border-color: var(--pinco-crimson-bright); box-shadow: 0 0 40px var(--pinco-crimson-glow); }

/* Девушки (Выходят за рамки) */
.banner_left_img, .banner_right_img ,
.banner_left_img-new, .banner_right_img-new {
  position: absolute; bottom: 0; right: 2%; width: 40%; height: 100%;
  background-size: contain; background-repeat: no-repeat; background-position: bottom right;
  z-index: 5; pointer-events: none; filter: drop-shadow(0 10px 15px rgba(0,0,0,0.15));
  transition: transform 0.4s ease;
}


.banner_left-new:hover .banner_left_img-new, .banner_right-new:hover .banner_right_img-new { transform: scale(1.05) translateY(-10px); }

.banner_title-new, .banner_caption_small-new, .banner_caption_gradient-new, .banner_subtext-new, .banner_info-new { position: relative; z-index: 10; max-width: 65%; }

.banner_title-new { font-size: 16px; font-weight: 900; letter-spacing: 3px; color: var(--pinco-crimson-bright); text-transform: uppercase; text-shadow: 0 0 10px var(--pinco-crimson-glow); }
.banner_right-new .banner_title-new { color: var(--pinco-lime-bright); text-shadow: 0 0 10px var(--pinco-lime-glow); }

.banner_caption_small-new {
  font-size: 13px; font-weight: 800; color: var(--text-dark); margin-top: 12px; display: block; text-transform: uppercase; opacity: 0.8;
}

.banner_caption_gradient-new {
  font-size: 34px; font-weight: 900; line-height: 1.2; margin: 4px 0 16px; display: block;
  background: linear-gradient(135deg, var(--pinco-crimson-bright), #ff99ac);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(255, 26, 83, 0.2);
}
.banner_right-new .banner_caption_gradient-new {
  background: linear-gradient(135deg, var(--pinco-lime-bright), #00b09b);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(0, 210, 106, 0.2);
}

.banner_subtext-new { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 24px; display: block; }
.banner_left-new .btn-banner {
  background: var(--pinco-crimson-bright); color: #fff; font-weight: 800; padding: 14px 28px;
  border-radius: 10px; border: none; cursor: pointer; box-shadow: 0 0 20px var(--pinco-crimson-glow);
  text-transform: uppercase; font-size: 14px; letter-spacing: 1px; transition: 0.3s;
}

.btn-banner, .bannerCasino {
  background: var(--pinco-crimson-bright); color: #fff; font-weight: 800; padding: 14px 28px;
  border-radius: 10px; border: none; cursor: pointer; box-shadow: 0 0 20px var(--pinco-crimson-glow);
  text-transform: uppercase; font-size: 14px; letter-spacing: 1px; transition: 0.3s;
}
.btn-banner:hover { transform: scale(1.05); background: var(--pinco-lime-bright); box-shadow: 0 0 30px var(--pinco-lime-glow); color: #111; }

.bannerCasino { background: var(--pinco-lime-bright); box-shadow: 0 0 20px var(--pinco-lime-glow); color: #111; }
.bannerCasino:hover { background: var(--pinco-crimson-bright); box-shadow: 0 0 30px var(--pinco-crimson-glow); color: #fff; transform: scale(1.05); }

/* =========================================
   Основной контент 
   ========================================= */
.content { max-width: 1400px; margin: 0 auto; padding: 30px 24px; width: 100%; }

.textBlockNew {
  background: var(--pinco-bg-card); border: 1px solid rgba(255, 26, 83, 0.3);
  border-radius: 20px; padding: 36px; margin-bottom: 30px;
  box-shadow: 0 0 25px rgba(255, 26, 83, 0.1), inset 0 0 10px rgba(255, 26, 83, 0.05); 
  position: relative; overflow: hidden;
  transition: all 0.3s;
}
.textBlock:hover {
  box-shadow: 0 0 35px rgba(0, 210, 106, 0.2), inset 0 0 15px rgba(0, 210, 106, 0.1); 
  border-color: var(--pinco-lime-bright);
}
.textBlockNew::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--pinco-crimson-bright), var(--pinco-lime-bright));
  box-shadow: 0 0 15px var(--pinco-crimson-glow);
}

h1.general-h1.new { font-size: 38px; font-weight: 900; margin-bottom: 24px; color: var(--text-dark); text-transform: uppercase; letter-spacing: 1px; }

h2.general-h2.new { font-size: 28px; font-weight: 800; margin-bottom: 24px; color: var(--text-dark); display: inline-block; position: relative; padding-left: 20px; border-left: none; }
h2.general-h2.new::before {
  content: ''; position: absolute; left: 0; top: 10%; height: 80%; width: 6px;
  background: var(--pinco-crimson-bright); border-radius: 4px; box-shadow: 0 0 10px var(--pinco-crimson-glow);
}

.general-h3.new { font-size: 22px; font-weight: 700; margin: 28px 0 16px; color: var(--text-dark); }
.general-p { color: var(--text-muted); margin-bottom: 20px; font-size: 16px; line-height: 1.8; position: relative; z-index: 2; }

.general-image { border-radius: 16px; border: 1px solid var(--pinco-crimson-glow); margin: 24px auto; box-shadow: 0 0 25px rgba(255, 26, 83, 0.15); }
figure.horizontal { display: flex; justify-content: center; width: 100%; margin: 0; }

/* =========================================
   Содержание
   ========================================= */
.toc.wrapper-new {
  background: #fff; border: 1px dashed rgba(255, 26, 83, 0.4); border-radius: 16px; margin-bottom: 30px;
  box-shadow: 0 0 20px rgba(255, 26, 83, 0.1); transition: all 0.3s;
}
.toc.wrapper-new:hover { border-color: var(--pinco-lime-bright); box-shadow: 0 0 30px var(--pinco-lime-glow); }

.toc summary {
  padding: 20px 24px; font-size: 18px; font-weight: 900; color: var(--pinco-crimson-bright); cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center; text-transform: uppercase; letter-spacing: 1px;
  text-shadow: 0 0 8px var(--pinco-crimson-glow);
}
.toc summary::-webkit-details-marker { display: none; }
.toc summary::after { content: '▼'; color: var(--pinco-crimson-bright); font-size: 16px; transition: transform 0.3s; }
.toc[open] summary::after { transform: rotate(180deg); color: var(--pinco-lime-bright); }

.toc .toc-list {
  padding: 0 24px 24px; list-style: none;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px;
  align-items: stretch; 
}
.toc .toc-list li { display: block; height: 100%; }
.toc .toc-list li a {
  height: 100%; display: flex; align-items: center; justify-content: flex-start;
  padding: 12px 20px; background: #fff0f3; border: 1px solid rgba(255, 26, 83, 0.15); border-radius: 8px;
  font-size: 14px; font-weight: 700; color: var(--text-dark); transition: all 0.2s;
}
.toc  .toc-list li a:hover {
  background: #fff; border-color: var(--pinco-lime-bright);
  box-shadow: 0 0 15px var(--pinco-lime-glow); color: var(--pinco-lime-bright);
}

/* =========================================
   Таблицы (Горизонтальный скролл)
   ========================================= */
.general-table-new-wrapper { 
  width: 100%;
  overflow-x: auto; 
  -webkit-overflow-scrolling: touch;
  margin: 28px 0; 
  padding-bottom: 12px;
  overflow: scroll;
}
.general-table-new { 
  width: 100%; min-width: 650px; 
  border-collapse: separate; border-spacing: 0 12px; text-align: left; table-layout: auto; 
}

.general-tr-new { background: rgba(255, 26, 83, 0.03); box-shadow: 0 0 10px rgba(255, 26, 83, 0.05); transition: transform 0.3s, box-shadow 0.3s; }
.general-tr-new:nth-child(even) { background: #fff; border: 1px solid rgba(255, 26, 83, 0.1); }
.general-tr-new:hover { transform: translateY(-2px); box-shadow: 0 0 20px rgba(0, 210, 106, 0.2); }

.general-td-new { padding: 16px; color: var(--text-dark); font-size: 14px; border-style: solid none; border-width: 1px; border-color: rgba(255, 26, 83, 0.15); }
.general-td-new:first-child { border-left-style: solid; border-radius: 12px 0 0 12px; font-weight: 700; }
.general-td-new:last-child { border-right-style: solid; border-radius: 0 12px 12px 0; }

/* =========================================
   Списки & Отзывы
   ========================================= */
.general-ul-new { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; list-style: none; padding: 0; margin: 24px 0; }
.general-ul-new li {
  background: #fff; border: 1px solid rgba(255, 26, 83, 0.2); border-top: 4px solid var(--pinco-lime-bright);
  padding: 24px; border-radius: 12px; color: var(--text-dark); font-size: 15px; line-height: 1.6;
  transition: all 0.3s; box-shadow: 0 0 15px rgba(255, 26, 83, 0.05);
}
.general-ul-new li:hover { border-color: var(--pinco-lime-bright); box-shadow: 0 0 25px var(--pinco-lime-glow); transform: translateY(-5px); }

.general-ol-new { list-style: none; counter-reset: steps; display: flex; flex-direction: column; gap: 16px; padding: 0; margin: 24px 0; }
.general-ol-new li {
  counter-increment: steps; display: flex; align-items: center;
  background: #fff0f3; padding: 16px 24px; border-radius: 16px;
  border: 1px solid rgba(255, 26, 83, 0.15); border-left: 4px solid var(--pinco-crimson-bright);
  color: var(--text-dark); font-weight: 500; transition: transform 0.3s;
  box-shadow: 0 0 15px rgba(255, 26, 83, 0.05);
}
.general-ol-new li:hover { transform: translateX(10px); background: #fff; border-color: var(--pinco-lime-bright); border-left-color: var(--pinco-lime-bright); box-shadow: 0 0 25px var(--pinco-lime-glow); }
.general-ol-new li::before {
  content: "0" counter(steps); font-size: 32px; font-weight: 900; color: var(--pinco-crimson-bright);
  margin-right: 24px; line-height: 1; opacity: 0.8; text-shadow: 0 0 10px var(--pinco-crimson-glow);
}

/* Выделение автора в отзывах */
.review-author {
  display: inline-block;
  background: rgba(255, 26, 83, 0.1);
  color: var(--pinco-crimson-bright);
  padding: 6px 12px; border-radius: 8px; font-weight: 900; margin-bottom: 12px;
  border: 1px solid rgba(255, 26, 83, 0.3); font-size: 14px;
  text-shadow: 0 0 8px var(--pinco-crimson-glow);
}
.review-text { display: block; font-style: italic; }

/* =========================================
   Слоты (1 ряд)
   ========================================= */
.slots-new {
  background: #fff; border: 1px solid rgba(255, 26, 83, 0.2); border-radius: 20px;
  padding: 10px; margin: 0; box-shadow: 0 0 25px rgba(255, 26, 83, 0.1);
}

.slots_list-new {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  -webkit-overflow-scrolling: touch;
}

.slots_item-new {
  flex: 1 1 0; 
  min-width: 140px; 
  background: #fff0f3; border: 1px solid rgba(255, 26, 83, 0.15); border-radius: 12px; padding: 16px 8px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  min-height: 120px; position: relative; transition: all 0.3s; overflow: hidden;
}
.slots_item-new:hover {
  background: #fff; border-color: var(--pinco-lime-bright);
  box-shadow: 0 0 20px var(--pinco-lime-glow); transform: translateY(-5px);
}
.slots_item-new .name-new { font-size: 13px; font-weight: 900; color: var(--text-dark); margin-bottom: 16px; text-transform: uppercase; }
.slots_item-new .button_inner-new {
  display: flex; align-items: center; gap: 6px; background: var(--pinco-crimson-bright); padding: 8px 12px; border-radius: 8px;
  color: #fff; font-size: 12px; font-weight: 900; text-transform: uppercase; box-shadow: 0 0 10px var(--pinco-crimson-glow);
}
.slots_item-new:hover .button_inner-new { background: var(--pinco-lime-bright); box-shadow: 0 0 10px var(--pinco-lime-glow); color: #111; }
.slots_item-new button { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; z-index: 5; }
.button-new {
        display: flex;
    justify-content: center;
    align-items: center;
}
/* =========================================
   Игры (Разделы)
   ========================================= */
.units { margin: 40px 0; }
.units_list { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }

.units_item {
  background: #fff; border: 1px solid rgba(255, 26, 83, 0.2); border-radius: 16px; padding: 24px;
  display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; position: relative;
  transition: all 0.3s; box-shadow: 0 0 20px rgba(255, 26, 83, 0.05);
}
.units_item:hover { border-color: var(--pinco-lime-bright); box-shadow: 0 0 30px var(--pinco-lime-glow); transform: scale(1.05); }
.units_item_img img { width: 64px; height: 64px; object-fit: contain; transition: transform 0.3s; }
.units_item:hover .units_item_img img { transform: scale(1.1); filter: drop-shadow(0 0 15px var(--pinco-lime-glow)); }
.units_item span { font-size: 15px; font-weight: 900; color: var(--text-dark); text-transform: uppercase; }
.units_item button { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }

/* =========================================
   FAQ
   ========================================= */
.faq-container-new { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.faq-item-new { background: #fff0f3; border: 1px solid rgba(255, 26, 83, 0.2); border-radius: 12px; padding: 24px; transition: all 0.3s ease; box-shadow: 0 0 15px rgba(255, 26, 83, 0.05); }
.faq-item-new:hover { background: #fff; border-color: var(--pinco-lime-bright); box-shadow: 0 0 25px var(--pinco-lime-glow); }
.faq-item-new summary { cursor: pointer; list-style: none; position: relative; padding-right: 50px; }
.faq-item-new summary::-webkit-details-marker { display: none; }
.faq-item-new summary::after {
  content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; background: #fff;
  border: 1px solid rgba(255, 26, 83, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 300; color: var(--pinco-crimson-bright); line-height: 1; transition: all 0.4s ease; box-shadow: 0 0 10px rgba(255, 26, 83, 0.1);
}
.faq-item-new[open] { background: #fff; border-color: var(--pinco-lime-bright); box-shadow: 0 0 25px var(--pinco-lime-glow); }
.faq-item-new[open] summary::after { transform: translateY(-50%) rotate(45deg); color: #111; background: var(--pinco-lime-bright); border-color: var(--pinco-lime-bright); box-shadow: 0 0 10px var(--pinco-lime-glow); }
.faq-question { font-size: 18px; font-weight: 800; color: var(--text-dark); display: inline-block; margin: 0; }
.faq-answer { margin-top: 20px; color: var(--text-muted); font-size: 16px; line-height: 1.8; border-top: 1px dashed rgba(255, 26, 83, 0.3); padding-top: 20px; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================
   Футер
   ========================================= */
.footer-new { background: #ffffff; border-top: 1px solid rgba(255, 26, 83, 0.2); padding: 60px 24px 40px; margin-top: 50px; box-shadow: 0 -10px 30px rgba(255, 26, 83, 0.05); }
.footerInner-new { max-width: 1400px; margin: 0 auto; }

.footer-middle-new .menu-new { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 40px; }
.footer-middle-new ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-middle-new a { color: var(--text-muted); font-size: 14px; font-weight: 600; transition: all 0.3s; }
.footer-middle-new a:hover { color: var(--pinco-lime-bright); padding-left: 8px; text-shadow: 0 0 8px var(--pinco-lime-glow); }
.divider-new { height: 1px; background: rgba(255, 26, 83, 0.1); margin: 30px 0; }
.footer-text-new p { font-size: 13px; color: #888; line-height: 1.7; }
.copyright { display: block; margin-top: 30px; text-align: center; font-size: 14px; color: #a0aec0; font-weight: 700; }
.scrollTop { display: none; }

/* =========================================
   Нижняя плашка кнопок (ТОЛЬКО НА МОБИЛКАХ)
   ========================================= */
.footer-block-btn-new { display: none; }

/* =========================================
   Полная мобильная адаптация
   ========================================= */
@media (max-width: 992px) {
  .banner_inner-new { grid-template-columns: 1fr;overflow: hidden; }
  .banner_left_img-new, .banner_right_img-new { width: 50%;} 
  
  /* Прячем все кроме лого и бургера в шапке */
  .header-caption, .header-actions, .menu, .downloadApk { display: none;}
  
  /* Логотип слева, бургер прижат к правому краю */
  .header-left-group { width: 100%; display: flex; justify-content: space-between; align-items: center; }
  .burger-trigger { margin-left: auto; margin-right: 0; }
  
  /* Активируем нижнюю плашку */
  .footer-block-btn-new {
    display: block; position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 26, 83, 0.2); padding: 12px 16px; z-index: 1000;
    box-shadow: 0 -5px 25px rgba(255, 26, 83, 0.1);
  }
  .footer-block-btn-new .buttons-new { display: flex; gap: 12px; max-width: 600px; margin: 0 auto; }
  .footer-block-btn-new button { flex: 1; padding: 16px; font-size: 15px; }
  
  /* Отступ для контента */
  body { padding-bottom: 70px; }
}

@media (max-width: 600px) {
  .cyber-header { padding: 12px 16px; }
  
  .content, .cyber-banner-wrapper { padding: 12px 0; }
  .textBlockNew { padding: 20px 16px; border-radius: 16px;width: 98%;
        margin: 0 auto 20px auto; }
  h1.general-h1.new { font-size: 24px; margin-bottom: 16px; }
  h2.general-h2.new { font-size: 20px; margin-bottom: 16px; }
  h3.general-h3.new { font-size: 18px; margin: 20px 0 12px; }
  .general-p { font-size: 14px; margin-bottom: 16px; }
  .banner-new {
    margin: 0;
  }
  .banner_inner-new {gap: 10px;}
  .banner_left-new, .banner_right-new { padding: 18px 16px; min-height: 180px;}
  .banner_caption_gradient-new { font-size: 26px; }
  .banner_caption_small-new { font-size: 12px; }
  .banner_title-new { font-size: 14px; }
  .banner_subtext-new { font-size: 14px; margin-bottom: 16px; }
  
  .slots-new { padding: 20px 16px; border-radius: 16px; }
  
  .general-table-wrapper-new { margin: 20px 0; }
  
  .general-ul-new { grid-template-columns: 1fr; gap: 12px; margin: 16px 0; }
  .general-ul-new li { padding: 16px; font-size: 14px; }
  .general-ol-new li { padding: 12px 16px; font-size: 14px; }
  .general-ol-new li::before { font-size: 24px; margin-right: 16px; }
  
  .faq-item-new { padding: 16px; border-radius: 12px; }
  .faq-question { font-size: 16px; }
  .faq-answer { font-size: 14px; padding-top: 16px; margin-top: 16px; }
  .faq-item-new summary { padding-right: 40px; }
  .faq-item-new summary::after { width: 28px; height: 28px; font-size: 20px; }

  .footer-new { padding: 40px 16px 30px; }

  /* Адаптация футера для мобилки: Все списки ссылок собираются в ЕДИНЫЙ вертикальный столбик */
  .footer-middle-new .menu-new { 
    display: flex; 
    flex-direction: column; 
    gap: 14px; 
    margin-bottom: 30px; 
  }
  .footer-middle-new .menu-new ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 400px) {
   .banner_left_img-new, .banner_right_img-new {         
    width: 60%;
        right: -7%;} 

        .banner_right-new .banner_caption_gradient-new {
               margin: 4px 0 10px;
        }
        html body .banner_info-new .bannerCasino {
            width: auto;
        padding: 12px 24px;
        height: 44px;
        font-size: 13px;
        }
    }
