@media (min-width: 769px) {
  /* Контейнер пагинации на ПК */
  .pagination {
    display: flex !important;
    justify-content: flex-end; /* Например, прижать к правому краю на ПК */
    gap: 12px;
    margin-top: 50px;
  }
  .page-number,
  .pagination-btn {
    width: 40px !important;
    height: 40px !important;
    background-color: #a30e0e !important;
    border: 1px solid #444 !important;
    border-radius: 0 !important; /* Строгий квадрат */
    margin: 30px auto !important; /* ДОБАВЛЕНО: Центрирует сам блок пагинации по горизонтали */
  }

  /* Активная кнопка - заливка цветом */
  .page-number.active {
    background-color: #dc2626 !important;
    border-color: #dc2626 !important;
  }

  /* Черный блок с точками без зазоров */
  .pagination-dots {
    width: 50px;
    height: 50px;
    background: #ffffff !important;
    color: #000 !important;
    border: none !important;
  }
}

.pagination-dots {
  width: 50px;
  height: 50px;
  background: #ffffff !important;
  color: #000 !important;
  border: none !important;
}

.bg-animation,
.particles {
  position: fixed;
  width: 100%;
  z-index: -1;
  left: 0;
  height: 100%;
  top: 0;
}

.footer-section a:hover,
.logo .elite,
.nav-menu a.active,
.nav-menu a:hover {
  color: #dc2626;
}

.faq-title,
.info-center,
.info-header,
.section-title {
  text-align: center;
}

.footer-links,
.nav-menu {
  list-style: none;
}

.clear-filters,
.info-cta,
.logo,
.model-card,
.nav-menu a,
.sticky-btn {
  text-decoration: none;
}

.checkbox-group,
.faq-answer,
.faq-item,
.info-card,
.model-card,
.model-image,
.service-tag,
.sticky-btn {
  overflow: hidden;
}

.channel-btn svg,
.sticky-btn svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fafafa;
  overflow-x: hidden;
}

