/* ================================================================
   ROOT РІР‚вЂќ РЎвЂќР Т‘Р С‘Р Р…РЎвЂ“ Р В·Р СРЎвЂ“Р Р…Р Р…РЎвЂ“ Р Т‘Р В»РЎРЏ Р Р†РЎРѓРЎРЉР С•Р С–Р С• РЎвЂћР В°Р в„–Р В»РЎС“
   ================================================================ */

:root {
  /* Р С™Р С•Р В»РЎРЉР С•РЎР‚Р С‘ Р В°Р С”РЎвЂ Р ВµР Р…РЎвЂљРЎвЂ“Р Р† */
  --accent: #b10256;
  --accent-purple: #8d4af3;
  --green: #22c55e;
  --blue: #3b82f6;
  --gold: #f59e0b;

  /* Р В¤Р С•Р Р…Р С‘ */
  --bg-body: linear-gradient(
    321deg,
    rgb(0, 4, 11) 0%,
    rgb(25, 25, 61) 35%,
    rgb(1, 1, 10) 100%
  );
  --mainGradient: linear-gradient(
    135deg,
    #fff 0%,
    var(--accent-purple) 60%,
    var(--accent) 100%
  );
  --bg-dark: #0d0d12;
  --bg-main-dark: #121217;
  --bg-card: #1c1c20;
  --bg-nav: #1c1c1e;
  --bg-active: #272731;
  --bg-pill: #1c1c1e;

  /* Р вЂР С•РЎР‚Р Т‘Р ВµРЎР‚Р С‘ */
  --border: rgba(255, 255, 255, 0.07);
  --border-pill: #2c2c2e;
  --border-header: #1a1a23;

  /* Р СћР ВµР С”РЎРѓРЎвЂљ */
  --text: #ffffff;
  --text-muted: #888;
  --text-gray: #8e8e93;
  --text-active: #8b85ff;

  /* Р вЂњРЎР‚Р В°Р Т‘РЎвЂ“РЎвЂќР Р…РЎвЂљР С‘ Р С”Р Р…Р С•Р С—Р С•Р С” */
  --gradient-purple: linear-gradient(135deg, #5231f8 0%, #872ef2 100%);
  --gradient-search: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
  --gradient-card: linear-gradient(135deg, #a855f7 0%, #813ead 100%);

  /* Р В Р В°Р Т‘РЎвЂ“РЎС“РЎРѓР С‘ */
  --radius-card: 14px;
  --radius-badge: 20px;
  --radius-btn: 6px;

  /* Р С’Р Р…РЎвЂ“Р СР В°РЎвЂ РЎвЂ“РЎвЂ” */
  --transition: 0.22s ease;
}

/* ================================================================
   BASE
   ================================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Philosopher", sans-serif;
  font-weight: 400;
  background: var(--bg-body);
  color: var(--text);
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}

.tg-banner-wrap-wrapper {
  display: flex;
  justify-content: center;
}
.tg-banner-wrap {
  padding: 14px;
  background: #1a1a2e;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  margin: 20px;
  max-width: 500px;
}
.tg-border-runner {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  pointer-events: none;
  z-index: 0;
}
.tg-border-runner::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: conic-gradient(
    transparent 0,
    transparent 60%,
    #cb2845 75%,
    var(--accent) 85%,
    transparent 100%
  );
  animation: spin 2.5s linear infinite;
}
.tg-border-runner::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 12px;
  background: #1a1a2e;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.tg-inner {
  justify-content: center;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.tg-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #229ed9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tg-icon-wrap svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}
.tg-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
}
.tg-sub-label {
  font-size: 11px;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 4px;
  white-space: nowrap;
}
.tg-subs {
  font-size: 12px;
  color: #4ade80;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}
.tg-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
#models {
  scroll-margin-top: 200px;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

/* //================================ */
.hero-contact-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  overflow: hidden;
  letter-spacing: 0.04em;
  transition:
    transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.2s;
}

/* Р РЋР Р†РЎвЂ“РЎвЂљР В»Р С‘Р в„– Р С•Р Р†Р ВµРЎР‚Р В»Р ВµР в„– Р С—РЎР‚Р С‘ РЎвЂ¦Р С•Р Р†Р ВµРЎР‚РЎвЂ“ */
.hero-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s;
  background: rgba(255, 255, 255, 0.18);
}
.hero-btn:hover::before {
  opacity: 1;
}
.hero-btn:hover {
  transform: translateY(-3px) scale(1.03);
}
.hero-btn:active {
  transform: scale(0.97);
}

