 /* === Стили для ПК (десктоп, ширина > 650px) === */ 
	html {
	  height: 100%;
	  overflow-x: hidden;
	  scrollbar-width: thin;
	  scrollbar-color: #f46e8f #22252a;
	}

	html::-webkit-scrollbar {
	  width: 7px;
	}

	html::-webkit-scrollbar-track {
	  background: #22252a;
	}

	html::-webkit-scrollbar-thumb {
	  background-color: #f46e8f;
	  border-radius: 5px;
	  border: 2px solid #22252a;
	}

	html::-webkit-scrollbar-thumb:hover {
	  background-color: #1f8cd1;
	}

	body {
	  margin: 0;
	  font-family: 'Montserrat', Arial, sans-serif;
	  background: #22252a;
	  color: #f2f3f5;
	  min-height: 100vh;
	  display: flex;
	  flex-direction: column;
	  overflow-x: hidden;
	}

	/* Контейнеры */
	.container {
	  max-width: 1200px;
	  margin: 0 auto;
	  padding: 13px 0 0 0;
	  flex: 1 0 auto;
	  width: 100%;
	  box-sizing: border-box;
	}

	.container2 {
	  max-width: 1200px;
	  margin: 0 auto;
	  padding: 0px 0 0 0;
	  flex: 1 0 auto;
	  width: 100%;
	  box-sizing: border-box;
	}

	/* Шапка */
	.header {
	  background: #282b30;
	  min-height: 58px;
	  padding: 12px 18px;
	  position: fixed;
	  top: 0;
	  left: 0;
	  right: 0;
	  z-index: 1000;
	  display: flex;
	  align-items: center;
	  gap: 18px;
	  font-family: 'Montserrat', Arial, sans-serif;
	  max-width: 1200px;
	  width: 100%;
	  margin: 0 auto;
	  border-radius: 0 0 10px 10px;
	  box-shadow:
		0 8px 32px -6px rgba(255,255,255,0.1),
		0 2px 10px 0 rgba(50,175,237,0.3);
	}

	.header__logo {
	  font-size: 1.7rem;
	  font-weight: bold;
	  color: #fff;
	  text-decoration: none;
	  letter-spacing: 1px;
	  margin-right: 10px;
	  transition: color .22s;
	  display: flex;
	  align-items: center;
	  user-select: none;
	}
	.header__logo:hover .logo-silk {
	  color: #4dc7ff;
	  text-shadow: 0 0 8px rgba(77,199,255,0.8), 0 0 14px rgba(77,199,255,0.6);
	}

	.header__logo:hover .logo-pill {
	  color: #ff80a1;
	  text-shadow: 0 0 8px rgba(244,110,143,0.8), 0 0 14px rgba(244,110,143,0.6);
	} 
	.logo-silk {
	  color: #32afed;
	  font-weight: 700;
	  letter-spacing: 1px;
	}

	.logo-pill {
	  color: #f46e8f;
	  font-weight: 700;
	  margin-left: 3px;
	  letter-spacing: 1px;
	}

	.header__menu {
	  list-style: none;
	  display: flex;
	  gap: 18px;
	  margin: 0 14px 0 0;
	  padding: 0;
	  align-items: center;
	}

	.header__menu li {
	  display: flex;
	  align-items: center;
	}

	.header__menu li a {
	  color: #ffffff;
	  text-decoration: none;
	  font-size: 1.08rem;
	  padding: 6px 14px 6px 12px;
	  border-radius: 5px;
	  border: 2px solid transparent;
	  display: flex;
	  align-items: center;
	  gap: 9px;
	  font-weight: 500;
	  transition: background 0.14s, color 0.14s, border-color 0.15s;
	  cursor: pointer;
	  outline: none;
	}

	.header__menu li a .fa,
	.header__menu li a svg {
	  font-size: 1.18em;
	  min-width: 21px;
	  min-height: 21px;
	  max-width: 21px;
	  max-height: 21px;
	  width: 21px;
	  height: 21px;
	  opacity: 0.87;
	  display: inline-block;
	  vertical-align: middle;
	  color: #fff;
	  fill: #fff;
	  transition: color 0.15s, fill 0.15s;
	}

	.header__menu li a.is-active {
	  border: 2px solid transparent;
	  color: #ffffff;
	  background: transparent;
	  outline: none;
	}

	.header__menu li a[href="/"]:hover,
	.header__menu li a[href="/"]:focus,
	.header__menu li a[href*="t.me"]:hover,
	.header__menu li a[href*="t.me"]:focus,
	.header__menu li a[href$="contacts.html"]:hover,
	.header__menu li a[href$="contacts.html"]:focus,
	.header__menu li a[href$="/en/contacts-en.html"]:hover,
	.header__menu li a[href$="/en/contacts-en.html"]:focus,
	.header__menu li a[href$="/en/donate-en.html"]:hover,
	.header__menu li a[href$="/en/donate-en.html"]:focus {
	  border-color: transparent;
	  background: none;
	  color: #32afed;
	  outline: none;
	}

	.header__menu li a[href$="donate.html"]:hover,
	.header__menu li a[href$="donate.html"]:focus,
	.header__menu li a[href$="/en/donate-en.html"]:hover,
	.header__menu li a[href$="/en/donate-en.html"]:focus	{
	  color: #FFD700 !important;
	}

	.header__menu li a .fa,
	.header__menu li a svg {
	  color: #fff;
	  fill: #fff;
	}

	.header__menu li a.is-active:hover .fa,
	.header__menu li a.is-active:hover svg,
	.header__menu li a.is-active:focus .fa,
	.header__menu li a.is-active:focus svg,
	.header__menu li a:hover .fa,
	.header__menu li a:hover svg {
	  color: #32afed;
	  fill: #32afed;
	}

	.header__menu li a.menu-stripper {
	  color: #fff;
	  background: transparent;
	  font-weight: 500;
	  font-size: 1.08rem;
	  display: flex;
	  align-items: center;
	  padding: 6px 14px;
	  transition: color 0.14s;
	}

	.header__menu li a.menu-stripper .fa-fire-flame-curved {
	  color: #f46e8f;
	  font-size: 1.18em;
	  width: 15.3px;
	  height: 21px;
	  display: inline-block;
	  vertical-align: middle;
	  margin: 0;
	}

	.header__menu li a.menu-stripper:hover {
	  color: #f46e8f;
	}
	.header__menu li a.menu-game {
	  color: #fff;
	  background: transparent;
	  font-weight: 500;
	  font-size: 1.08rem;
	  display: flex;
	  align-items: center;
	  padding: 6px 14px;
	  transition: color 0.14s;
	}

	.header__menu li a.menu-game .fa-bolt {
	  color: #FFD700;
	  font-size: 1.18em;
	  width: 15.3px;
	  height: 21px;
	  display: inline-block;
	  vertical-align: middle;
	  margin: 0;
	}

	.header__menu li a.menu-game:hover {
	  color: #FFD700;
	}
	
	.header__menu li a.menu-videochat {
	  color: #fff;
	  background: transparent;
	  font-weight: 500;
	  font-size: 1.08rem;
	  display: flex;
	  align-items: center;
	  padding: 6px 14px;
	  transition: color 0.14s;
	  white-space: nowrap;
	}

	.header__menu li a.menu-videochat .fa-play {
	  color: #32afed;
	  font-size: 1.18em;
	  width: 15.3px;
	  height: 21px;
	  display: inline-block;
	  vertical-align: middle;
	  margin: 0;
	}

	.header__menu li a.menu-videochat:hover {
	  color: #32afed;
	}

	.header__menu li a .fa-house {
	  font-size: 1.18em;
	  width: 21px;
	  height: 21px;
	  display: inline-block;
	  vertical-align: middle;
	  margin-right: 2px;
	}

	.header__menu li a[href$="donate.html"] .fa-coins,
	.header__menu li a[href$="/en/donate-en.html"] .fa-coins	{
	  color: #FFD700 !important;
	  animation: coin-jump 5s ease-in-out infinite;
	}

	.header__menu li a[href$="contacts.html"] .fa-envelope,
	.header__menu li a[href$="/en/contacts-en.html"] .fa-envelope	{
	  position: relative;
	  top: 1px;
	}

	.header__search {
	  flex-grow: 1;
	  max-width: 370px;
	  display: flex;
	  align-items: center;
	  margin-left: auto;
	  margin-right: 6px;
	  min-width: 190px;
	}

	.header__search-box {
	  display: flex;
	  width: 100%;
	  background: #282b30;
	  border-radius: 7px;
	  border: 1px solid #35363a;
	  overflow: hidden;
	  min-width: 190px;
	  margin-right: 4px;
	}

	.header__search-box input {
	  width: 100%;
	  border: none;
	  outline: none;
	  background: transparent;
	  color: #fff;
	  padding: 9px 13px;
	  font-size: 1rem;
	  font-family: inherit;
	}

	.header__search-box .search-btn {
	  background: none;
	  border: none;
	  color: #32afed !important;
	  padding: 0 13px;
	  font-size: 1.2rem;
	  cursor: pointer;
	  display: flex;
	  align-items: center;
	}

	.header__search-box .search-btn .fa-search {
	  color: #32afed !important;
	  transition: color .15s, filter .15s;
	}

	.header__search-box .search-btn:hover .fa-search,
	.header__search-box .search-btn:focus .fa-search {
	  color: #4dc7ff !important;
	  filter: brightness(1.11);
	}

	@keyframes coin-jump {
	  0%, 92%, 100% { transform: translateY(0); }
	  95% { transform: translateY(-7px); }
	  97% { transform: translateY(0); }
	}

	/* Сортировка */
	.sort-vpn-row {
	  padding-top: 80px;
	  display: flex;
	  align-items: center;
	  width: 100%;
	  max-width: 1200px;
	  margin: 20px auto 0 auto;
	  box-sizing: border-box;
	  justify-content: space-between;
	  gap: 10px;
	  line-height: 1;
	}

	.sort-vpn-link.telegram-bot-link {
	  color: #ffffff;
	  text-decoration: none;
	  font-size: 1.08rem;
	  padding: 7px 0 7px 0px;
	  border-radius: 5px;	  
	  display: flex;
	  align-items: center;
	  gap: 9px;
	  font-weight: 500;
	  transition: background 0.14s, color 0.14s, border-color 0.15s;
	  cursor: pointer;
	  outline: none;
	  background: transparent;
	  margin-left: 0;
	}

	.sort-vpn-link.telegram-bot-link:hover,
	.sort-vpn-link.telegram-bot-link:focus {
	  border-color: transparent !important;
	  background: none !important;
	  color: #32afed !important;
	  box-shadow: none;
	}

	.sort-vpn-link.telegram-bot-link i {
	  color: #fff;
	  font-size: 1em;
	  min-width: 21px;
	  min-height: 21px;
	  max-width: 21px;
	  max-height: 21px;
	  width: 21px;
	  height: 21px;
	  opacity: 0.87;
	  transition: color 0.15s;	  
	  margin-left: 0;
	  vertical-align: middle;
	  display: inline-block;
	  position: relative;
	  top: 1px;
	}

	.sort-vpn-link.telegram-bot-link:hover i,
	.sort-vpn-link.telegram-bot-link:focus i {
	  color: #32afed;
	}

	/* VPN-ссылка */
	.vpn-link {
	  color: #fff;
	  background: transparent;
	  border: 2px solid #FFD700;
	  border-radius: 5px;
	  text-decoration: none;
	  font-size: 1.08rem;
	  font-weight: 500;
	  display: block;
	  max-width: 200px;
	  margin: 25px auto;
	  padding: 10px 10px;
	  text-align: center;
	  transition: background 0.14s, color 0.14s;
	  width: auto;
	  position: relative;
	}

	.vpn-link i {
	  margin-right: 8px;
	  font-size: 1.2rem;
	}

	.vpn-link:hover {
	  background: rgba(255, 215, 0, 0.1);
	  color: #FFD700;
	}

	.vpn-link:focus {
	  outline: none;
	}

	.vpn-link i.fa-shield-halved {
	  color: #FFD700;
	}

	/* Текстовые элементы */
	.help-project {
	  font-weight: 600;
	  color: #FFD700;
	  font-family: 'Montserrat', sans-serif;
	  font-size: 1.3rem;
	  margin-top: 20px;	
	  margin-bottom: 20px;
	  color: #FFD700;
	}

	.help-project2 {
	  text-align: center;
	  font-weight: 600;
	  color: #FFD700;
	  font-family: 'Montserrat', sans-serif;
	  font-size: 1.1rem;
	  margin-bottom: 0;
	}

	.silk {
	  font-weight: 600;
	  color: #32afed;
	  font-family: 'Montserrat', sans-serif;
	  font-size: 1.2rem;
	}

	.pill {
	  font-weight: 600;
	  color: #f46e8f;
	  font-family: 'Montserrat', sans-serif;
	  font-size: 1.2rem;
	}

	/* Просмотры */
	.model-views-row {
	  display: flex;
	  align-items: center;
	  justify-content: flex-end;
	  gap: 7px;
	  color: #fff;
	  font-size: 1.08rem;
	  font-weight: 500;
	  background: none;
	  padding: 0;
	  line-height: 1;
	  user-select: none;
	}

	.model-views-row .fa-star {
	  color: #ffd700;
	  font-size: 1.15rem;
	  margin: 0 5px 0 5px;
	  opacity: 0.97;
	  position: relative;
	  top: 0px;
	}

	/* Галерея изображений */
	.image-gallery {
	  display: grid;
	  grid-template-columns: repeat(4, 1fr);
	  gap: 20px;
	  margin: 20px 0;
	  padding: 0 10px;
	}

	.image-gallery .image-item {
	  text-align: center;
	}

	.image-gallery img {
	  max-width: 100%;
	  height: auto;
	  border-radius: 5px;
	  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	}

	.image-gallery .image-caption {
	  font-size: 0.95rem;
	  color: #fff;
	  margin-top: 10px;
	  padding: 0 5px;
	}

	.image-gallery2 {
	  display: flex !important;
	  justify-content: center !important;
	  align-items: flex-start;
	  gap: 20px;
	  padding: 0 10px;
	  margin: 20px 0px 0px 0px;
	}

	.image-gallery2 .image-item {
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  width: auto;
	}

	.image-gallery2 .image-item img {
	  max-width: 500px;
	  width: 100%;
	  height: auto;
	  margin: 0 auto;
	  display: block;
	  border-radius: 15px;
	  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
	}

	.image-gallery2 .image-caption {
	  margin-top: 12px;
	  font-size: 0.95rem;
	  color: #fff;
	  text-align: center;
	  padding: 0 4px;
	  max-width: 440px;
	}

	/* Другие модели */
	.other-models-section {
	  max-width: 1200px;
	  margin-left: auto;
	  margin-right: auto;
	  margin-top: 10px;
	  margin-bottom: 20px;
	  padding: 0;
	  box-sizing: border-box;
	  width: 100%;
	}

	.other-models-section h2 {
	  font-size: 1.3rem;
	  font-weight: 700;
	  color: #f46e8f;
	  margin-bottom: 20px;
	  user-select: none;
	  text-align: left;
	  max-width: 1200px;
	  margin-left: auto;
	  margin-right: auto;
	  padding-left: 0;
	}

	.other-models-list {
	  display: grid;
	  grid-template-columns: repeat(5, 1fr);
	  gap: 16px;
	  max-width: 1200px;
	  margin-left: auto;
	  margin-right: auto;
	  padding: 0;
	  box-sizing: border-box;
	}

	.other-model-card {
	  width: 100%;
	  min-width: 0;
	  border: 1px solid #32343b;
	  border-radius: 10px;
	  background: #23262b;
	  cursor: pointer;
	  transition: none;
	  display: flex;
	  flex-direction: column;
	  overflow: hidden;
	  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
	  user-select: none;
	}

	.other-model-card:hover,
	.other-model-card:focus {
	  transform: none;
	  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
	}

	.other-model-card .image-placeholder {
	  width: 100%;
	  padding-bottom: 120%;
	  background-size: cover;
	  background-position: center;
	  flex-shrink: 0;	 
	}

	.other-model-card .name-box {
	  padding: 8px 10px;
	  font-size: 1.09rem;
	  color: #fff;
	  font-weight: 400;
	  text-align: center;
	  white-space: nowrap;
	  overflow: hidden;
	  text-overflow: ellipsis;
	  background: #282b30;
	  flex-shrink: 0;
	  transition: color 0.18s;
	}

	.other-model-card:hover .name-box,
	.other-model-card:focus .name-box {
	  color: #f46e8f !important;
	}

	/* Футер */
	.footer-text {
	  margin-top: 0;
	  margin-bottom: 0px;
	  color: #fff;
	  font-size: 0.95rem;
	  text-align: justify;
	  width: 100%;
	  box-sizing: border-box;
	  max-width: 1200px;
	  margin-left: auto;
	  margin-right: auto;
	  line-height: 1.4;
	}

	.attention {
	  color: #f46e8f;
	  font-weight: 700;
	  text-transform: uppercase;
	}

	.footer-black {
	  width: 100%;
	  max-width: 1236px;
	  margin: 20px auto 0 auto;
	  background: #282b30;
	  border-radius: 10px 10px 0 0;
	  min-height: 58px;
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  padding: 20px;
	  box-sizing: border-box;
	  box-shadow:
		0 -8px 32px -6px rgba(255,255,255,0.1),
		0 -2px 10px 0 rgba(50,175,237,0.3);
	  flex-shrink: 0;
	  position: relative;
	}

	.footer-black .age-restriction {
	  flex-shrink: 0;
	  margin-right: 24px;
	  display: flex;
	  align-items: center;
	}

	.footer-black .age-restriction-img {
	  height: 40px;
	  width: auto;
	  object-fit: contain;
	  display: block;
	}

	.footer-black .footer-content {
	  flex-grow: 1;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  text-align: center;
	  margin-left: 0;
	  margin-right: 0;
	  padding-right: 20px;
	}