.bg-animation {
  background: linear-gradient(45deg, #fff, #f8f9fa, #fff);
  background-size: 400% 400%;
  animation: 15s infinite gradientShift;
}

.nav-menu a::after,
.particle {
  background: #dc2626;
  position: absolute;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.particles {
  pointer-events: none;
}

.particle {
  width: 3px;
  height: 3px;
  opacity: 0.4;
  animation: 25s linear infinite float;
}

.header,
.search-section {
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid rgba(220, 38, 38, 0.3);
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0);
    opacity: 0;
  }

  10%,
  90% {
    opacity: 0.4;
  }

  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.info-section {
  display: flex;
}

.faq-item,
.faq-question,
.faq-section,
.faq-title,
.info-card,
.info-center,
.info-section,
.logo,
.nav-menu a,
.search-box,
.search-section,
.service-tag {
  position: relative;
}

.nav-container {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.checkbox-group,
.search-container {
  display: flex;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
}

.nav-menu a,
.search-btn {
  letter-spacing: 1px;
  transition: 0.3s;
  text-transform: uppercase;
}

.nationality-filters {
  display: flex;
  /* flex-direction: column; */
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.nationality-filters-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 15px;
}
.nat-btn {
  padding: 12px 20px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
  white-space: nowrap;
  background: linear-gradient(45deg, #08422f, #059669);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
  clip-path: polygon(
    0 0,
    calc(100% - 8px) 0,
    100% 8px,
    100% 100%,
    8px 100%,
    0 calc(100% - 8px)
  );
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.nat-btn:hover {
  background: #cb2845;
  border-color: #cb2845;
  color: #fff;
}
.nat-btn.active {
  background: #cb2845;
  border-color: #cb2845;
  color: #fff;
}

@media (max-width: 768px) {
  .nationality-filters {
    flex-direction: column;
  }
}

@media (max-width: 550px) {
  .nat-btn {
    padding: 10px;
  }
  .nationality-filters > .nat-btn {
   padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .nat-btn {
    letter-spacing: -0.5px;
    padding: 10px 6px;
    font-size: 13px;
  }

   .nationality-filters > .nat-btn {
   padding: 12px 20px;
   letter-spacing: 0.5px;
   font-size: 14px;
  }
}

.logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #dc2626, #991b1b);
}

.logo .elite {
  text-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  color: #ccc;
  font-weight: 500;
  font-size: 13px;
}

.nav-menu a::after {
  content: "";
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.3s;
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
  width: 100%;
}

.search-section {
  padding: 10px 0;
}

.search-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  justify-content: center;
}

.search-box {
  max-width: 450px;
}

.search-input {
  width: 100%;
  padding: 8px 60px 8px 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: #333;
  font-size: 13px;
  outline: 0;
  transition: 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.model-card,
.search-btn {
  border: none;
  cursor: pointer;
}

.search-input::placeholder {
  color: #999;
  font-style: italic;
}

.search-input:focus {
  border-color: #dc2626;
  box-shadow: 0 2px 15px rgba(220, 38, 38, 0.2);
  background: #fff;
}

.search-btn {
  position: absolute;
  right: 2px;
  top: 2px;
  bottom: 2px;
  background: linear-gradient(45deg, #dc2626, #991b1b);
  color: #fff;
  padding: 0 15px;
  font-size: 12px;
  font-weight: 600;
}

.search-btn:hover {
  background: linear-gradient(45deg, #991b1b, #7f1d1d);
  box-shadow: 0 2px 10px rgba(220, 38, 38, 0.4);
}

.checkbox-group::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(220, 38, 38, 0.2),
    transparent
  );
  transition: left 0.4s;
}

.channel-btn:hover::before,
.channel-button:hover::before,
.checkbox-group:hover::before,
.service-tag:hover::before,
.sticky-btn:hover::before,
.timed-popup-button:hover::before {
  left: 100%;
}

.checkbox:hover {
  border-color: #dc2626;
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.checkbox-group label,
.checkbox-group span {
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  font-size: 13px;
}

.badge,
.info-header h2,
.section-title {
  font-weight: 700;
  text-transform: uppercase;
}

.filter-select:hover {
  border-color: rgba(220, 38, 38, 0.5);
}

.models-section {
  padding: 40px 20px;
  position: relative;
}
.info-container {
  display: grid;
}

.info-container,
.models-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 28px;
  margin-bottom: 30px;
  margin-top: 30px;
  color: #1a1a1a;
  letter-spacing: 2px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(45deg, #dc2626, #991b1b);
}

.info-card:hover,
.model-card:hover {
  transform: translateY(-5px);
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.model-card {
  background: 0 0;
  position: relative;
  transition: 0.4s;
  border-radius: 8px;
}

.pagination-number.active {
  background-color: #dc2626 !important; /* Красный фон */
  color: white !important; /* Белый текст */
  border-color: #dc2626 !important;
  cursor: default !important; /* Обычный курсор вместо пальца */
  pointer-events: none !important; /* Запрещаем клик */
  font-weight: bold;
}

/* Стили для неактивных стрелок (disabled), если они есть */
.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.model-image {
  width: 100%;
  height: 500px;
  position: relative;
  border-radius: 8px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}

.model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.model-card:hover .model-image img {
  filter: brightness(0.4);
}

.model-badges {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
}
.pagination a,
.pagination span {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 5px;
  border: 3px solid #f54747;
  text-decoration: none;
  color: #fff; /* Белый текст */
  background-color: transparent;
  transition: all 0.3s ease;
  border-radius: 4px;
}

/* КЛАСС ДЛЯ АКТИВНОЙ СТРАНИЦЫ */
.pagination a.active,
.pagination span.active {
  background-color: #dc2626 !important; /* Твой красный цвет */
  border-color: #dc2626 !important;
  color: white !important;
  font-weight: bold;
}

/* Эффект при наведении на обычную кнопку */
.pagination a:hover:not(.active) {
  background-color: rgba(220, 38, 38, 0.2);
  border-color: #dc2626;
}

@media screen and (max-width: 768px) {
  .model-info {
    position: absolute !important;
    bottom: 12px !important;
    left: 0 !important;
    width: 100% !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
    z-index: 10 !important;

    /* Выравниваем в одну строку */
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
  }

  .info-row-pc {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .model-name {
    /* Убираем font-family, чтобы наследовался из body */
    font-family: inherit !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 !important;
    padding: 0 !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8) !important;
    line-height: 1 !important;
  }

  .model-price {
    /* Убираем font-family, чтобы наследовался из body */
    font-family: inherit !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 !important;
    padding: 0 !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8) !important;
    white-space: nowrap !important;
    line-height: 1 !important;
  }
}

/* --- СТИЛИ ДЛЯ ПК (экран от 769px) --- */
@media screen and (min-width: 769px) {
  .model-info {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    /* Увеличиваем градиент, чтобы цена на светлом фоне не терялась */
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.9) 0%,
      transparent 100%
    ) !important;
    padding: 20px 15px 5px 15px !important;
    box-sizing: border-box !important;
    z-index: 10 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
  }

  .info-row-pc {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    width: 100% !important;
    /* ДОБАВЛЕНО: небольшой отступ между именем и ценой, чтобы не слипались */
    gap: 20px !important;
  }

  .model-name {
    font-family: inherit !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 !important;
    padding-bottom: 2px !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
    text-transform: uppercase !important;
    /* ДОБАВЛЕНО: если имя слишком длинное, оно не налезет на цену */
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    flex-shrink: 1 !important;
  }

  .model-price {
    font-family: inherit !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 !important;
    /* ИСПРАВЛЕНО: добавляем отступ справа, чтобы цена не прилипала к краю карточки */
    padding: 0 5px 2px 0 !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    text-align: right !important;
    /* ДОБАВЛЕНО: акцент на цену цветом, если нужно (например, красный как в пагинации) */
    /* color: #dc2626 !important; */
  }
}
.model-description {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
  max-width: 90%;
}

.model-card:hover .model-description {
  opacity: 1;
}

.badge {
  padding: 6px 12px;
  font-size: 10px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  clip-path: polygon(
    0 0,
    calc(100% - 8px) 0,
    100% 8px,
    100% 100%,
    8px 100%,
    0 calc(100% - 8px)
  );
}

.filters-section,
.sticky-btn,
.timed-popup-container {
  backdrop-filter: blur(20px);
}
.timed-popup-container {
  overflow: hidden;
}

.info-header h2,
.model-name {
  font-size: 20px;
  letter-spacing: 1px;
}

.badge.vip {
  background: linear-gradient(45deg, #ff6b00, #ff8500);
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

.badge.verified {
  background: linear-gradient(45deg, #10b981, #059669);
  color: #fff;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.badge.video {
  background: linear-gradient(45deg, #dc2626, #991b1b);
  color: #fff;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

.badge.online,
.sticky-telegram {
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.badge.online {
  background: linear-gradient(45deg, #00c6ff, #0072ff) !important;
  color: #fff !important;
  box-shadow: 0 0 15px rgba(0, 114, 255, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  font-weight: 800 !important;
  letter-spacing: 1px;
  animation: pulseAvailable 2s infinite;
}
@keyframes pulseAvailable {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.badge.online {
  background-color: #0fb900; /* Ярко-зеленый цвет */
  color: #ffffff;
  border: 1px solid #0fb900;
  box-shadow: 0 0 8px rgba(15, 185, 0, 0.4); /* Неоновое свечение */
  order: -1; /* Чтобы эта плашка всегда стояла первой слева */
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.model-name {
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 25px;
  color: #fff;
  text-transform: uppercase;
}

.model-details {
  margin-top: 2px;
  color: #ccc;
  font-size: 14px;
  margin-bottom: 12px;
}

.info-card h3,
.service-tag {
  color: #dc2626;
  text-transform: uppercase;
}

.model-services {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.service-tag {
  background: rgba(220, 38, 38, 0.05);
  padding: 5px 10px;
  font-size: 11px;
  border: 1px solid rgba(220, 38, 38, 0.2);
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.service-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(220, 38, 38, 0.1);
  transition: left 0.3s;
}

.service-tag:hover {
  background: rgba(220, 38, 38, 0.1);
  border-color: #dc2626;
  color: #991b1b;
}

.info-section {
  padding: 40px 20px;
  background: #fff;
}

.info-card,
.info-header {
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
}

.faq-section::before,
.info-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M81.28 88H68.413l19.298 19.298L81.28 88zm2.107 0h13.226L90 107.838 83.387 88zm15.334 0h12.866l-19.298 19.298L98.72 88zm-32.927-2.207L73.586 78h32.827l.5.5 7.294 7.293L115.414 87l-24.707 24.707-.707.707L64.586 87l1.207-1.207zm2.62.207L74 80.414 79.586 86H68.414zm16 0L90 80.414 95.586 86H84.414zm16 0L106 80.414 111.586 86h-11.172zm-8-6h11.173L98 85.586 92.414 80zM82 85.586L87.586 80H76.414L82 85.586zM17.414 0L.707 16.707 0 17.414V0h17.414zM4.28 0L0 12.838V0h4.28zm10.306 0L2.288 12.298 6.388 0h8.198zM180 17.414L162.586 0H180v17.414zM165.414 0l12.298 12.298L173.612 0h-8.198zM180 12.838L175.72 0H180v12.838zM0 163h16.413l.5.5 7.294 7.293L25.414 172l-8 8H0v-17zm0 10h6.613l-2.334 7H0v-7zm14.586 7l7-7H8.72l-2.333 7h8.2zM0 165.414L5.586 171H0v-5.586zM10.414 171L16 165.414 21.586 171H10.414zm-8-6h11.172L8 170.586 2.414 165zM180 163h-16.413l-7.794 7.793-1.207 1.207 8 8H180v-17zm-14.586 17l-7-7h12.865l2.333 7h-8.2zM180 173h-6.613l2.334 7H180v-7zm-21.586-2l5.586-5.586 5.586 5.586h-11.172zM180 165.414L174.414 171H180v-5.586zm-8 5.172l5.586-5.586h-11.172l5.586 5.586zM152.933 25.653l1.414 1.414-33.94 33.942-1.416-1.416 33.943-33.94zm1.414 127.28l-1.414 1.414-33.942-33.94 1.416-1.416 33.94 33.943zm-127.28 1.414l-1.414-1.414 33.94-33.942 1.416 1.416-33.943 33.94zm-1.414-127.28l1.414-1.414 33.942 33.94-1.416 1.416-33.94-33.943zM0 85c2.21 0 4 1.79 4 4s-1.79 4-4 4v-8zm180 0c-2.21 0-4 1.79-4 4s1.79 4 4 4v-8zM94 0c0 2.21-1.79 4-4 4s-4-1.79-4-4h8zm0 180c0-2.21-1.79-4-4-4s-4 1.79-4 4h8z' fill='%23bf8888' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.text-element {
  border-top: 15px solid transparent; /* Это создаст разрыв, который нельзя «сломать» */
  background-clip: padding-box; /* Чтобы фон не залез на границу */
  margin-bottom: 20px;
}

.info-header {
  padding: 15px 25px;
  margin-bottom: 30px;
  gap: 15px;
}

.info-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 15px;
}

.info-card {
  padding: 25px;
  transition: 0.3s;
}

.info-card::before,
.info-cta {
  background: linear-gradient(45deg, #dc2626, #991b1b);
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.info-card:hover {
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.info-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.info-card p {
  color: #ccc;
  line-height: 1.6;
  font-size: 13px;
}

.info-center {
  margin-top: 30px;
  z-index: 1;
}

.info-center p {
  color: #333 !important;
  font-weight: 500;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.footer-section h3,
.info-cta {
  font-weight: 600;
  letter-spacing: 1px;
}

.info-cta {
  display: inline-block;
  color: #fff;
  padding: 12px 30px;
  text-transform: uppercase;
  transition: 0.3s;
  font-size: 14px;
}

.info-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.faq-section {
  padding: 40px 20px;
  background: #fafafa;
}

.faq-item,
.faq-question {
  background: rgba(0, 0, 0, 0.95);
}

.faq-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 35px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 1;
}

.clear-filters,
.filter-select {
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.faq-item {
  margin-bottom: 8px;
  z-index: 1;
}

.faq-question {
  color: #fff;
  padding: 15px 25px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  border: none;
  width: 100%;
  text-align: left;
  transition: 0.3s;
}

.faq-question:hover {
  background: rgba(220, 38, 38, 0.2);
}

.footer {
  background: rgba(0, 0, 0, 0.98);
  color: #fff;
  padding: 40px 20px 25px;
  border-top: 1px solid rgba(220, 38, 38, 0.3);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-section h3 {
  color: #dc2626;
  font-size: 16px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-section a,
.footer-section p {
  color: #ccc;
  text-decoration: none;
  line-height: 1.8;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  text-align: center;
  color: #666;
  font-size: 11px;
}

.faq-question {
  padding-right: 40px;
}

.faq-icon {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  background: rgba(40, 40, 40, 0.95);
  transition:
    max-height 0.3s,
    padding 0.3s;
  padding: 0 25px;
}

.faq-answer p {
  color: #ccc;
  line-height: 1.6;
  font-size: 14px;
  margin: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 20px 25px;
}

.faq-item.active .faq-icon {
  transform: translateY(-50%) rotate(45deg);
}

.sticky-btn {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.4s;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
}

.channel-btn::before,
.sticky-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 0.4s;
  z-index: -1;
}

.sticky-btn:hover {
  transform: translateY(-3px) translateX(-5px) scale(1.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.sticky-btn:active {
  transform: scale(0.95);
}

.sticky-btn svg {
  width: 24px;
  height: 24px;
  z-index: 1;
}

.sticky-telegram {
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  animation: 3s ease-in-out infinite telegramPulse;
}

@keyframes telegramPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  }

  50% {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
  }
}

.sticky-telegram::before,
.telegram-btn::before,
.telegram-channel::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.3),
    transparent
  );
}

.sticky-telegram:hover {
  background: linear-gradient(45deg, #1d4ed8, #3b82f6);
  box-shadow: 0 0 35px rgba(59, 130, 246, 0.6);
  border-color: rgba(59, 130, 246, 0.4);
  animation: none;
}

.sticky-whatsapp {
  background: linear-gradient(45deg, #10b981, #059669);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
  animation: 3s ease-in-out 1.5s infinite whatsappPulse;
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
  }

  50% {
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
  }
}

.sticky-whatsapp::before,
.whatsapp-btn::before,
.whatsapp-channel::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 185, 129, 0.3),
    transparent
  );
}

.sticky-whatsapp:hover {
  background: linear-gradient(45deg, #059669, #10b981);
  box-shadow: 0 0 35px rgba(16, 185, 129, 0.6);
  border-color: rgba(16, 185, 129, 0.4);
  animation: none;
}
@media (min-width: 769px) {
  .mobile-menu,
  .mobile-nav-menu,
  .mobile-menu-contacts {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .nav-links {
    display: flex !important;
    width: 100%;
    justify-content: flex-end;
  }

  .nav-links li:first-child {
    margin-left: auto;
  }
}

@media (max-width: 1024px) {
  .sticky-btn {
    width: 48px;
    height: 48px;
  }

  .sticky-btn svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .search-title {
    font-size: 22px;
  }

  .quick-filters {
    gap: 8px;
  }

  .checkbox-filters {
    justify-content: center;
    gap: 10px;
  }

  .models-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 15px;
  }

  .nav-container {
    height: 55px;
  }

  .logo {
    font-size: 24px;
  }

  .sticky-btn {
    width: 44px;
    height: 44px;
    clip-path: polygon(
      0 0,
      calc(100% - 8px) 0,
      100% 8px,
      100% 100%,
      8px 100%,
      0 calc(100% - 8px)
    );
  }

  .sticky-btn svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .search-title {
    font-size: 20px;
  }

  .models-grid {
    grid-template-columns: 1fr;
  }

  .filters-section,
  .models-section,
  .search-section {
    padding: 5px 15px;
  }

  .sticky-btn {
    width: 60px;
    height: 60px;
  }

  .back {
    background-image: url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M81.28 88H68.413l19.298 19.298L81.28 88zm2.107 0h13.226L90 107.838 83.387 88zm15.334 0h12.866l-19.298 19.298L98.72 88zm-32.927-2.207L73.586 78h32.827l.5.5 7.294 7.293L115.414 87l-24.707 24.707-.707.707L64.586 87l1.207-1.207zm2.62.207L74 80.414 79.586 86H68.414zm16 0L90 80.414 95.586 86H84.414zm16 0L106 80.414 111.586 86h-11.172zm-8-6h11.173L98 85.586 92.414 80zM82 85.586L87.586 80H76.414L82 85.586zM17.414 0L.707 16.707 0 17.414V0h17.414zM4.28 0L0 12.838V0h4.28zm10.306 0L2.288 12.298 6.388 0h8.198zM180 17.414L162.586 0H180v17.414zM165.414 0l12.298 12.298L173.612 0h-8.198zM180 12.838L175.72 0H180v12.838zM0 163h16.413l.5.5 7.294 7.293L25.414 172l-8 8H0v-17zm0 10h6.613l-2.334 7H0v-7zm14.586 7l7-7H8.72l-2.333 7h8.2zM0 165.414L5.586 171H0v-5.586zM10.414 171L16 165.414 21.586 171H10.414zm-8-6h11.172L8 170.586 2.414 165zM180 163h-16.413l-7.794 7.793-1.207 1.207 8 8H180v-17zm-14.586 17l-7-7h12.865l2.333 7h-8.2zM180 173h-6.613l2.334 7H180v-7zm-21.586-2l5.586-5.586 5.586 5.586h-11.172zM180 165.414L174.414 171H180v-5.586zm-8 5.172l5.586-5.586h-11.172l5.586 5.586zM152.933 25.653l1.414 1.414-33.94 33.942-1.416-1.416 33.943-33.94zm1.414 127.28l-1.414 1.414-33.942-33.94 1.416-1.416 33.94 33.943zm-127.28 1.414l-1.414-1.414 33.94-33.942 1.416 1.416-33.943 33.94zm-1.414-127.28l1.414-1.414 33.942 33.94-1.416 1.416-33.940-33.943zM0 85c2.21 0 4 1.79 4 4s-1.79 4-4 4v-8zm180 0c-2.21 0-4 1.79-4 4s1.79 4 4 4v-8zM94 0c0 2.21-1.79 4-4 4s-4-1.79-4-4h8zm0 180c0-2.21-1.79-4-4-4s-4 1.79-4 4h8z' fill='%23bf8888' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: auto;
  }

  .filters-section {
    background: rgba(0, 0, 0, 0.95);
    padding: 25px 20px;
    border-bottom: 1px solid rgba(220, 38, 38, 0.3);
  }

  .filters-container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .filter-count {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
  }

  .clear-filters {
    color: #dc2626;
    font-size: 12px;
    padding: 6px 12px;
    border: 1px solid #dc2626;
    transition: 0.3s;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.3);
  }

  .clear-filters:hover {
    background: #dc2626;
    color: #fff;
    box-shadow: 0 3px 15px rgba(220, 38, 38, 0.4);
  }

  .checkbox-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    position: relative;
    cursor: pointer;
  }

  .checkbox,
  .filter-select {
    background: rgba(0, 0, 0, 0.8);
    transition: 0.3s;
    cursor: pointer;
  }

  .checkbox-group:hover {
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateY(-1px);
  }

  .checkbox {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #555;
    position: relative;
  }

  .filter-select,
  .pagination-btn {
    border: 1px solid rgba(220, 38, 38, 0.3);
  }

  .checkbox:checked {
    background: #dc2626;
    border-color: #dc2626;
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.5);
  }

  .checkbox:checked::after {
    content: "✓";
    position: absolute;
    top: -3px;
    left: 2px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
  }

  .filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
  }

  .filter-select {
    color: #fff;
    padding: 10px 15px;
    font-size: 12px;
    outline: 0;
    font-weight: 500;
  }

  .filter-select:focus {
    border-color: #dc2626;
    box-shadow: 0 3px 20px rgba(220, 38, 38, 0.3);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
  }

  .filter-select option {
    background: #1a1a1a;
    color: #fff;
  }

  .mobile-filter-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
  }

  .mobile-filters-content {
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
  }

  .mobile-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
  }

  .mobile-filters-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
  }

  .mobile-close-btn {
    background: 0 0;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 5px;
  }

  .mobile-filters-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
  }

  .channel-btn,
  .channel-button,
  .model-contact-btn {
    text-decoration: none;
    overflow: hidden;
  }

  .mobile-filter-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
  }

  .mobile-active-count {
    color: #666;
    font-size: 14px;
  }

  .mobile-clear-btn {
    background: 0 0;
    border: 1px solid #dc2626;
    color: #dc2626;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
  }

  .mobile-filter-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
  }

  .mobile-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
    color: #333;
  }

  .mobile-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #dc2626;
  }

  .mobile-label {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
  }

  .model-image {
    width: 100%;
    aspect-ratio: 3 / 4; /* Важно! Это создает рамку 300x400 еще до загрузки фото */
    background: #222; /* Цвет заглушки */
    overflow: hidden;
    position: relative;
  }
  .model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .channel-btn,
  .channel-name {
    font-size: 15px;
  }

  .banner-section,
  .channel-btn,
  .channels-buttons,
  .channels-section {
    display: flex;
    position: relative;
  }

  .channels-section {
    width: 100%;
    margin: 0px 0;
    padding: 25px 20px;
    justify-content: center;
  }

  .channels-buttons {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    z-index: 1;
  }

  .channel-btn {
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(
      0 0,
      calc(100% - 10px) 0,
      100% 10px,
      100% 100%,
      10px 100%,
      0 calc(100% - 10px)
    );
    min-width: 180px;
    justify-content: center;
  }

  .button-title,
  .model-price {
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .channel-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .channel-btn svg {
    width: 22px;
    height: 22px;
  }

  .telegram-channel {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  }

  .telegram-channel:hover {
    background: linear-gradient(45deg, #1d4ed8, #3b82f6);
    box-shadow: 0 0 35px rgba(59, 130, 246, 0.6);
    border-color: rgba(59, 130, 246, 0.4);
  }

  .whatsapp-channel {
    background: linear-gradient(45deg, #10b981, #059669);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
  }

  .whatsapp-channel:hover {
    background: linear-gradient(45deg, #059669, #10b981);
    box-shadow: 0 0 35px rgba(16, 185, 129, 0.6);
    border-color: rgba(16, 185, 129, 0.4);
  }

  .anchor-channel {
    background: linear-gradient(45deg, #dc2626, #991b1b);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
    animation: 3s ease-in-out infinite anchorPulse;
  }

  @keyframes anchorPulse {
    0%,
    100% {
      box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
    }

    50% {
      box-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
    }
  }

  .anchor-channel::before {
    background: linear-gradient(
      90deg,
      transparent,
      rgba(220, 38, 38, 0.3),
      transparent
    );
  }

  .anchor-channel:hover {
    background: linear-gradient(45deg, #991b1b, #dc2626);
    box-shadow: 0 0 35px rgba(220, 38, 38, 0.6);
    border-color: rgba(220, 38, 38, 0.4);
    animation: none;
  }

  html {
    scroll-behavior: smooth;
  }

  .banner-section {
    width: 100%;
    padding: 20px;
    justify-content: center;
  }

  .banner-link {
    display: block;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
  }

  .banner-link:hover {
    transform: translateY(-2px);
  }

  .banner-image {
    width: 95%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s;
  }

  .banner-link:hover .banner-image {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  }

  @media (max-width: 600px) {
    .channel-btn,
    .channel-name {
      font-size: 14px;
    }

    .channels-section {
      margin: 0px 0;
      padding: 20px 15px;
    }

    .channels-buttons {
      gap: 15px;
      max-width: 100%;
    }

    .channel-btn {
      min-width: 150px;
      padding: 14px 20px;
      clip-path: polygon(
        0 0,
        calc(100% - 8px) 0,
        100% 8px,
        100% 100%,
        8px 100%,
        0 calc(100% - 8px)
      );
    }

    .channel-btn svg {
      width: 20px;
      height: 20px;
    }

    .banner-section {
      padding: 15px;
    }

    .banner-image {
      width: 98%;
      border-radius: 8px;
    }
  }

  .model-contact-btn,
  .page-dots,
  .page-number,
  .pagination-btn {
    width: 30px;
    height: 30px;
    display: flex;
  }

  .model-contacts {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
    z-index: 5;
  }

  .model-contact-btn {
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    clip-path: polygon(
      0 0,
      calc(100% - 8px) 0,
      100% 8px,
      100% 100%,
      8px 100%,
      0 calc(100% - 8px)
    );
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  }

  .model-contact-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
    z-index: 1;
  }

  .telegram-contact {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
  }

  .telegram-contact:hover {
    background: linear-gradient(45deg, #1d4ed8, #3b82f6);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.5);
  }

  .whatsapp-contact {
    background: linear-gradient(45deg, #10b981, #059669);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
  }

  .whatsapp-contact:hover {
    background: linear-gradient(45deg, #059669, #10b981);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.5);
  }

  .model-price {
    position: absolute;
    right: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    font-family: Cinzel, serif;
    z-index: 90;
  }

  .channel-button,
  .timed-popup-container {
    font-family:
      -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  }

  .page-number,
  .pagination-info {
    font-weight: 500;
    font-size: 14px;
  }

  .model-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0, transparent 100%);
    pointer-events: none;
    border-radius: 0 0 8px 8px;
  }

  .pagination-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
    margin: 50px 0 !important;
    width: 100% !important;
  }

  /* Ряд со стрелками и цифрами */
  .pagination-controls {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
  }

  /* Блок только для цифр */
  .pagination-numbers {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
  }

  /* Кнопки и стрелки */
  .page-number,
  .pagination-arrow {
    width: 45px !important;
    height: 45px !important;
    background: #a30e0e !important;
    color: white !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: bold !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .page-number.active {
    background: #dc2626 !important;
  }

  /* Если стрелка выключена */
  .pagination-arrow:disabled {
    background: #444 !important;
    opacity: 0.5 !important;
    cursor: not-allowed !important;
  }

  /* Три точки */
  .pagination-dots {
    color: white !important;
    width: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    font-weight: bold !important;
  }

  /* Текст под пагинацией */
  .pagination-info {
    color: #888 !important;
    font-size: 14px !important;
    order: 2; /* Гарантирует, что текст будет вторым в колонке */
  }

  /* Сами кнопки пагинации */
  .pagination {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .page-number {
    width: 45px !important;
    height: 45px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #a30e0e !important;
    color: white !important;
    border: none !important;
    cursor: pointer !important;
    font-weight: bold !important;
    border-radius: 4px !important;
    flex-shrink: 0 !important; /* Чтобы кнопка не сжималась */
  }

  .page-number.active {
    background: #dc2626 !important;
  }

  /* Стиль для точек ... */
  .pagination-dots {
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    font-weight: bold;
  }
  .pagination-dots {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #ffffff; /* Белый цвет точек */
    font-weight: bold;
    font-size: 20px;
  }

  /* Убираем лишние фантомные блоки (те самые ячейки снизу) */
  .pagination-container::before,
  .pagination-container::after,
  .pagination::before,
  .pagination::after {
    content: none !important;
    display: none !important;
  }

  .page-number,
  .pagination-btn {
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    margin: 30px auto !important; /* ДОБАВЛЕНО: Центрирует сам блок пагинации по горизонтали */
  }

  .page-dots,
  .pagination-info {
    color: #000;
  }

  .pagination-btn {
    justify-content: center;
    border-radius: 4px;
  }
  .page-number.active {
    background-color: #dc2626 !important; /* Твой красный цвет */
    color: #ffffff !important; /* Белый текст */
    border-color: #dc2626 !important;
    cursor: default !important; /* Обычный курсор вместо "пальца" */
    pointer-events: none !important; /* Полная блокировка кликов браузером */
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3); /* Легкое свечение для красоты */
  }
  .pagination-prev:disabled,
  .pagination-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    filter: grayscale(1);
  }
  .page-number:hover:not(.active) {
    border-color: #dc2626;
    background-color: rgba(220, 38, 38, 0.1);
    color: #dc2626;
  }

  .page-number.active,
  .pagination-btn:hover:not(:disabled) {
    background: #dc2626;
    border-color: #dc2626;
    box-shadow: 0 3px 15px rgba(220, 38, 38, 0.4);
  }

  .pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }
  .colores {
    color: #000;
  }
  .pagination-page {
    display: flex;
    gap: 6px;
  }

  .page-number {
    justify-content: center;
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 4px;
  }

  .page-number:hover {
    background: rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.5);
  }

  .page-dots {
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }

  .channel-buttons-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
  }

  .channel-button {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    color: #fff;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 280px;
    flex: 1;
    max-width: 320px;
    clip-path: polygon(
      0 0,
      calc(100% - 12px) 0,
      100% 12px,
      100% 100%,
      12px 100%,
      0 calc(100% - 12px)
    );
  }

  .channel-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.5s;
    z-index: -1;
  }

  .channel-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .button-icon {
    margin-right: 16px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s;
  }

  .channel-button:hover .button-icon {
    transform: scale(1.1);
  }

  .button-content {
    flex: 1;
  }

  .button-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1;
  }

  .button-subtitle {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .button-arrow {
    margin-left: 12px;
    transition: transform 0.3s;
    opacity: 0.8;
  }

  .channel-button:hover .button-arrow {
    transform: translateX(4px);
    opacity: 1;
  }

  .telegram-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
  }

  .telegram-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.6);
    border-color: rgba(59, 130, 246, 0.4);
  }

  .whatsapp-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
  }

  .whatsapp-btn:hover {
    background: linear-gradient(135deg, #059669, #10b981);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.6);
    border-color: rgba(16, 185, 129, 0.4);
  }
}
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .model-contact-btn {
    width: 34px;
    height: 34px;
  }

  .model-contact-btn svg {
    width: 18px;
    height: 18px;
  }

  .page-number,
  .pagination-btn {
    width: 36px;
    height: 36px;
    border-color: #dc2626;
  }

  .channel-buttons-container {
    gap: 16px;
    padding: 16px;
  }

  .channel-button {
    min-width: 240px;
    padding: 16px 20px;
    clip-path: polygon(
      0 0,
      calc(100% - 10px) 0,
      100% 10px,
      100% 100%,
      10px 100%,
      0 calc(100% - 10px)
    );
  }

  .button-title {
    font-size: 16px;
  }

  .button-subtitle {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .channel-btn,
  .channel-name {
    font-size: 16px;
  }

  .channels-section {
    padding: 15px 10px;
  }

  .channel-btn {
    padding: 14px 18px;
  }

  .channel-buttons-container {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .channel-button {
    min-width: 280px;
    max-width: 320px;
    width: 100%;
  }
}

.timed-popup-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 350px;
  background: rgba(0, 0, 0, 0.95);
  border: 2px solid rgba(220, 38, 38, 0.3);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(220, 38, 38, 0.2);
  border-radius: 8px;
  overflow: hidden;
  z-index: 9999;
  transform: translateY(calc(100% + 40px));
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #fff;
  display: none;
  opacity: 0;
  visibility: hidden;
}