.btn-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
.btn-label {
  position: relative;
  z-index: 1;
}

/* Telegram */
.hero-btn--tg {
  color: #fff;
  box-shadow: 0 4px 18px rgba(34, 158, 217, 0.35);
  background: var(--gradient-purple);
}

.hero-btn--tg:hover {
  box-shadow: 0 8px 28px rgba(34, 158, 217, 0.5);
}

/* Р СџРЎС“Р В»РЎРЉРЎРѓРЎС“РЎР‹РЎвЂЎР Вµ Р С”РЎвЂ“Р В»РЎРЉРЎвЂ Р Вµ */
.hero-btn--tg::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  animation: tg-ring 2.4s ease-out infinite;
}
@keyframes tg-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 158, 217, 0.55);
  }
  60% {
    box-shadow: 0 0 0 10px rgba(34, 158, 217, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 158, 217, 0);
  }
}

/* Р вЂ Р С”Р С•Р Р…Р С”Р В° Р В»Р ВµРЎвЂљР С‘РЎвЂљРЎРЉ Р Р†Р С—РЎР‚Р В°Р Р†Р С• */
.hero-btn--tg .btn-icon svg {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero-btn--tg:hover .btn-icon svg {
  transform: translateX(3px) scale(1.15);
}

/* WhatsApp */
.hero-btn--wa {
  color: #fff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  background: linear-gradient(135deg, #084d0d 0%, #2ef252 100%);
}
.hero-btn--wa:hover {
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

/* Р вЂ Р С”Р С•Р Р…Р С”Р В° Р С•Р В±Р ВµРЎР‚РЎвЂљР В°РЎвЂќРЎвЂљРЎРЉРЎРѓРЎРЏ */
.hero-btn--wa .btn-icon svg {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero-btn--wa:hover .btn-icon svg {
  transform: rotate(-12deg) scale(1.2);
}

/* PWA */
.hero-btn--pwa {
  background: rgba(255, 255, 255, 0.07);
  color: #aaa;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-btn--pwa:hover {
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.08);
}

/* Р вЂ Р С”Р С•Р Р…Р С”Р В° bounces */
.hero-btn--pwa .btn-icon svg {
  animation: pwa-bounce 2s ease-in-out infinite;
}
@keyframes pwa-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}

.models-section__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0 0 6px;
  background: var(--mainGradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  padding: 50px 20px 10px;
}
/* //============================================== */

.tg-join-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.tg-join-btn svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}
.pills-scroll-container {
  overflow: hidden;
  padding: 5px 0;
}

.pills-scroll-container::-webkit-scrollbar {
  display: none;
}

.header-pills-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 10px 0;
  justify-content: center;
}

.mini-globe {
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #3b74e6, #55c963);
  border-radius: 50%;
  position: relative;
}

.mini-globe::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--accent-purple);
  border-radius: 50%;
}

.nav-bar {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 440px;
  background-color: var(--bg-nav);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text-gray);
  font-size: 10px;
  transition: var(--transition);
  position: relative;
}

.nav-item span {
  margin-top: 4px;
  font-weight: 500;
}

.nav-item.active {
  color: var(--text-active);
}

.nav-item.active .icon-container {
  background-color: var(--bg-active);
  padding: 6px 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-item.active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 5px;
  height: 5px;
  background-color: var(--accent-purple);
  border-radius: 50%;
}

.search-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -35px;
}

.search-circle {
  width: 58px;
  height: 58px;
  background: var(--gradient-search);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid var(--bg-nav);
  box-shadow: 0 5px 15px rgba(124, 77, 255, 0.3);
  margin-bottom: 4px;
}

.search-label {
  font-size: 10px;
  font-weight: bold;
  text-transform: lowercase;
}

.nav-item > svg,
.icon-container > svg,
.search-circle > svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
}

.models-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px 40px 10px;
  min-height: 60vh;
}

/* --- Breadcrumb --- */
.main-breadcrumb {
  max-width: 860px;
  margin: 0 auto;
  padding: 16px 20px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 17px;
  color: var(--text-muted);
}

.main-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.main-breadcrumb a:hover {
  color: var(--accent-purple);
}

.main-breadcrumb__sep {
  opacity: 0.4;
}