.footer-black .footer-content p {
	  font-size: 0.8rem;
	  margin: 0;
	  line-height: 1.5;
	  color: #fff;
	  text-align: center;
	  width: 100%;
	}

	.lang-switcher-footer {
	  display: flex;
	  align-items: center;
	  gap: 7px;
	}

	.lang-switcher-flag {
	  width: 30px;
	  height: 30px;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	}

	.lang-switcher-flag img {
	  height: 18px;
	  width: 29px;
	  object-fit: cover;
	  display: block;
	}

	.lang-switcher-oval {
	  position: relative;
	  width: 42px;
	  height: 25px;
	  background: #282b30;
	  border: 2px solid #fff;
	  border-radius: 18px;
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  padding: 0 6px;
	  box-sizing: border-box;
	  cursor: pointer;
	}

.lang-switcher-knob {
	  position: absolute;
	  left: 2px; /* стартовое положение */
	  width: 13px;
	  height: 13px;
	  background: #304552;
	  border: 2px solid #fff;
	  border-radius: 50%;
	  transition: left .25s cubic-bezier(.44,.06,.51,1), background .15s;
	  z-index: 2;
	}

	.lang-switcher-oval.active .lang-switcher-knob {
	  left: 19px; /* аккуратно справа */
	}

	/* Крипто-адреса */
	.crypto-address {
	  cursor: pointer;
	  background: #6969694d;
	  padding: 8px 8px;
	  border-radius: 5px;
	  display: inline-block;
	  margin: 10px 10px;
	  font-family: monospace;
	  font-size: 1rem;
	  word-break: break-all;
	  max-width: 100%;
	  box-sizing: border-box;
	  border: 2px solid transparent;
	  transition: background 0.18s, border-color 0.18s;
	}

	.crypto-address:hover {
	  background: #6969694d;
	  border-color: #FFD700;
	}

	.crypto-dot {
	  display: inline-block;
	  border-radius: 50%;
	  vertical-align: middle;
	  width: 18px;
	  height: 18px;
	  margin-right: 7px;
	  margin-bottom: 3px;
	}

	/* Ссылки */
	a.donate-link {
	  color: #FFD700;
	  text-decoration: none;
	  font-weight: bold;
	  transition: color .15s, filter .15s;
	}

	a.donate-link:hover,
	a.donate-link:focus {
	  color: #FFD700;
	  filter: brightness(1.16);
	  text-decoration: none;
	}

	a.telegram-link {
	  color: #32afed;
	  text-decoration: none;
	  font-weight: bold;
	  transition: color .15s, filter .15s;
	}

	a.telegram-link:hover,
	a.telegram-link:focus {
	  color: #4dc7ff;
	  text-decoration: none;
	  filter: brightness(1.11);
	}

	.stripper-link {
	  color: #f46e8f;
	  font-weight: 700;
	  text-decoration: none;
	  transition: color .15s, filter .15s;
	}

	.stripper-link:hover,
	.stripper-link:focus {
	  color: #f46e8f;
	  filter: brightness(1.16);
	  text-decoration: none;
	}

	/* Описание */
	.description .ql-align-center {
	  text-align: center;
	}

	.description .ql-align-right {
	  text-align: right;
	}

	.description .ql-align-justify {
	  text-align: justify;
	}

	.description p {
	  margin-top: 0;
	  margin-bottom: 0.1em;
	  line-height: 1.5;
	}

	.description p:last-child {
	  margin-bottom: 0;
	}

	.model-info .description::-webkit-scrollbar {
	  width: 7px;
	}

	.model-info .description::-webkit-scrollbar-track {
	  background: #22252a;
	  border-radius: 5px;
	}

	.model-info .description::-webkit-scrollbar-thumb {
	  background-color: #f46e8f;
	  border-radius: 5px;
	  border: 2px solid #22252a;
	}

	.model-info .description::-webkit-scrollbar-thumb:hover {
	  background-color: #1f8cd1;
	}

	.model-info .description {
	  scrollbar-width: thin;
	  scrollbar-color: #f46e8f #22252a;
	}

	/* Медиа-запросы для ПК */
	@media (min-width: 651px) {
	  .mobile-header,
	  .mobile-nav-menu,
	  .mobile-sort {
		display: none !important;
	  }

	  .vpn-link {
		color: #fff;
		background: transparent;
		border: 2px solid #FFD700;
		border-radius: 5px;
		text-decoration: none;
		font-size: 1.05rem;
		font-weight: 500;
		display: block;
		max-width: 200px;
		margin: 25px auto;
		padding: 10px 10px;
		text-align: center;
		transition: background 0.14s, color 0.14s;
		width: auto;
		position: relative;
	  }

	  .vpn-link i {
		margin-right: 8px;
		font-size: 1.2rem;
	  }

	  .vpn-link:hover {
		background: rgba(255, 215, 0, 0.1);
		color: #FFD700;
	  }

	  .vpn-link:focus {
		outline: none;
	  }

	  .vpn-link i.fa-shield-halved {
		color: #FFD700;
	  }

	  .image-gallery .image-item img {
		max-width: 360px;
		width: 100%;
		height: auto;
		display: block;
		margin-left: auto;
		margin-right: auto;
	  }
	}

	/* === Стили для мобильных устройств === */

	/* Мобильная шапка */
	.mobile-header {
	  display: none;
	}

	.mobile-header-row {
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  min-height: 56px;
	  gap: 8px;
	}

	.mobile-logo {
	  line-height: 40px; 
	  transform: scaleY(1.15);
	  font-size: 1.6rem;
	  font-weight: bold;
	  color: #fff;
	  display: flex;
	  align-items: center;
	  user-select: none;
	}

	.logo-silk {
	  color: #32afed;
	  font-weight: 700;
	  letter-spacing: 1px;
	}

	.logo-pill {
	  color: #f46e8f;
	  font-weight: 700;
	  margin-left: 3px;
	  letter-spacing: 1px;
	}

	.mobile-btn {
	  background: none;
	  border: none;
	  color: #fff;
	  font-size: 1.4rem;
	  margin-left: 2px;
	  cursor: pointer;
	  padding: 9px 9px;
	  border-radius: 6px;
	  transition: background 0.16s, color 0.18s, box-shadow 0.18s;
	  box-shadow: none;
	  outline: none;
	  position: relative;
	  z-index: 2010;
	}

	.mobile-search-toggle {
	  color: #32afed;
	}

	.mobile-burger {
	  color: #fff;
	}

	.mobile-search-form {
	  border-top: 1px solid #35363a;
	  display: none;
	  padding: 15px 15px 15px 15px;
	  animation: dropdown-search 0.23s cubic-bezier(.51,.02,.49,.98);
	  background: #282b30;
	}

	.mobile-search-form.active {
	  display: block;
	}

	@keyframes dropdown-search {
	  from { opacity: 0; transform: translateY(-10px); }
	  to { opacity: 1; transform: translateY(0); }
	}

	.mobile-nav-menu {
	  display: none;
	  position: fixed;
	  top: 57px;
	  left: 0;
	  right: 0;
	  background: #23262b;
	  z-index: 1999;
	  box-shadow: 0 14px 24px -10px #000a;
	  animation: navmenu-slide .21s cubic-bezier(.51,.02,.49,.98);
	  border-radius: 0 0 10px 10px;
	  padding: 12px 0 4px 0;
	}

	.mobile-nav-menu.active {
	  display: block;
	}

	@keyframes navmenu-slide {
	  from { opacity: 0; transform: translateY(-12px); }
	  to { opacity: 1; transform: translateY(0); }
	}

	.mobile-nav-menu ul {
	  list-style: none;
	  margin: 0;
	  padding: 0 9px;
	}

	.mobile-nav-menu li {
	  margin: 0;
	  border-bottom: 1px solid #30333a44;
	}

	.mobile-nav-menu li:last-child {
	  border-bottom: none;
	}

	.mobile-nav-menu a {
	  display: flex;
	  align-items: center;
	  gap: 12px;
	  color: #ffffff;
	  text-decoration: none;
	  font-size: 1.1rem;
	  padding: 15px 12px 15px 12px;
	  transition: background 0.14s, color 0.13s;
	  border-radius: 0px;
	}

	.mobile-nav-menu a i {
	  font-size: 1.14em;
	  width: 22px;
	  min-width: 22px;
	  text-align: center;
	}

	.mobile-nav-menu a:hover,
	.mobile-nav-menu a:focus {
	  color: #32afed;
	  background: #24272c;
	}

	.mobile-nav-menu a[href$="donate.html"] .fa-coins,
	.mobile-nav-menu a[href$="/en/donate-en.html"] .fa-coins {
	  color: #FFD700 !important;
	}

	.mobile-nav-menu a[href$="stripper.html"] .fa-fire-flame-curved {
	  color: #f46e8f !important;
	}

	.mobile-nav-menu a .fa-shield-alt {
	  color: #FFD700 !important;
	}

	/* Мобильная сортировка */
	.mobile-sort {
	  display: none;
	}

	.mobile-sort-label {
	  color: #fff;
	  font-weight: 500;
	  font-size: 1.07rem;
	  letter-spacing: .01em;
	  white-space: nowrap;
	  flex-shrink: 0;
	  line-height: 1;
	  padding: 0;
	  margin-right: 15px !important;
	  display: inline-block;
	}

	.mobile-sort-icon {
	  color: #fff !important;
	  background: none;
	  border: none;
	  outline: none;
	  border-radius: 6px;
	  padding: 6px;
	  margin: 0;
	  transition: color 0.14s, background 0.13s;
	  display: flex !important;
	  align-items: center !important;
	  cursor: pointer;
	  text-decoration: none !important;
	  font-size: 1.16rem !important;
	  min-width: 36px;
	  min-height: 36px;
	  justify-content: center;
	}

	.mobile-sort-icon.active {
	  color: #32afed !important;
	  background: none !important;
	}

	.mobile-sort-icon:focus,
	.mobile-sort-icon:hover:not(.active) {
	  color: #32afed !important;
	  background: rgba(50,175,237,0.07);
	}

	.mobile-sort-icon i {
	  pointer-events: none;
	  line-height: 1;
	  font-size: 1.13rem !important;
	  width: 1.15em !important;
	  height: 1.15em !important;
	  display: inline-block !important;
	  vertical-align: middle !important;
	}

	.mobile-sort-icon i.fa-heart {
	  position: relative;
	  left: 2px;
	}

	/* Мобильные просмотры */
	.mobile-views-row {
	  display: none;
	}

	.mobile-views-label {
	  margin-top: 0px;
	  font-weight: 500;
	  letter-spacing: .01em;
	  color: #fff;
	  font-size: 1.13rem;
	}

	.mobile-views-row i,
	.mobile-views-row #mobile-model-views-count {
	  margin-top: 0;
	}

	/* Медиа-запросы для мобильных устройств */
	@media (max-width: 1250px) {
	  .header {
		flex-wrap: wrap;
		gap: 10px;
	  }

	  .header__logo {
		margin: 9px 0 5px 2px;
	  }

	  .header__menu {
		gap: 7px;
		margin: 0 0 0 0;
	  }

	  .header__search {
		max-width: 180px;
	  }

	  .sort-vpn-row {
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
	  }

	  .model-views-row {
		justify-content: flex-start;
		margin-top: 10px;
	  }

	  .model-profile-row {
		flex-direction: column;
		gap: 18px;
	  }

	  .media-links {
		flex-direction: column;
		gap: 18px;
		height: auto;
		max-width: 100%;
	  }

	  .media-links a {
		max-width: 100%;
		width: 100%;
		flex: none;
	  }

	  .image-gallery {
		grid-template-columns: repeat(2, 1fr);
	  }

	  .other-models-list {
		grid-template-columns: repeat(3, 1fr);
	  }
	}

	@media (max-width: 660px) {
	  .header {
		flex-direction: column;
		align-items: stretch;
		padding: 0 2vw;
		gap: 0;
		min-height: 0;
	  }

	  .header__logo {
		font-size: 1.18rem;
		margin: 8px 0 5px 2px;
	  }

	  .header__menu {
		justify-content: center;
		gap: 2px;
		margin: 2px 0 8px 0;
		font-size: 0.96rem;
	  }

	  .header__search {
		margin: 4px 0 9px 0;
		max-width: 100%;
	  }
	}

	@media (max-width: 650px) {
	  * {
		-webkit-tap-highlight-color: transparent !important;
		outline: none !important;
	  }

	  .header {
		display: none !important;
	  }

	  .mobile-header {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 2000;
		background: #282b30;
		padding: 0 0px;
		box-shadow: 0 6px 24px -6px rgba(50,175,237,0.20);
		border-radius: 0 !important;
	  }

	  .mobile-header-row {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 70px;
		width: 100%;
		padding-left: 18px;
		padding-right: 18px;
		box-sizing: border-box;
	  }

	  .mobile-logo {
		flex: 0 0 auto;
		margin-right: 0;
		padding-left: 2px;
		text-decoration: none !important;
	  }

	  .mobile-header-actions {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		flex: 1 1 auto;
		gap: 7px;
		min-width: 0;
	  }

	  .mobile-btn {
		background: none;
		border: none;
		color: #fff;
		font-size: 1.37rem;
		margin: 0;
		padding: 8px 8px;
		padding-right: 0 !important;
		border-radius: 6px;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		min-width: 40px;
		min-height: 40px;
		box-sizing: border-box;
		transition: background 0.16s, color 0.18s;
	  }

	  .mobile-btn.mobile-stripper i {
		color: #FFD700 !important;
	  }

	  .mobile-btn.mobile-donate i {
		color: #FFD700 !important;
		animation: coin-jump 5s ease-in-out infinite !important;
	  }

	  .mobile-btn.mobile-search-toggle i {
		color: #32afed !important;
	  }

	  .mobile-btn.mobile-burger i {
		color: #fff !important;
		font-size: 2rem !important;
		position: relative;
		top: 1px;
	  }

	  .mobile-btn i {
		font-size: 1.37rem;
		width: 1em;
		height: 1em;
		display: inline-block;
		vertical-align: middle;
	  }

	  .mobile-btn.mobile-burger i {
		width: 1.15em;
		height: 1.15em;
	  }

	  .sort-vpn-row {
		display: none !important;
	  }

	  .mobile-sort {
		display: flex !important;
		flex-direction: row !important;
		align-items: center !important;
		gap: 8px !important;
		justify-content: flex-end !important;
		width: 100% !important;
		padding: 0 20px !important;
		margin: 0px 0 8px 0 !important;
		min-height: 40px;
		box-sizing: border-box;
		background: transparent;
	  }

	  .mobile-sort-label {
		margin-right: auto !important;
	  }

	  .mobile-sort-icon {
		font-size: 1.36rem !important;
		min-width: 39px;
		min-height: 39px;
		padding: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: 6px;
	  }

	  .mobile-sort-icon:last-child {
		margin-right: 0 !important;
	  }

	  .mobile-header-row,
	  .mobile-sort {
		padding-left: 18px;
		padding-right: 18px;
	  }

	  .mobile-header-actions {
		gap: 7px;
	  }

	  .mobile-sort-label {
		margin-right: 12px !important;
		font-size: 1.06rem;
		padding: 0;
	  }

	  .mobile-sort-icon {
		font-size: 1.4rem !important;
		min-width: 40px;
		min-height: 40px;
		padding: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	  }
	  
	  .mobile-telegram-bot-link {
		color: #ffffff;
		text-decoration: none;
		font-size: 1.13rem;
		padding: 5px 0;		
		display: inline-flex;
		align-items: center;
		gap: 12px;
		font-weight: 500;
		transition: background 0.14s, color 0.14s, border-color 0.15s;
		cursor: pointer;
		outline: none;
		background: transparent;
		margin-right: auto; /* Сдвигает ссылку влево */
		margin-bottom: 2px;
		margin-left: 2px;
	  }

	  .mobile-telegram-bot-link i {
		color: #fff;
		font-size: 1.15em;
		min-width: 21px;
		min-height: 21px;
		max-width: 21px;
		max-height: 21px;
		width: 21px;
		height: 21px;
		opacity: 0.87;
		transition: color 0.15s;		
		vertical-align: middle;
		display: inline-block;
		position: relative;
		top: 1px;
	  }

	  .mobile-telegram-bot-link:hover,
	  .mobile-telegram-bot-link:focus {
		border-color: transparent !important;
		background: none !important;
		color: #32afed !important;
	  }

	  .mobile-telegram-bot-link:hover i,
	  .mobile-telegram-bot-link:focus i {
		color: #32afed;
	  }

	  .mobile-views-row {
		display: flex;
		align-items: center;
		justify-content: space-between; /* Изменено с flex-end на space-between */
		width: 100%;
		padding: 5px 22px 0px 20px;
		font-size: 1.1rem;
		gap: 12px;
		color: #fff;
		background: transparent;
		box-sizing: border-box;		
	  }

	  .mobile-views-row .fa-star {
		color: #ffd700;
		font-size: 1.15rem;
		opacity: 0.95;
		margin-right: 0px;
		margin-bottom: 1px;
	  }

	  #mobile-model-views-count {
		font-weight: 500;
		font-size: 1.11rem;
		letter-spacing: 0.5px;
	  }

	  .model-info {
		padding-left: 15px !important;
		padding-right: 15px !important;
		box-sizing: border-box !important;
		width: 100% !important;
		max-width: 100% !important;
		gap: 10px;
	  }

	  .media-links {
		padding-left: 0 !important;
		padding-right: 0 !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		width: 100% !important;
		box-sizing: border-box !important;
	  }

	  .media-links a {
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	  }

	  .model-info .description {
		padding-left: 0 !important;
		padding-right: 0 !important;
		box-sizing: border-box !important;
		width: 100% !important;
		max-width: 100% !important;
		max-height: none !important;
		overflow: visible !important;
		text-align: justify !important;
		font-size: 16px !important;
	  }

	  .model-info,
	  .description,
	  .media-links {
		padding-left: 12px !important;
		padding-right: 12px !important;
		box-sizing: border-box;
	  }

	  .model-card,
	  .image-placeholder {
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box;		
	  }

	  .model-info {
		padding-left: 18px !important;
		padding-right: 18px !important;
		box-sizing: border-box;
	  }

	  .description,
	  .media-links {
		padding-left: 0 !important;
		padding-right: 0 !important;
	  }

	  .model-profile-row {
		gap: 28px;
	  }

	  .model-info .description::-webkit-scrollbar {
		width: 7px;
		background: #22252a;
	  }

	  .model-info .description::-webkit-scrollbar-thumb {
		background: #f46e8f;
		border-radius: 5px;
	  }

	  .description p {
		line-height: 1.4;
	  }

	  .description ul,
	  .description ol,
	  .description li,
	  .description .list-item {
		text-align: left !important;
	  }

	  .footer-text {
		padding-left: 15px !important;
		padding-right: 15px !important;
		box-sizing: border-box !important;
		max-width: 100% !important;
		width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;		
		font-size: 1rem;
	  }	  

	  .footer-black {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
		padding: 10px 15px 15px 15px;
		margin-top: 32px !important;
		border-radius: 0 !important;
	  }

	  .footer-black .footer-content {
		order: 2;
		margin-top: 10px;
		width: 100%;
		text-align: center;
		padding: 0;
	  }

	  .footer-black .age-restriction,
	  .footer-black .lang-switcher-footer {
		order: 1;
		margin-bottom: 0;
		margin-right: 0;
		display: inline-flex;
		align-items: center;
	  }

	  .footer-black .footer-top-row {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		margin-bottom: 12px;
		gap: 5px;
	  }

	  .footer-black .footer-top-row-mobile {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		width: 100%;
		margin-top: 5px;
		margin-bottom: 5px;
		gap: 82px;
	  }

	  .footer-black .footer-content p {
		font-size: 0.75rem;
		line-height: 1.4;
	  }

	  .footer-black .footer-content br {
		display: none;
	  }

	  .footer-black {
		flex-direction: column;
		align-items: center;
		padding: 10px 15px 15px 15px;
		text-align: center;
	  }

	  .footer-black {
		flex-direction: column;
		align-items: stretch;
		gap: 0px;
	  }

	  .footer-black .footer-content {
		justify-content: center;
		padding-right: 0;
	  }

	  .lang-switcher-footer {
		display: flex;
		align-items: center;
		gap: 7px;
	  }

	  .other-models-section {
		margin: 8px 10px 30px 0px;
		padding: 0 15px;
		max-width: 100vw;		
	  }

	  .other-models-section h2,
	  .other-models-list {
		max-width: 100vw;
	  }

	  .other-models-list {
		display: flex !important;
		flex-direction: row !important;
		overflow-x: auto !important;
		overflow-y: hidden !important;
		gap: 13px !important;
		width: 100% !important;
		box-sizing: border-box;
	  }

	  .other-model-card {
		min-width: 50vw;
		max-width: 60vw;
		flex: 0 0 auto !important;
		scroll-snap-align: start;
	  }

	  .other-model-card .name-box {
		font-size: 0.9rem;
		padding: 6px 8px;
	  }

	  .image-gallery {
		grid-template-columns: 1fr;
	  }

	  .image-gallery img {
		max-width: 70vw !important;
		width: 70vw !important;
		height: auto;
		display: block;
		margin: 0 auto;
		border-radius: 8px;
		box-shadow: 0 2px 12px rgba(0,0,0,0.10);
		cursor: zoom-in;
		transition: box-shadow 0.14s;
	  }

	  .image-gallery .image-caption {
		font-size: 0.95rem;
		padding: 0 2vw;
		margin-top: 15px;
	  }

	  .image-gallery2 {
		padding-left: 15px !important;
		padding-right: 15px !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		width: 100% !important;
		box-sizing: border-box !important;
	  }

	  .image-gallery2 img {
		width: 100% !important;
		max-width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		display: block;
		box-sizing: border-box;
	  }

	  .crypto-row {
		display: block;
		align-items: center;
		padding-left: 15px;
		padding-right: 15px;
		margin-bottom: 4px;
		gap: 8px;
		flex-wrap: wrap;
		font-size: 1rem;
	  }

	  .crypto-dot {
		width: 18px;
		height: 18px;
		border-radius: 50%;
		display: inline-block;
		margin-left: 15px;
		margin-right: 3px;
		margin-top: 1px;
		flex-shrink: 0;
	  }

	  .crypto-label {
		font-weight: 500;
		color: #fff;
		margin-right: 2px;
		font-size: 1.08rem;
	  }

	  .crypto-ticker {
		color: #aaa;
		margin-right: 8px;
		font-size: 0.97rem;
	  }

	  .crypto-address {
		margin-left: 0;
		margin-top: 20px;
		margin-bottom: 20px;
		font-size: 1rem;
		word-break: break-all;
		background: #6969694d;
		border-radius: 5px;
		border: 2px solid transparent;
		font-family: monospace;
		display: block;
		width: 100%;
		box-sizing: border-box;
	  }

	  .crypto-header {
		padding-left: 15px !important;
		padding-right: 15px !important;
		box-sizing: border-box;
		display: block;
		width: 100%;
		margin-top: 6px !important;
	  }

	  .help-project {
		padding-left: 15px;
	  }

	  .mobile-header-spacer {
		height: 82px;
		width: 100%;
		display: block;
	  }

	  .model-views-row {
		font-size: 0.99rem;
	  }

	  .sort-vpn-row {
		gap: 7px;
	  }
	}

	@media (max-width: 600px) {
	  .model-views-row {
		font-size: 0.99rem;
	  }

	  .sort-vpn-row {
		gap: 7px;
	  }
	}

	@media (max-width: 450px) {
	  .modal-box {
		padding: 20px 6vw;
		min-width: 0;
	  }
	}

	@media (max-width: 650px) {
	  .footer-text .sum-translation {
		display: block;
		margin-left: 15px;
	  }
	}
	
	@media (min-width: 651px) and (max-width: 1250px) {
  
  /* Курсор «указатель» для кликабельного логотипа */
  .header__logo {
    cursor: pointer;
  }
  .header {
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 15px 20px;
    background: #282b30;
    min-height: 70px;
    box-shadow: 0 6px 24px -6px rgba(50,175,237,0.18);
    border-radius: 0;
    box-sizing: border-box;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  .header__logo {
    grid-column: 1;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    user-select: none;
    margin-right: 0;
    justify-self: start;
    min-width: 130px;
  }
  .header__menu {
    grid-column: 2;
    display: flex !important;
    flex-direction: row;
    justify-content: space-evenly !important;
    align-items: center !important;
    width: 100% !important;
    max-width: none !important;    
    margin: 0 !important;
    padding: 0 !important;
  }
  .header__menu li {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
  }
  .header__menu li a {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    max-width: 48px;
    max-height: 48px;
    border-radius: 50%;
    padding: 0 !important;
    font-size: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    color: #fff !important;
    position: relative;
    overflow: hidden;
    border: none;
    transition: background 0.13s, color 0.14s;
  }
  .header__menu li a *:not(.fa):not(svg):not(.fa-solid):not(.fa-paper-plane):not(.fa-envelope):not(.fa-coins):not(.fa-fire-flame-curved):not(.fa-house) {
    display: none !important;
  }
  .header__menu li a .fa,
  .header__menu li a .fa-solid,
  .header__menu li a svg {
    display: inline-block !important;
    font-size: 1.6rem !important;
    margin: 0 !important;
    color: inherit !important;
    vertical-align: middle;
    pointer-events: none;
    transition: color 0.15s;
  }
  .header__logo,
  .header__menu {
    transform: translateY(-2px);
  }
  .header__menu li a.menu-stripper {
    margin-right: -5px !important;
  }
  .header__menu li a.menu-stripper .fa-fire-flame-curved {
    color: #f46e8f !important;
  }
  .header__menu li a.menu-game .fa-bolt {
    color: #FFD700 !important;   
  }
  .header__menu li a.menu-videochat .fa-play {
    color: #32afed !important;
  }
  .header__menu li a[href$="donate.html"] .fa-coins,
  .header__menu li a[href$="/en/donate-en.html"] .fa-coins  {
    color: #FFD700 !important;
  }
  .header__menu li a[href$="contacts.html"] .fa-envelope {
    color: #fff !important;
  }
  /* Эффекты наведения: убираем подсветку фона для всех пунктов */
  .header__menu li a.menu-stripper:hover,
  .header__menu li a.menu-stripper:focus,
  .header__menu li a.menu-game:hover,
  .header__menu li a.menu-game:focus,
  .header__menu li a.menu-videochat:hover,
  .header__menu li a.menu-videochat:focus,
  .header__menu li a[href$="donate.html"]:hover,
  .header__menu li a[href$="donate.html"]:focus,
  .header__menu li a[href$="/en/donate-en.html"]:hover,
  .header__menu li a[href$="/en/donate-en.html"]:focus,
  .header__menu li a[href$="contacts.html"]:hover,
  .header__menu li a[href$="contacts.html"]:focus,
  .header__menu li a[href$="/en/contacts-en.html"]:hover,
  .header__menu li a[href$="/en/contacts-en.html"]:focus  {
    background: none !important;
    color: #fff !important;
  }
  /* Цвета иконок при наведении */
  .header__menu li a.menu-stripper:hover .fa-fire-flame-curved,
  .header__menu li a.menu-stripper:focus .fa-fire-flame-curved {
    color: #f46e8f !important;
  }
  .header__menu li a.menu-game:hover .fa-bolt,
  .header__menu li a.menu-game:focus .fa-bolt {
    color: #FFD700 !important;
  }
  .header__menu li a.menu-videochat:hover .fa-play,
  .header__menu li a.menu-videochat:focus .fa-play {
    color: #32afed !important;
  }
  .header__menu li a[href$="donate.html"]:hover .fa-coins,
  .header__menu li a[href$="donate.html"]:focus .fa-coins,
  .header__menu li a[href$="/en/donate-en.html"]:hover .fa-coins,
  .header__menu li a[href$="/en/donate-en.html"]:focus .fa-coins  {
    color: #FFD700 !important;
  }
  .header__menu li a[href$="contacts.html"]:hover .fa-envelope,
  .header__menu li a[href$="contacts.html"]:focus .fa-envelope,
  .header__menu li a[href$="/en/contacts-en.html"]:hover .fa-envelope,
  .header__menu li a[href$="/en/contacts-en.html"]:focus .fa-envelope  {
    color: #fff !important;
  }
  .header__search {
    grid-column: 3;
    max-width: 240px;
    min-width: 120px;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-self: end;
  }
  .header__search-box {
    width: 100%;
    background: #282b30;
    border-radius: 7px;
    border: 1px solid #35363a;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    max-width: 100%;
    margin-right: 0;
  }
  .header__search-box input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    padding: 10px 13px;
    font-size: 1.1rem;
    font-family: inherit;
    box-sizing: border-box;
  }
  .header__search-box .search-btn {
    background: none;
    border: none;
    color: #32afed;
    padding: 0 13px;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    flex-shrink: 0;
  }
  .header__search-box .fa-search {
    color: #32afed;
  } 
  .sort-vpn-row {
    padding-left: 20px;
    padding-right: 20px;
	padding-bottom: 20px;
	padding-top: 85px;
    box-sizing: border-box;
	flex-direction: row !important;
    align-items: center !important;
    gap: 14px !important;
    justify-content: space-between !important;
  }  
   .model-views-row {
    margin-top: 0 !important;
  }
  .sort-vpn-link.telegram-bot-link, .model-views-row {
    align-items: center !important;
    display: flex !important;
    gap: 10px !important;
    margin: 0 !important;
    white-space: nowrap !important;
  }
  .container {
    max-width: 100%;
	padding: 0px;
  }
  .sort-vpn-link.telegram-bot-link i.fa-robot {
    font-size: 1.2em;
    min-width: 30px;
    min-height: 30px;
    width: 30px;
    height: 30px;
	padding-top: 3px;
  }

  /* Размер шрифта надписи TelegramBot */
  .sort-vpn-link.telegram-bot-link {
    font-size: 1.2rem;     	
  }

  /* Размер имени модели */
  .model-views-row {
    font-size: 1.2rem;
  }

  /* Размер иконки звезды */
  .model-views-row .fa-star {
    font-size: 1.1em;   
	padding-top: 0px;
  }

  /* Размер счётчика фото */
  .model-views-row #models-total-counter {
    font-size: 1.2rem;  
  }  
  .help-project {
    padding-left: 20px !important;
  }
   .crypto-address {
    word-break: break-all;         /* Переносит длинные слова */
    white-space: normal;           /* Разрешает переносы строк */
    display: inline-block;         /* Чтобы серый фон рос по высоте */
    padding: 10px 10px;            /* Красивые внутренние отступы */
    font-size: 1.07rem;
    max-width: 90%;                /* Не на весь экран, а чуть уже */
    min-width: 0;
    box-sizing: border-box;
    margin-top: 8px;
    margin-bottom: 8px;
    text-align: left;
    vertical-align: middle;
  }
  .crypto-row {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding-left: 20px !important;
	padding-right: 20px !important;
  }
  .crypto-dot {
    margin-left: 0 !important;
    margin-right: 7px !important;
	width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
  }    
  .crypto-header {
	  padding-left: 20px !important;
	  padding-right: 20px !important;
	  box-sizing: border-box;
	  display: block;
	  width: 100%;
	}
	.image-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }
  .other-models-section {
    padding: 0 20px !important; /* Отступы слева и справа для всей секции */
    box-sizing: border-box !important;
	margin-top: 15px;
  } 

  .other-models-list {
    overflow-x: auto !important;
    display: flex !important; /* Модели в ряд */
    gap: 16px; /* Расстояние между моделями */
    scrollbar-width: thin !important;  /* Делает полосу тонкой */
    scrollbar-color: #f46e8f transparent !important;  /* Розовый цвет скролла */
    scroll-snap-type: x mandatory; /* Обязательное пролистывание по оси X */
  }

  .other-models-list::-webkit-scrollbar {
    height: 4px !important;  /* Толщина полосы */
  }

  .other-models-list::-webkit-scrollbar-thumb {
    background-color: #f46e8f !important;  /* Цвет полосы */
    border-radius: 5px !important;  /* Скругленные края */
  }

  .other-models-list::-webkit-scrollbar-track {
    background: transparent !important;  /* Прозрачный фон */
  }

  .other-models-list::-webkit-scrollbar-button {
    display: none !important; /* Убираем стрелки */
  }

  .other-model-card {
    flex: 0 0 auto; /* Модели не сжимаются */
    width: 38%;  /* Делаем карточки чуть меньше, чтобы две с половиной влезли */
    scroll-snap-align: start; /* Прокручиваются по блокам */
  }
   
  .footer-text {
    /* точно такие же отступы по бокам, как у контейнера */
    padding-left: 20px !important;
    padding-right: 20px !important;
	font-size: 1.1rem !important;	
  }
  .footer-black .footer-content p {
    font-size: 0.8rem !important;  /* Можно изменить на нужный размер */   
  }  
   .vpn-link {
    font-size: 1.2rem !important;
    max-width: 220px !important;   
  }
}