.timed-popup-container::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.4),
    rgba(153, 27, 27, 0.3),
    rgba(220, 38, 38, 0.5)
  );
  z-index: -1;
  pointer-events: none;
  animation: 3s linear infinite eliteGlow;
}

@keyframes eliteGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.2);
  }

  50% {
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.4);
  }
}

.timed-popup-container.show {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: 0.6s ease-out elitePopupBounce;
}

@keyframes elitePopupBounce {
  0% {
    transform: translateY(calc(100% + 40px)) scale(0.9);
    opacity: 0;
  }

  50% {
    transform: translateY(-5px) scale(1.02);
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.timed-popup-container.hide {
  transform: translateY(calc(100% + 40px));
  opacity: 0;
  visibility: hidden;
}

.timed-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}

.timed-popup-close:hover {
  background: linear-gradient(135deg, #dc2626, #991b1b);
  border-color: #dc2626;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.timed-popup-close:after,
.timed-popup-close:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 1.5px;
  background: #fff;
  transition: 0.3s;
  border-radius: 1px;
}

.timed-popup-close:before {
  transform: rotate(45deg);
}

.timed-popup-close:after {
  transform: rotate(-45deg);
}

.timed-popup-header {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  border-bottom: 1px solid rgba(220, 38, 38, 0.3);
}

.timed-popup-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(220, 38, 38, 0.6),
    rgba(153, 27, 27, 0.4),
    rgba(220, 38, 38, 0.6),
    transparent
  );
}

