/* ---------- ГЛАССМОРФИЗМ И ТЕМНЫЕ ТОНА ---------- */
:root {
  --glass-bg: rgba(20, 25, 30, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --accent-orange: #f39c12;
  --accent-yellow: #f1c40f;
  --text-light: #f0f0f0;
  --text-muted-glass: #b0b5bc;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-image: url('https://i.imgur.com/jhZESEW.jpeg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 0;
  pointer-events: none;
}

.navbar, main, footer {
  position: relative;
  z-index: 10;
}

/* ---------- СТЕКЛЯННЫЕ КОМПОНЕНТЫ ---------- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
}

.navbar.glass {
  border-radius: 0;
}

.card.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  color: var(--text-light);
  transition: all 0.25s ease;
  box-shadow: var(--glass-shadow);
}

.card.glass-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-orange);
  box-shadow: 0 15px 35px rgba(243, 156, 18, 0.3);
}

.card-header.glass-header {
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--glass-border);
  font-weight: 600;
  border-radius: 24px 24px 0 0 !important;
}

/* ---------- НАВИГАЦИЯ ---------- */
.navbar-nav .nav-link {
  color: #ddd;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 40px;
  transition: 0.2s;
}

.navbar-nav .nav-link:hover {
  background: rgba(243, 156, 18, 0.2);
  color: #fff;
}

.navbar-nav .nav-link.active {
  background: var(--accent-orange);
  color: #000;
}

/* ---------- КНОПКИ ---------- */
.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 40px;
  padding: 0.5rem 1.8rem;
  transition: 0.2s;
}

.btn-glass:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: black;
  transform: scale(1.02);
}