.header, .mobile-header{
  background-color: rgba(40, 43, 48, 0.92) !important;
  backdrop-filter: blur(8px) saturate(125%);
  -webkit-backdrop-filter: blur(8px) saturate(125%); /* Safari */
}
@supports not ((backdrop-filter: blur(1px))){
  .header, .mobile-header{ background-color: rgba(40,43,48,0.92) !important; }
}

/* --- Keep envelope icon white on hover (RU & EN contacts) --- */
.header__menu li a[href$="contacts.html"]:hover .fa-envelope,
.header__menu li a[href$="/en/contacts-en.html"]:hover .fa-envelope,
.header__menu li a[href$="contacts.html"]:focus .fa-envelope,
.header__menu li a[href$="/en/contacts-en.html"]:focus .fa-envelope {
  color: #fff !important;
  fill: #fff !important;
}

/* Telegram в ряду под шапкой — иконка остаётся белой и при hover/focus */
.sort-vpn-row .sort-vpn-link i.fa-paper-plane,
.sort-vpn-row .sort-vpn-link i.fa-paper-plane::before {
  color: #fff !important;
}

.sort-vpn-row .sort-vpn-link:hover i.fa-paper-plane,
.sort-vpn-row .sort-vpn-link:hover i.fa-paper-plane::before,
.sort-vpn-row .sort-vpn-link:focus i.fa-paper-plane,
.sort-vpn-row .sort-vpn-link:focus i.fa-paper-plane::before {
  color: #fff !important;
}