.timed-popup-header img {
  width: 100%;
  display: block;
  height: 190px;
  object-fit: contain;
  transition: transform 0.3s;
  filter: brightness(0.9);
  background: rgba(0, 0, 0, 0.3);
}

.timed-popup-container:hover .timed-popup-header img {
  transform: scale(1.03);
  filter: brightness(1);
}

.timed-popup-content {
  padding: 20px;
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  text-align: center;
  position: relative;
}

.timed-popup-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 25%;
  right: 25%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(220, 38, 38, 0.4),
    transparent
  );
}

.timed-popup-title {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 6px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.timed-popup-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: -8px;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #dc2626, #991b1b);
}

.elite-text {
  color: #dc2626;
  text-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
}

.timed-popup-subtitle {
  font-size: 11px;
  color: #ccc;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.timed-popup-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  line-height: 1.4;
  font-weight: 400;
}

.timed-popup-buttons {
  display: flex;
  gap: 10px;
  width: 100%;
}

.mobile-nav-menu a,
.timed-popup-button {
  color: #ccc;
  display: block;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
  text-transform: uppercase;
}

.timed-popup-button {
  flex: 1;
  padding: 10px 6px;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  font-size: 11px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  letter-spacing: 0.5px;
}

.timed-popup-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(220, 38, 38, 0.1),
    transparent
  );
  transition: left 0.5s;
  z-index: -1;
}