.btn-glass-orange {
  background: rgba(243, 156, 18, 0.3);
  border-color: var(--accent-orange);
  color: white;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-glass-orange:hover {
  background: var(--accent-orange);
  color: black;
}

/* ---------- ЕДИНАЯ ВЫСОТА КНОПОК КОРЗИНЫ И ПРОФИЛЯ ---------- */
.navbar .btn-glass-orange,
.navbar .user-dropdown .dropdown-toggle,
.navbar .user-dropdown > a { /* на случай ссылки "Войти" */
  min-height: 46px;
  padding: 0.6rem 1.5rem;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- ЦЕНЫ (ОБЩИЕ) ---------- */
.price-tag {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-yellow);
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* ---------- КАРТОЧКИ ТОВАРОВ (ДЛЯ КАТАЛОГА) ---------- */
.product-card .card-img-top {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.product-card .card-body {
  padding: 1rem;
}

.product-card .card-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.product-card .btn {
  padding: 0.4rem 1rem;
  font-size: 1rem;
}

.product-card .price-tag {
  font-size: 1.4rem;
}

/* ---------- СТРАНИЦА ТОВАРА (ДЕТАЛЬНАЯ) ---------- */
.product-image-wrapper {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  border: 2px solid var(--glass-border);
  margin-bottom: 2rem;
}

.product-image {
  width: 100%;
  height: auto;
  display: block;
}

.product-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ccc;
}

.product-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.support-block {
  background: rgba(30, 35, 40, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.support-block a {
  color: var(--accent-orange);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dotted var(--accent-orange);
}

.support-block a:hover {
  color: var(--accent-yellow);
}

/* ---------- СТАТИЧЕСКИЕ СТРАНИЦЫ (ОПИСАНИЯ, ПРАВИЛА) ---------- */
.content-page {
  background: rgba(20, 25, 30, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 2.5rem;
  margin-top: 1rem;
  box-shadow: var(--glass-shadow);
}

.content-page h2 {
  color: var(--accent-yellow);
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-page h3 {
  color: var(--accent-orange);
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.content-page p,
.content-page li {
  color: #ddd;
  line-height: 1.7;
  font-size: 1.05rem;
}

.content-page ul,
.content-page ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.content-page li {
  margin-bottom: 0.3rem;
}

.content-page hr {
  border-top: 1px dashed #444;
  opacity: 0.6;
}

/* ---------- ТАБЫ ПОДСЕРВЕРОВ ---------- */
.server-tabs {
  margin-bottom: 2rem;
  text-align: center;
}

.server-tabs .nav {
  justify-content: center;
}

.server-tabs .nav-link {
  background: rgba(30, 35, 40, 0.8);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: #f0f0f0;
  border-radius: 60px;
  margin: 0 0.5rem 0.5rem;
  padding: 0.8rem 2.2rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: 0.2s;
}

.server-tabs .nav-link:hover {
  background: rgba(243, 156, 18, 0.3);
  border-color: var(--accent-orange);
  transform: translateY(-2px);
}

.server-tabs .nav-link.active {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #000;
  box-shadow: 0 0 20px rgba(243, 156, 18, 0.5);
}

.server-tabs .nav-link i {
  font-size: 1.4rem;
  margin-right: 8px;
}

/* ---------- ТАБЫ КАТЕГОРИЙ (ВНУТРИ ПОДСЕРВЕРА) ---------- */
.category-tabs .nav-link {
  background: rgba(30, 35, 40, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ddd;
  border-radius: 40px;
  margin-right: 0.8rem;
  padding: 0.6rem 1.8rem;
  font-size: 1rem;
}

.category-tabs .nav-link:hover {
  background: rgba(243, 156, 18, 0.2);
  border-color: var(--accent-orange);
}

.category-tabs .nav-link.active {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #000;
  font-weight: 600;
}

/* ---------- АККОРДЕОН ---------- */
.accordion-item {
  background: transparent;
  border: none;
  margin-bottom: 1rem;
}

.accordion-button {
  background: rgba(30, 35, 40, 0.6);
  backdrop-filter: blur(8px);
  color: var(--text-light);
  border-radius: 20px !important;
  border: 1px solid rgba(255,255,255,0.1);
  font-weight: 500;
  padding: 1.2rem 1.8rem;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: none !important;
  outline: 0 !important;
  border-color: rgba(255,255,255,0.1);
}

.accordion-button:not(.collapsed) {
  background: rgba(243, 156, 18, 0.2);
  color: var(--accent-yellow);
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-color: rgba(255,255,255,0.1);
}

.accordion-button::after {
  filter: invert(1) brightness(2);
}

.accordion-body {
  background: rgba(10, 15, 20, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 0 0 20px 20px;
  border: 1px solid rgba(255,255,255,0.05);
  border-top: none;
  color: #ccc;
  padding: 1.5rem 2rem;
}

/* ---------- КАРУСЕЛЬ (ПРОМО) ---------- */
.carousel.glass {
  overflow: hidden;
  padding: 1.5rem;
  height: 100%;
}

.carousel-item .promo-banner {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  border-radius: 30px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
  text-align: center;
  height: 100%;
}

.promo-banner h5 {
  font-size: 1.2rem;
}

/* ---------- ВИДЖЕТ ПОСЛЕДНИХ ПОКУПОК ---------- */
.purchase-widget {
  background: rgba(20, 25, 30, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 30px;
  padding: 1.5rem;
  border: 1px solid var(--glass-border);
  height: 100%;
  overflow-y: auto;
  max-height: 350px;
}

.purchase-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.purchase-item:last-child {
  border-bottom: none;
}

.purchase-avatar {
  width: 40px;
  height: 40px;
  background: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
}

.purchase-info {
  flex: 1;
}

.purchase-info .player {
  font-weight: 600;
  color: white;
}

.purchase-info .item {
  font-size: 0.9rem;
  color: var(--text-muted-glass);
}

.purchase-time {
  font-size: 0.8rem;
  color: var(--accent-yellow);
}

/* ---------- АДАПТАЦИЯ ДЛЯ МОБИЛЬНЫХ ---------- */
@media (max-width: 768px) {
  /* Центрирование логотипа и элементов навбара */
  .navbar .container {
    flex-direction: column;
    align-items: center;
  }

  .navbar-brand {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.5rem;
  }

  .navbar .d-flex.align-items-center {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .navbar-nav {
    justify-content: center !important;
    margin: 0 !important;
  }

  .navbar-nav .nav-item {
    margin: 0 0.25rem 0.25rem !important;
  }

  .navbar .btn-glass-orange,
  .navbar .user-dropdown .dropdown-toggle,
  .navbar .user-dropdown > a {
    margin: 0 !important;
  }

  /* Остальные адаптивные стили (были ранее) */
  .product-title {
    font-size: 1.8rem;
  }
  .product-description {
    font-size: 1rem;
  }

  .product-card .card-img-top {
    height: 140px;
  }

  .price-tag,
  .product-card .price-tag {
    font-size: 1.2rem;
  }

  .server-tabs .nav-link {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    margin: 0 0.2rem 0.5rem;
  }

  .category-tabs .nav-link {
    padding: 0.4rem 1.2rem;
    font-size: 0.9rem;
    margin-right: 0.4rem;
  }

  .content-page {
    padding: 1.5rem;
  }
  .content-page h2 {
    font-size: 1.5rem;
  }
  .content-page h3 {
    font-size: 1.2rem;
  }
}

/* ---------- ФУТЕР ---------- */
.footer-designer.dark {
  background-color: #1b1a1a;
  color: #e0e0e0;
  font-size: 0.9rem;
  padding: 25px 0 15px;
  border-top: 1px solid #333;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  margin-top: 4rem;
  z-index: 10;
  position: relative;
}
.footer-designer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.top-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.top-line .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #555, #888, #555, transparent);
  margin-right: 20px;
}
.payment-logos {
  display: flex;
  gap: 10px 15px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.pay-logo {
  height: 20px;
  width: auto;
  opacity: 0.7;
  transition: all 0.2s ease;
  filter: brightness(0.9);
}
.pay-logo:hover {
  opacity: 1;
  transform: scale(1.1);
  filter: brightness(1.2);
}
.main-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1.3fr;
  gap: 30px;
  margin-bottom: 25px;
}
.col-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
  margin-bottom: 12px;
  font-weight: 400;
  border-bottom: 1px dashed #444;
  padding-bottom: 5px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.contact-icon {
  font-size: 1.1rem;
  opacity: 0.7;
  width: 20px;
  text-align: center;
}
.contact-item a {
  color: #ccc;
  text-decoration: none;
  border-bottom: 1px dotted #555;
  transition: color 0.2s, border-color 0.2s;
}
.contact-item a:hover {
  color: #fff;
  border-bottom-color: #fff;
}
.legal-info p {
  margin: 0 0 8px 0;
  line-height: 1.4;
  color: #bbb;
  font-size: 0.85rem;
}
.disclaimer p {
  margin: 0;
  color: #999;
  font-size: 0.8rem;
  line-height: 1.4;
}
.disclaimer a {
  color: #aaa;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: #555;
}
.disclaimer a:hover {
  color: #fff;
  text-decoration-color: #fff;
}
.docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 15px;
}
.docs-grid a {
  color: #ccc;
  text-decoration: none;
  border-bottom: 1px dotted #555;
  transition: color 0.2s, border-color 0.2s;
  font-size: 0.85rem;
  white-space: nowrap;
}
.docs-grid a:hover {
  color: #fff;
  border-bottom-color: #fff;
}
.bottom-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #333;
  font-size: 0.8rem;
  color: #aaa;
}
.bottom-row a {
  color: #bbb;
  text-decoration: none;
  border-bottom: 1px dotted #555;
}
.bottom-row a:hover {
  color: #fff;
  border-bottom-color: #fff;
}
.design-credits a {
  margin: 0 2px;
}
@media (max-width: 900px) {
  .main-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .top-line {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .top-line .line {
    display: none;
  }
  .payment-logos {
    justify-content: center;
  }
  .col-title {
    text-align: center;
  }
  .contact-item {
    justify-content: center;
  }
  .legal-info p, .disclaimer p {
    text-align: center;
  }
  .docs-grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
  }
  .bottom-row {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .docs-grid {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .docs-grid a {
    white-space: normal;
    display: inline-block;
  }
  .payment-logos {
    gap: 8px;
  }
  .pay-logo {
    height: 18px;
  }
}
.link-orange {
  color: var(--accent-orange);
  text-decoration: none;
  border-bottom: 1px dotted transparent;
  transition: color 0.2s, border-bottom-color 0.2s;
}
.link-orange:hover {
  color: var(--accent-yellow);
  border-bottom-color: var(--accent-yellow);
}
.user-dropdown .dropdown-menu {
  background: var(--glass-bg, rgba(20,25,30,0.7));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: var(--glass-shadow, 0 8px 32px rgba(0,0,0,0.3));
}
.user-dropdown .dropdown-item:hover {
  background: rgba(243, 156, 18, 0.2);
  color: #fff !important;
}
.user-dropdown .dropdown-toggle::after {
  display: none;
}
.navbar {
  z-index: 1030 !important;
}

/* === МОДАЛЬНОЕ ОКНО КОРЗИНЫ (ТЁМНАЯ СТЕКЛЯННАЯ ТЕМА) === */
.modal-content {
  background: var(--glass-bg, rgba(20, 25, 30, 0.7));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.1));
  border-radius: 30px;
  color: var(--text-light, #f0f0f0);
  box-shadow: var(--glass-shadow, 0 8px 32px rgba(0, 0, 0, 0.3));
}
.modal-header {
  border-bottom: 1px solid var(--glass-border, rgba(255, 255, 255, 0.1));
  padding: 1.5rem 1.5rem 1rem 1.5rem;
}
.modal-header .modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-yellow, #f1c40f);
}
.modal-header .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: 0.8;
  transition: opacity 0.2s;
}
.modal-header .btn-close:hover {
  opacity: 1;
  filter: invert(1) grayscale(0%) brightness(200%) drop-shadow(0 0 2px var(--accent-orange));
}
.modal-body {
  padding: 1.5rem;
  max-height: 60vh;
  overflow-y: auto;
}
.modal-body::-webkit-scrollbar {
  width: 6px;
}
.modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}
.modal-body::-webkit-scrollbar-thumb {
  background: var(--accent-orange, #f39c12);
  border-radius: 10px;
}
.modal-body::-webkit-scrollbar-thumb:hover {
  background: var(--accent-yellow, #f1c40f);
}
.modal-footer {
  border-top: 1px solid var(--glass-border, rgba(255, 255, 255, 0.1));
  padding: 1rem 1.5rem 1.5rem 1.5rem;
}
.modal-footer .btn {
  border-radius: 40px;
  padding: 0.6rem 1.8rem;
  font-weight: 500;
  transition: 0.2s;
}
.modal-footer .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}
.modal-footer .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.02);
}
.modal-footer .btn-primary {
  background: rgba(243, 156, 18, 0.3);
  border: 1px solid var(--accent-orange, #f39c12);
  color: white;
}
.modal-footer .btn-primary:hover {
  background: var(--accent-orange, #f39c12);
  border-color: var(--accent-orange, #f39c12);
  color: black;
  transform: scale(1.02);
}
.modal.fade .modal-dialog {
  transform: scale(0.95);
  transition: transform 0.2s ease-out;
}
.modal.show .modal-dialog {
  transform: scale(1);
}
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.7);
}

.content-page img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px; /* опционально, для единого стиля с остальными элементами */
}

    /* Hero section с картинкой */
    .hero-lp {
      position: relative;
      padding: 2rem 0 3rem;
      border-radius: 40px;
      margin-bottom: 2rem;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
      border-radius: 40px;
      filter: brightness(0.3);
    }
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
      z-index: -1;
      border-radius: 40px;
    }
    .hero-title {
      font-size: 3.2rem;
      font-weight: 800;
      background: linear-gradient(135deg, #fff, #f39c12);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    .hero-subtitle {
      font-size: 1.3rem;
      color: #ddd;
      max-width: 600px;
      margin: 1rem auto;
    }
    .btn-glass-lp {
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.2);
      color: white;
      transition: 0.3s;
    }
    .btn-glass-lp:hover {
      background: #f39c12;
      border-color: #f39c12;
      color: #000;
      transform: translateY(-3px);
    }
    .copy-ip {
      cursor: pointer;
      font-weight: bold;
      border-bottom: 2px dashed #f39c12;
    }
    /* Плавающие карточки как в референсе */
    .hero-image-showcase {
      position: relative;
      max-width: 500px;
      margin: 0 auto;
    }
    .image-wrapper {
      position: relative;
      display: inline-block;
    }
    .image-wrapper img {
      border-radius: 28px;
      box-shadow: 0 20px 35px -10px rgba(0,0,0,0.5);
      max-width: 100%;
      height: auto;
    }
    .floating-card {
      position: absolute;
      background: rgba(0,0,0,0.7);
      backdrop-filter: blur(12px);
      border-radius: 20px;
      padding: 0.6rem 1.2rem;
      display: flex;
      align-items: center;
      gap: 12px;
      border: 1px solid rgba(255,255,255,0.2);
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
      white-space: nowrap;
    }
    .card-1 {
      top: 10%;
      left: -10%;
    }
    .card-2 {
      bottom: 10%;
      right: -10%;
    }
    .floating-card .card-icon {
      font-size: 2rem;
      color: #f39c12;
    }
    .floating-card .card-info h4 {
      margin: 0;
      font-size: 1.4rem;
      font-weight: bold;
      color: #fff;
    }
    .floating-card .card-info p {
      margin: 0;
      font-size: 0.8rem;
      color: #ccc;
    }
    @media (max-width: 768px) {
      .hero-title { font-size: 2.2rem; }
      .hero-subtitle { font-size: 1rem; }
      .floating-card { padding: 0.4rem 0.8rem; gap: 6px; }
      .floating-card .card-icon { font-size: 1.4rem; }
      .floating-card .card-info h4 { font-size: 1rem; }
      .card-1 { top: 0; left: -5%; }
      .card-2 { bottom: 0; right: -5%; }
    }
    
    /* Вкладки игровых режимов (стиль портала) */
    .features-tabs-section {
      padding: 2rem 0;
    }
    .tabs-wrapper .nav-tabs {
      border: none;
      justify-content: center;
      gap: 0.5rem;
      flex-wrap: wrap;
    }
    .tabs-wrapper .nav-link {
      background: rgba(255,255,255,0.05);
      border: none;
      border-radius: 60px;
      padding: 0.8rem 1.8rem;
      color: #ddd;
      transition: 0.3s;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .tabs-wrapper .nav-link .tab-icon {
      font-size: 1.4rem;
    }
    .tabs-wrapper .nav-link.active {
      background: #f39c12;
      color: #000;
    }
    .tab-pane-content {
      background: rgba(0,0,0,0.3);
      backdrop-filter: blur(8px);
      border-radius: 32px;
      padding: 2rem;
      margin-top: 2rem;
    }
    .feature-grid-lp {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      margin: 1.5rem 0;
    }
    .feature-badge {
      background: rgba(243,156,18,0.2);
      border-radius: 40px;
      padding: 0.4rem 1rem;
      font-size: 0.9rem;
    }
    .stats-row-lp {
      display: flex;
      gap: 1.5rem;
      margin-top: 1.5rem;
    }
    .stat-card {
      background: rgba(0,0,0,0.4);
      border-radius: 20px;
      padding: 0.8rem 1.2rem;
      text-align: center;
    }
    
    /* Новости (карточки) */
    .news-card {
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(8px);
      border-radius: 24px;
      overflow: hidden;
      transition: 0.3s;
      height: 100%;
    }
    .news-card:hover {
      transform: translateY(-8px);
      background: rgba(255,255,255,0.1);
    }
    .news-img {
      height: 180px;
      object-fit: cover;
      width: 100%;
    }
    .news-date {
      font-size: 0.8rem;
      color: #f39c12;
    }
    
    /* Карусель отзывов (на базе Swiper) */
    .testimonials-slider {
      padding: 1rem 0 3rem;
    }
    .testimonial-card {
      background: rgba(0,0,0,0.5);
      backdrop-filter: blur(10px);
      border-radius: 28px;
      padding: 1.8rem;
      margin: 0.5rem;
      height: 100%;
      display: flex;
      flex-direction: column;
      min-height: 365px;
    }
    .testimonial-avatar {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #f39c12;
    }
    .testimonial-text {
      flex-grow: 1;
      max-height: 220px;
      overflow-y: auto;
      padding-right: 8px;
      color: #e0e0e0;
      line-height: 1.5;
    }
    .testimonial-text::-webkit-scrollbar {
      width: 4px;
    }
    .testimonial-text::-webkit-scrollbar-track {
      background: #333;
      border-radius: 4px;
    }
    .testimonial-text::-webkit-scrollbar-thumb {
      background: #f39c12;
    }
    .swiper-button-next, .swiper-button-prev {
      color: #f39c12;
    }
    
    @media (max-width: 768px) {
      .tabs-wrapper .nav-link { padding: 0.5rem 1rem; font-size: 0.9rem; }
      .stats-row-lp { flex-direction: column; align-items: center; }
    }

:root {
  --swiper-navigation-color: yellow;
  --swiper-pagination-color: yellow;
}

.swiper-pagination {
  bottom: 10px !important;
}