.main-breadcrumb__current {
  color: var(--accent-purple);
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}

.mc {
  position: relative;
  cursor: pointer;
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  overflow: hidden;
}

.mc:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.mc__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--gradient-card);
  border-radius: var(--radius-card);
  flex-shrink: 0;
  padding: 1px;
}

.mc__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-card);
  transition: transform var(--transition);
}

.mc:hover .mc__img {
  transform: scale(1.05);
}

.mc__no-photo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  background: var(--bg-card);
}

/* --- Р вЂњР В°Р В»Р С•РЎвЂЎР С”Р В° Available --- */
.mc__available-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.55);
  flex-shrink: 0;
}

.mc__check-icon {
  stroke: var(--text);
  display: block;
}

/* --- Р СџР ВµРЎР‚Р ВµР С–Р В»РЎРЏР Т‘Р С‘ --- */
.mc__views {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--text);
  font-size: 12px;
  line-height: 1;
  padding: 4px 9px;
  border-radius: var(--radius-badge);
  pointer-events: none;
}

.mc__views svg {
  flex-shrink: 0;
  opacity: 0.9;
}

/* --- Р вЂ Р Р…РЎвЂћР С• Р С—РЎвЂ“Р Т‘ РЎвЂћР С•РЎвЂљР С• --- */
.mc__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 6px 6px;
  gap: 6px;
  flex-shrink: 0;
}

.mc__name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}

.mc__price {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}

.mc__price-currency {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 2px;
}

.pills-scroll-container {
  overflow: hidden;
  padding: 5px 0;
}

.pills-scroll-container::-webkit-scrollbar {
  display: none;
}

.header-pills-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 10px 0;
}

.pill-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: var(--bg-pill);
  padding: 8px 16px;
  border-radius: var(--radius-badge);
  font-size: 14px;
  color: #ccc;
  text-decoration: none;
  border: 1px solid var(--border-pill);
  white-space: nowrap;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.pill-tag.active {
  background: var(--mainGradient);
  border-color: var(--accent);
  color: #fff;
}

.mini-globe {
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #3b74e6, #55c963);
  border-radius: 50%;
  position: relative;
}

.mini-globe::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--accent-purple);
  border-radius: 50%;
}

/* ================================================================
   Р СџР С’Р вЂњР вЂ Р СњР С’Р В¦Р вЂ Р Р‡
   ================================================================ */

.pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px 0 16px;
  flex-wrap: wrap;
}

.pag-btn,
.pag-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  cursor: pointer;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
  text-decoration: none;
}

.pag-btn:hover,
.pag-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text);
}

.pag-dots {
  color: var(--text-muted);
  font-size: 14px;
  padding: 0 4px;
  user-select: none;
}

/* ================================================================
   Р С™Р С›Р вЂєР С’Р вЂ“
   ================================================================ */

.v3-collage-wrapper {
  width: 100%;
  padding: 40px 0 150px 0;
  overflow: hidden;
}

.v3-collage-container {
  position: relative;
  width: 100%;
  height: 650px;
}

.v3-collage-item {
  position: absolute;
  cursor: pointer;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition);
  animation: collage-float linear infinite alternate;
  width: var(--d-w);
  top: var(--d-t);
  left: var(--d-l);
  aspect-ratio: 2 / 3;
}

.v3-collage-item:hover {
  transform: scale(1.06);
}

.v3-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-card);
}

@keyframes collage-float {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/* ================================================================
   Р С’Р вЂќР С’Р СџР СћР ВР вЂ™
   ================================================================ */

@media (min-width: 1400px) {
  .models-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 1399px) {
  .models-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1199px) {
  .models-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }

  .v3-collage-item {
    width: calc(var(--d-w) * 1.1);
  }
}

@media (max-width: 768px) {
  .header-pills-row {
    justify-content: stretch;
  }

  .header-mobile-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
  }

  .header-main-bar-actions {
    display: flex;
    gap: 15px;
    align-items: center;
  }

  .models-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .mc__info {
    padding: 7px 5px 5px;
  }

  .mc__available-badge {
    width: 22px;
    height: 22px;
  }

  .pagination-container {
    gap: 6px;
    padding: 24px 0 12px;
  }

  .pag-btn,
  .pag-link {
    min-width: 34px;
    height: 34px;
    font-size: 13px;
    padding: 0 10px;
  }

  .v3-collage-item {
    width: var(--m-w) !important;
    top: var(--m-t) !important;
    left: var(--m-l) !important;
  }
}