.timed-popup-button:hover {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  border-color: rgba(220, 38, 38, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 3px 15px rgba(220, 38, 38, 0.2);
}

.timed-popup-button:active {
  transform: translateY(0);
}

.timed-popup-button.telegram {
  background: rgba(0, 136, 204, 0.1);
  color: #08c;
  border-color: rgba(0, 136, 204, 0.2);
}

.timed-popup-button.telegram:hover {
  background: rgba(0, 136, 204, 0.2);
  border-color: #08c;
  box-shadow: 0 3px 15px rgba(0, 136, 204, 0.3);
}

.timed-popup-button.whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.2);
}

.timed-popup-button.whatsapp:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: #25d366;
  box-shadow: 0 3px 15px rgba(37, 211, 102, 0.3);
}

@media (max-width: 767px) {
  .timed-popup-container {
    width: 300px;

    left: 50%;
    right: auto;
    bottom: 50%;
    transform: translateX(-50%) translateY(50%) translateY(calc(100vh + 40px));
  }

  .timed-popup-container.show {
    transform: translateX(-50%) translateY(50%);
  }

  .timed-popup-container.hide {
    transform: translateX(-50%) translateY(50%) translateY(calc(100vh + 40px));
  }

  .timed-popup-header img {
    height: 250px;
  }

  .timed-popup-title {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .timed-popup-subtitle {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .timed-popup-text {
    font-size: 11px;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .timed-popup-content {
    padding: 15px;
  }

  .timed-popup-button {
    padding: 9px 4px;
    font-size: 10px;
  }

  .timed-popup-buttons {
    gap: 8px;
  }

  .timed-popup-close {
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
  }

  .timed-popup-close:after,
  .timed-popup-close:before {
    width: 8px;
    height: 1px;
  }
}

@media (max-width: 380px) {
  .timed-popup-container {
    width: 280px;
    max-height: 80vh;
  }

  .timed-popup-header img {
    height: 250px;
  }

  .timed-popup-title {
    font-size: 18px;
  }

  .timed-popup-text {
    font-size: 10px;
  }

  .timed-popup-content {
    padding: 12px;
  }

  .timed-popup-buttons {
    flex-direction: column;
    gap: 6px;
  }

  .timed-popup-button {
    padding: 10px;
    font-size: 11px;
  }
}

@media (max-width: 320px) {
  .timed-popup-container {
    width: 260px;
    max-height: 75vh;
  }

  .timed-popup-header img {
    height: 250px;
  }

  .timed-popup-title {
    font-size: 16px;
  }

  .timed-popup-subtitle {
    font-size: 9px;
  }

  .timed-popup-text {
    font-size: 9px;
    line-height: 1.2;
  }

  .timed-popup-content {
    padding: 10px;
  }
}

@media (max-height: 600px) {
  .timed-popup-container {
    max-height: 70vh !important;
  }

  .timed-popup-header img {
    height: 190px !important;
  }

  .timed-popup-content {
    padding: 10px !important;
  }

  .timed-popup-title {
    font-size: 16px !important;
    margin-bottom: 3px;
  }

  .timed-popup-subtitle {
    margin-bottom: 6px;
  }

  .timed-popup-text {
    margin-bottom: 10px;
    font-size: 10px !important;
  }
}

@media (max-width: 360px) and (max-height: 600px) {
  .timed-popup-container {
    width: 260px;
    max-height: 65vh;
    bottom: 5%;
    transform: translateX(-50%) translateY(0) translateY(calc(100vh + 40px));
  }

  .timed-popup-container.show {
    transform: translateX(-50%) translateY(0);
  }

  .timed-popup-container.hide {
    transform: translateX(-50%) translateY(0) translateY(calc(100vh + 40px));
  }

  .timed-popup-header img {
    height: 190px;
  }

  .timed-popup-content {
    padding: 8px;
  }

  .timed-popup-title {
    font-size: 14px;
    margin-bottom: 2px;
  }

  .timed-popup-subtitle {
    font-size: 8px;
    margin-bottom: 4px;
  }

  .timed-popup-text {
    font-size: 9px;
    margin-bottom: 8px;
    line-height: 1.1;
  }

  .timed-popup-button {
    padding: 8px;
    font-size: 9px;
  }
}

/* ЗАЩИТА МОБИЛЬНОЙ ВЕРСИИ (Экран меньше 768px) */
@media screen and (max-width: 768px) {
  .pc-button-text {
    display: none !important; /* Прячем текст на мобиле */
  }

  /* Сбрасываем фон и обводку, чтобы на мобиле кнопки остались прежними */
  .pc-button {
    background: none !important;
    border: none !important;
    clip-path: none !important;
    padding: 0 !important;
  }
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header-contacts {
  display: flex;
  gap: 12px;
  margin-left: auto;
  margin-right: 30px;
}

.header-contact {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
  transition: 0.3s;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact.telegram {
  color: #08c;
}

.header-contact.telegram:hover {
  background: rgba(0, 136, 204, 0.2);
  border-color: #08c;
  transform: scale(1.1);
  box-shadow: 0 3px 15px rgba(0, 136, 204, 0.3);
}

.header-contact.whatsapp,
.mobile-contact.whatsapp {
  color: #25d366;
}

.header-contact.whatsapp:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: #25d366;
  transform: scale(1.1);
  box-shadow: 0 3px 15px rgba(37, 211, 102, 0.3);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: 0 0;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 32px;
  justify-content: space-between;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #ccc;
  transition: 0.3s;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
  position: absolute;
  top: 60px; /* Высота вашего хедера */
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.98);
  display: flex; /* Используем flex для внутреннего выравнивания */
  flex-direction: column;
  padding: 20px;
  z-index: 999;
  border-top: 1px solid rgba(220, 38, 38, 0.3);

  /* Анимация */
  transition: all 0.3s ease;
  transform: translateY(-10px);
  opacity: 0;

  /* ЭТО РЕШАЕТ ПРОБЛЕМУ: */
  visibility: hidden; /* Полностью скрывает элемент от браузера */
  pointer-events: none; /* Запрещает любые клики сквозь прозрачный блок */
}
.mobile-menu.show {
  display: flex !important;
  opacity: 1 !important;
  transform: translateY(0) !important;

  /* Возвращаем активность: */
  visibility: visible !important;
  pointer-events: auto !important;
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-menu li {
  margin-bottom: 15px;
}

.mobile-nav-menu a {
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-menu a.active,
.mobile-nav-menu a:hover {
  color: #dc2626;
  padding-left: 15px;
}

.mobile-menu-contacts {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact span {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-contact.telegram:hover {
  background: rgba(0, 136, 204, 0.1);
  border-color: rgba(0, 136, 204, 0.3);
}

.mobile-contact.whatsapp:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
  .header-contacts,
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }
}

/* HEADER */

.filters-section,
.header,
.search-section {
  backdrop-filter: blur(20px);
}

.clear-filters,
.header-contact,
.logo,
.mobile-contact,
.mobile-nav-menu a,
.model-card,
.nav-menu a,
.sticky-btn {
  text-decoration: none;
}

.model-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.model-image img {
  object-fit: cover;
  aspect-ratio: 3/4;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-link {
  min-height: 200px;
}

.model-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  color: #dc2626;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  min-height: 400px;
}

.model-card {
  min-height: 400px;
  display: block;
}

.models-grid.loading {
  background: repeating-linear-gradient(
    90deg,
    #f0f0f0 0,
    #f0f0f0 300px,
    #e0e0e0 300px,
    #e0e0e0 325px
  );
  animation: 2s infinite shimmer;
}

@keyframes shimmer {
  0% {
    background-position: -400px 0;
  }

  100% {
    background-position: 400px 0;
  }
}

.filters-section {
  min-height: 120px;
}

.filters-container {
  min-height: 80px;
}

.mobile-filter-button {
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  transform: translateZ(0);
}

.search-section {
  min-height: 60px;
}

.search-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}

.header {
  position: sticky;
  height: 60px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .models-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 15px;
    min-height: 300px;
  }

  .model-card {
    min-height: 350px;
  }

  .model-image {
    height: 320px;
  }

  .header {
    height: 55px;
  }

  .banner-link {
    min-height: 150px;
  }

  .mobile-filter-button {
    display: flex !important;
  }
}

@media (max-width: 480px) {
  .model-card,
  .models-grid {
    min-height: 400px;
  }

  .models-grid {
    grid-template-columns: 1fr;
  }

  .banner-link {
    min-height: 120px;
  }
}

body {
  font-display: swap;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fafafa;
  overflow-x: hidden;
}

.model-card-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: 1.5s infinite loading;
  min-height: 400px;
  border-radius: 8px;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.models-section {
  min-height: 500px;
}

.models-container {
  min-height: 450px;
}

.no-models-message {
  grid-column: 1/-1;
  text-align: center;
  padding: 40px;
  color: #666;
  font-size: 18px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-animation,
.particles {
  position: fixed;
  width: 100%;
  z-index: -1;
  left: 0;
  height: 100%;
  top: 0;
}

.logo .elite,
.nav-menu a.active {
  color: #dc2626;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.checkbox-group,
.model-card,
.model-image,
.sticky-btn {
  overflow: hidden;
}

.channel-btn svg,
.sticky-btn svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.bg-animation {
  background: linear-gradient(45deg, #fff, #f8f9fa, #fff);
  background-size: 400% 400%;
  animation: 15s infinite gradientShift;
}

.nav-menu a::after,
.particle {
  background: #dc2626;
  position: absolute;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.particle {
  width: 3px;
  height: 3px;
  opacity: 0.4;
  animation: 25s linear infinite float;
}

.header,
.search-section {
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid rgba(220, 38, 38, 0.3);
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0);
    opacity: 0;
  }

  10%,
  90% {
    opacity: 0.4;
  }

  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.logo,
.nav-menu a,
.search-box,
.search-section {
  position: relative;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.checkbox-group,
.search-container {
  display: flex;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
}

.nav-menu a,
.search-btn {
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #dc2626, #991b1b);
}

.logo .elite {
  text-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
}

.nav-menu a {
  color: #ccc;
  font-weight: 500;
  font-size: 13px;
}

.nav-menu a::after {
  content: "";
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
}

.nav-menu a.active::after {
  width: 100%;
}

.search-section {
  padding: 10px 0;
}

.search-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  justify-content: center;
}

.search-box {
  max-width: 450px;
}

.search-input {
  width: 100%;
  padding: 8px 60px 8px 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: #333;
  font-size: 13px;
  outline: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.model-card,
.search-btn {
  border: none;
}

.search-btn {
  position: absolute;
  right: 2px;
  top: 2px;
  bottom: 2px;
  background: linear-gradient(45deg, #dc2626, #991b1b);
  color: #fff;
  padding: 0 15px;
  font-size: 12px;
  font-weight: 600;
}

.checkbox-group::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(220, 38, 38, 0.2),
    transparent
  );
}

.checkbox-group span {
  color: #fff;
  font-weight: 500;
  font-size: 13px;
}

.badge,
.section-title {
  font-weight: 700;
  text-transform: uppercase;
}

.models-section {
  padding: 40px 20px;
  position: relative;
}

.models-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #1a1a1a;
  letter-spacing: 2px;
  position: relative;
  padding: 0 30px 0 30px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(45deg, #dc2626, #991b1b);
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.model-card {
  background: 0 0;
  position: relative;
  border-radius: 8px;
}

.model-image {
  width: 100%;
  height: 400px;
  position: relative;
  border-radius: 8px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}

.model-badges {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
}

.badge {
  padding: 6px 12px;
  font-size: 10px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  clip-path: polygon(
    0 0,
    calc(100% - 8px) 0,
    100% 8px,
    100% 100%,
    8px 100%,
    0 calc(100% - 8px)
  );
}

.filters-section,
.sticky-btn {
  backdrop-filter: blur(20px);
}

.badge.verified {
  background: linear-gradient(45deg, #10b981, #059669);
  color: #fff;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.sticky-telegram {
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  animation: 3s ease-in-out infinite telegramPulse;
}

.clear-filters,
.filter-select {
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.mobile-filter-button,
.mobile-nav-menu a {
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mobile-sticky-buttons {
  position: fixed;
  right: 15px;
  top: 40%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.sticky-btn {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
}

.channel-btn::before,
.sticky-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.sticky-btn svg {
  width: 24px;
  height: 24px;
  z-index: 1;
}

@keyframes telegramPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  }

  50% {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
  }
}

.sticky-telegram::before,
.telegram-channel::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.3),
    transparent
  );
}

.sticky-whatsapp {
  background: linear-gradient(45deg, #10b981, #059669);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
  animation: 3s ease-in-out 1.5s infinite whatsappPulse;
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
  }

  50% {
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
  }
}

.sticky-whatsapp::before,
.whatsapp-channel::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 185, 129, 0.3),
    transparent
  );
}

@media (max-width: 1024px) {
  .mobile-sticky-buttons {
    right: 12px;
  }

  .sticky-btn {
    width: 48px;
    height: 48px;
  }

  .sticky-btn svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .checkbox-filters {
    justify-content: center;
    gap: 10px;
  }

  .models-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 15px;
  }

  .nav-container {
    height: 55px;
  }

  .logo {
    font-size: 24px;
  }

  .mobile-sticky-buttons {
    right: 8px;
    gap: 8px;
  }

  .sticky-btn {
    width: 44px;
    height: 44px;
    clip-path: polygon(
      0 0,
      calc(100% - 8px) 0,
      100% 8px,
      100% 100%,
      8px 100%,
      0 calc(100% - 8px)
    );
  }

  .sticky-btn svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .models-grid {
    grid-template-columns: 1fr;
  }

  .filters-section,
  .models-section,
  .search-section {
    padding: 20px 15px;
  }

  .mobile-sticky-buttons {
    right: 6px;
    top: 38%;
    gap: 6px;
  }

  .sticky-btn {
    width: 40px;
    height: 40px;
  }

  .sticky-btn svg {
    width: 18px;
    height: 18px;
  }
}

@media (min-width: 769px) {
  .mobile-sticky-buttons {
    opacity: 1;
  }
}

@media (max-height: 600px) and (max-width: 768px) {
  .mobile-sticky-buttons {
    top: 50%;
  }
}

.back {
  background-repeat: repeat;
  background-size: auto;
  padding-top: 40px;
}

.filters-section {
  background: rgba(0, 0, 0, 0.95);
  padding: 25px 20px;
  border-bottom: 1px solid rgba(220, 38, 38, 0.3);
}

.filters-container {
  max-width: 1400px;
  margin: 0 auto;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.filter-count {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.clear-filters {
  color: #dc2626;
  font-size: 12px;
  padding: 6px 12px;
  border: 1px solid #dc2626;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.3);
}

.checkbox-filters {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.checkbox,
.filter-select {
  background: rgba(0, 0, 0, 0.8);
}

.checkbox {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #555;
  position: relative;
}

.filter-select {
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #fff;
  padding: 10px 15px;
  font-size: 12px;
  outline: 0;
  font-weight: 500;
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
}

.filter-select option {
  background: #1a1a1a;
  color: #fff;
}

.mobile-filter-button {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: linear-gradient(45deg, #dc2626, #991b1b);
  color: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.mobile-filter-count {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.mobile-filters-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  transform: translateX(-100%);
}

.mobile-filters-content {
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.mobile-filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
  background: #f8f9fa;
}

.mobile-filters-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.mobile-close-btn {
  background: 0 0;
  border: none;
  font-size: 24px;
  color: #666;
  padding: 5px;
}

.mobile-filters-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.channel-btn,
.model-contact-btn {
  text-decoration: none;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.mobile-filter-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.mobile-active-count {
  color: #666;
  font-size: 14px;
}

.mobile-clear-btn {
  background: 0 0;
  border: 1px solid #dc2626;
  color: #dc2626;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
}

.mobile-filter-item {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #333;
}

.mobile-checkbox {
  width: 18px;
  height: 18px;
  accent-color: #dc2626;
}

.mobile-label {
  display: block;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.mobile-select {
  width: 100%;
  background: #f8f9fa;
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 6px;
  color: #333;
  font-size: 14px;
}

.channel-btn,
.channel-name {
  font-size: 15px;
}

.banner-section,
.channel-btn,
.channels-buttons,
.channels-section {
  display: flex;
  position: relative;
}

.channels-section {
  width: 100%;
  margin: 30px 0 0 0;
  padding: 25px 20px;
  justify-content: center;
}

.channels-buttons {
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  z-index: 1;
}

.channel-btn {
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
  min-width: 180px;
  justify-content: center;
}

.channel-btn svg {
  width: 22px;
  height: 22px;
}

.telegram-channel {
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.whatsapp-channel {
  background: linear-gradient(45deg, #10b981, #059669);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.anchor-channel {
  background: linear-gradient(45deg, #dc2626, #991b1b);
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
  animation: 3s ease-in-out infinite anchorPulse;
}

@keyframes anchorPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
  }

  50% {
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
  }
}

.anchor-channel::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(220, 38, 38, 0.3),
    transparent
  );
}

html {
  scroll-behavior: smooth;
}

.banner-section {
  width: 100%;
  padding: 20px;
  justify-content: center;
}

.banner-link {
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
}

.banner-image {
  width: 95%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 600px) {
  .channel-btn,
  .channel-name {
    font-size: 14px;
  }

  .channels-buttons {
    gap: 15px;
    max-width: 100%;
  }

  .channel-btn {
    min-width: 150px;
    padding: 14px 20px;
    clip-path: polygon(
      0 0,
      calc(100% - 8px) 0,
      100% 8px,
      100% 100%,
      8px 100%,
      0 calc(100% - 8px)
    );
  }

  .channel-btn svg {
    width: 20px;
    height: 20px;
  }

  .banner-section {
    padding: 15px;
  }

  .banner-image {
    width: 98%;
    border-radius: 8px;
  }
}

.model-contacts {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 8px;
  z-index: 5;
}

.model-contact-btn,
.nav-container {
  align-items: center;
  position: relative;
}

.model-contact-btn {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  clip-path: polygon(
    0 0,
    calc(100% - 8px) 0,
    100% 8px,
    100% 100%,
    8px 100%,
    0 calc(100% - 8px)
  );
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.model-contact-btn svg {
  width: 20px;
  height: 20px;
  fill: white;
  z-index: 1;
}

.telegram-contact {
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.whatsapp-contact {
  background: linear-gradient(45deg, #10b981, #059669);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.model-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0, transparent 100%);
  border-radius: 0 0 8px 8px;
}

@media (max-width: 480px) {
  .channel-btn,
  .channel-name {
    font-size: 16px;
  }

  .channels-section {
    padding: 15px 10px;
  }

  .channel-btn {
    padding: 14px 18px;
  }
}

.mobile-nav-menu a {
  color: #ccc;
  display: block;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-height: 600px) {
  .mobile-sticky-buttons {
    top: 50%;
  }
}

.nav-container {
  display: flex;
  justify-content: space-between;
}

.header-contacts {
  display: flex;
  gap: 12px;
  margin-left: auto;
  margin-right: 30px;
}

.header-contact {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.header-contact.telegram,
.mobile-contact.telegram {
  color: #08c;
}

.header-contact.whatsapp,
.mobile-contact.whatsapp {
  color: #25d366;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: 0 0;
  border: none;
  padding: 8px;
  width: 40px;
  height: 32px;
  justify-content: space-between;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #ccc;
  transform-origin: center;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(220, 38, 38, 0.3);
  padding: 20px;
  opacity: 0;
  transform: translateY(-20px);
  visibility: hidden;
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-menu li {
  margin-bottom: 15px;
}

.mobile-nav-menu a.active {
  color: #dc2626;
  padding-left: 15px;
}

.mobile-menu-contacts {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact span {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-filter-button {
    display: flex !important;
  }

  .mobile-filters-modal {
    display: block !important;
  }

  .model-contact-btn {
    width: 34px;
    height: 34px;
  }

  .model-contact-btn svg {
    width: 18px;
    height: 18px;
  }

  .header-contacts,
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  /* Создаем переменную, которая скроет блок только на ПК */
  .header-contacts {
    display: none !important;
  }
  /* Дополнительная страховка: скрываем сами ссылки внутри */
  .header-contacts a.header-contact {
    display: none !important;
  }
}