@media (max-width: 599px) {
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }

  .mc__views {
    font-size: 11px;
    padding: 3px 7px;
  }

  .v3-collage-wrapper {
    padding: 24px 0;
  }

  .v3-collage-container {
    height: 360px;
  }

  .v3-collage-item {
    width: var(--m-w) !important;
    top: var(--m-t) !important;
    left: var(--m-l) !important;
    border-radius: 10px;
  }

  .v3-collage-item img {
    border-radius: 10px;
  }
}
@media (max-width: 630px) {
  .header-btn > span {
    display: none;
  }
  .header-btn {
    border-radius: 50%;
    padding: 8px;
  }
  .tg-join-btn {
    padding: 10px;
  }
}
@media (max-width: 400px) {
  .tg-join-btn {
    font-size: 11px;
  }
}
.nav-item {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  font-size: 14px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-item > span {
  text-align: center;
  font-size: 13px;
}

/* ===== Pulse (Watch Video) ===== */
.btn-v1-pulse {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e8002d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-v1-pulse::before,
.btn-v1-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #e8002d;
  opacity: 0.5;
  animation: pulse-ring 2s ease-out infinite;
}
.btn-v1-pulse::after {
  animation-delay: 0.6s;
  opacity: 0.3;
}
@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* ===== Gallery Cubes ===== */
.btn-gallery-cubes {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cubes-grid {
  display: grid;
  grid-template-columns: repeat(2, 9px);
  grid-template-rows: repeat(2, 9px);
  gap: 3px;
}
.cube {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: #ff8800;
  animation: cube-slide 1.6s ease-in-out infinite;
}
.cube:nth-child(1) {
  animation-delay: 0s;
}
.cube:nth-child(2) {
  animation-delay: 0.2s;
}
.cube:nth-child(3) {
  animation-delay: 0.4s;
}
.cube:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes cube-slide {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  25% {
    opacity: 0.4;
    transform: scale(0.7);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  75% {
    opacity: 0.6;
    transform: scale(0.85);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.site-footer {
  background: var(--bg-main-dark);
  border-top: 1px solid var(--border-header);
  padding: 40px 20px 128px;
}

.site-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.site-footer__logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0 0 6px;
  background: linear-gradient(
    135deg,
    #fff 0%,
    var(--accent-purple) 60%,
    var(--accent) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-footer__tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.site-footer__nav {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer__nav a {
  color: var(--text-muted);
  font-size: 13px;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: var(--radius-badge);
  border: 1px solid var(--border);
  background: var(--bg-pill);
  transition: var(--transition);
}

.site-footer__nav a:hover {
  color: var(--text);
  border-color: var(--border-pill);
}

.site-footer__divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 20px;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer__age {
  display: flex;
  align-items: center;
  gap: 10px;
}

.age-badge {
  background: var(--accent);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-badge);
  letter-spacing: 0.5px;
}

.age-text {
  font-size: 12px;
  color: var(--text-muted);
}

.site-footer__copy {
  font-size: 12px;
  color: #444;
}
.footer-link.active {
  background: var(--mainGradient);
  border-color: var(--accent);
  color: #fff;
}

.language-switcher {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 10050;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 34px;
    padding: 0 10px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 8px;
    background: rgba(16,16,18,.78);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    letter-spacing: 0;
    backdrop-filter: blur(12px);
}

.language-switcher:hover {
    color: #fff;
    border-color: rgba(255,255,255,.4);
    background: rgba(30,30,34,.92);
}
.mc__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  max-width: calc(100% - 52px);
  pointer-events: none;
}

.mc__badge {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 4px 8px;
  border-radius: var(--radius-badge);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.62);
  color: var(--text);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mc__badge--ladyboy {
  background: linear-gradient(135deg, rgba(203,40,69,.94), rgba(135,46,242,.9));
  border-color: rgba(255,255,255,.22);
}

.mc__badge--new {
  background: rgba(34,197,94,.9);
  color: #07130b;
  border-color: rgba(255,255,255,.22);
}

.mc__badge--private {
  background: rgba(255,255,255,.88);
  color: #161616;
  border-color: rgba(0,0,0,.08);
}

.mc__badge--verified {
  background: rgba(82,49,248,.9);
  border-color: rgba(255,255,255,.2);
}