:root {
  /* Colors */
  --main-color: #ff7a18;
  --bg-dark: #111115;
  --bg-panel: #1f1f1f;
  --bg-hover: #1a1a20;
  --bg-input: #c8ced8;
  --bg-input-focus: #d6dce6;

  --text-main: #ffffff;
  --text-muted: #aaaaaa;
  --text-dim: #999999;
  --text-gray: #9f9f9f;

  --accent-primary: #bb4f00;
  --accent-secondary: #ff9600;
  --accent-gradient: linear-gradient(
          90deg,
          var(--accent-primary),
          var(--accent-secondary)
  );

  --danger: #ff3b5c;
  --border-color: rgba(255, 255, 255, 0.08);
  --divider-color: #1a1d2a;

  /* Spacing & Borders */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --main-padding: 20px;

  /* Transitions */
  --transition-fast: 0.2s;
  --transition-base: 0.35s;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: #1e1e1e;
}
::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 8px;
  border: 2px solid #1e1e1e;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #aaa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: #888 #1e1e1e;
}

body {
  background: var(--bg-dark);
  color: var(--text-main);
  font-family: system-ui;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

/* GRID */

.app {
  display: grid;
  grid-template-columns: 220px 1fr 70px;
  grid-template-rows: 1fr;
  height: 100vh;
  height: 100dvh;
}

/* SIDEBAR */

.sidebar {
  background: var(--bg-dark);
  padding: var(--main-padding);
  display: flex;
  flex-direction: column;
}

.logo {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--text-main);
  text-decoration: none;
  margin-left: 10px;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25),
    0 2px 6px rgba(0, 0, 0, 0.75),
    0 8px 24px rgba(0, 0, 0, 0.5);

  animation: flicker 5s infinite;
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  92% { opacity: 1; }
  94% { opacity: 0.6; }
  96% { opacity: 1; }
  98% { opacity: 0.8; }
}

@media (max-width: 900px) {
  .logo {
    position: absolute;
    top: 6px;
    left: 16px;
    margin-left: 0;
    z-index: 40;
    font-size: 32px;
    pointer-events: auto;
  }
}

/* MENU */

.menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.menu a:hover,
.menu a.active {
  background: var(--bg-hover);
  color: var(--text-main);
}

.icon {
  width: 22px;
  height: 22px;
}

/* PLAYER */

.player-area {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.swiper {
  width: 100%;
  min-height: 0;
  height: 100%;
  padding: 20px 60px;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-right: 110px;
  overflow: hidden;
  touch-action: pan-y;
}

@media (max-width: 900px) {
  .swiper {
    padding: 0;
  }
}

/* VIDEO */
.video {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}

.container-model-video {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 56.25%;
}

.player-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.player-container iframe {
  pointer-events: none;
}

.player-container img {
  -webkit-filter: blur(10px) brightness(0.6);
  filter: blur(10px) brightness(0.6);
  height: unset !important;
  min-height: unset !important;
  min-width: unset !important;
  transform: scale(1.04);
  transform-origin: center;
}

.player-container video {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}

.video::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  pointer-events: none;
}

/* MODEL INFO */

.model-info {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 5;
  opacity: 0;
  transition: opacity var(--transition-base) ease;
  will-change: opacity;
  backface-visibility: hidden;
}

.swiper-slide-active .model-info {
  opacity: 1;
}

.model-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.model-live {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: var(--radius-md);
  color: var(--text-main);
  background: var(--danger);
  box-shadow: 0 0 8px rgba(255, 60, 60, 0.5);
  overflow: hidden;
}

.model-live::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );
  transform: skewX(-20deg);
  animation: liveShine 2.8s infinite;
}

@keyframes liveShine {
  0% {
    left: -60%;
  }
  100% {
    left: 140%;
  }
}

.model-live-people {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #ddd;
}

.viewers-icon {
  width: 14px;
  height: 14px;
  opacity: 0.85;
}

.viewer-count {
  display: flex;
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  color: var(--text-main);
}

.viewer-digit {
  height: 1em;
  width: 1ch;
  overflow: hidden;
  position: relative;
}

.viewer-digit-inner {
  position: absolute;
  top: 0;
  left: 0;
  transition: transform var(--transition-base) ease;
}

.viewer-digit-inner span {
  display: block;
  height: 1em;
}

.model-name {
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
}

.model-country {
  width: 18px;
  height: 18px;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
}

.model-country img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  transition-delay: 0.15s;
}

.model-tag {
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 4px 10px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  color: #ddd;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
  text-decoration: none;
}

.model-tag:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--text-main);
  text-decoration: none;
}

.model-tags:not(.open) .model-tag:nth-child(n + 5):not(.toggle-tags) {
  display: none;
}

.toggle-icon {
  width: 14px;
  height: 14px;
  display: block;
}

.model-tag.toggle-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
}

/* REACTIONS */
.live-reactions-wrap {
  position: absolute;
  bottom: 90px;
  left: 15px;
  width: 140px;
  height: 420px;
  pointer-events: none;
  z-index: 10;
  overflow: visible;
}

.live-reaction {
  position: absolute;
  bottom: 0;
  font-size: 22px;
  opacity: 0;
  animation: reactionFloat linear forwards;
}

@keyframes reactionFloat {
  0% {
    transform: translate(0, 0) rotate(var(--r));
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  25% {
    transform: translate(-10px, -80px) rotate(calc(var(--r) + 10deg));
  }
  50% {
    transform: translate(10px, -160px) rotate(calc(var(--r) - 8deg));
  }
  75% {
    transform: translate(-6px, -240px) rotate(calc(var(--r) + 6deg));
    opacity: 1;
  }
  100% {
    transform: translate(0, -340px) rotate(calc(var(--r) - 4deg));
    opacity: 0;
  }
}

/* SLIDE ACTIONS */

.slide-actions {
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -172px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;

  will-change: opacity;
  backface-visibility: hidden;
}

.model-join {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.join-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 4px solid #ddd;
  object-fit: cover;
}

.join-label {
  color: var(--text-main);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-lg);
  background: var(--accent-gradient);
  transition: 0.25s;
}

.model-join:hover .join-label {
  filter: brightness(1.1);
}

.action {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  user-select: none;
}

.action svg {
  width: 32px;
  height: 32px;
  transition: transform .18s ease, color .18s ease;
}

.action svg, .action span, .model-live-people {
  filter: drop-shadow(2px 2px 3px #000);
}

.likes-count {
  display: inline-block;
  transition: 0.25s ease;
}

.action.likes.liked svg {
  color: var(--danger, #ff2b2b);
  transform: scale(1.15);
}

.likes-count.likes-bump {
  transform: scale(1.25);
}

.action.likes:hover svg {
  transform: scale(1.08);
}

.action.likes.liked svg {
  animation: likePulse .35s ease;
}

.action.likes {
  gap: 6px;
}

@keyframes likePulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.25); }
  70% { transform: scale(0.95); }
  100% { transform: scale(1.15); }
}

/* NEXT MODEL */
.next-live {
  margin-top: 12px;
  cursor: pointer;
  align-items: center;
}

.next-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  padding: 4px;
}

.next-avatar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(#ff4fd8, var(--accent-primary), #00eaff, #ff4fd8);
  animation: nextRing 4s linear infinite;
}

@keyframes nextRing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.next-avatar img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.next-label {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 12px;
  /*color: var(--text-muted);*/
  margin-top: 4px;
}

.action .next-arrow {
  width: 20px;
  height: 20px;
  color: #d442ff;
}

/* ARROWS */

.nav-arrows {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.25);
  color: #e9ecf1;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
  transform: rotate(90deg);
}

/* MOBILE LAYOUT */

@media (max-width: 1200px) {
  .app {
    grid-template-columns: 220px 1fr;
    grid-template-rows: 1fr;
  }
}

@media (max-width: 900px) {
  .app {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 60px;
  }

  .sidebar {
    grid-row: 2;
    height: 60px;
    border-top: 1px solid var(--divider-color);
    padding: 0;
    align-items: center;
    justify-content: space-around;
  }

  .player-area,
  .content-area {
    grid-row: 1;
  }

  .menu {
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
  }

  .menu a {
    flex-direction: column;
    gap: 3px;
    font-size: 12px;
  }

  .swiper-slide {
    padding-right: 0;
  }

  .slide-actions {
    right: 12px;
    bottom: 120px;
    top: auto;
    transform: none;
  }

  .nav-arrows {
    display: none;
  }

  .sidebar-login,
  .sidebar-links,
  .sidebar-company {
    display: none;
  }

  .video {
    border-radius: 0;
    position: static;
  }
}

/* LOGIN PANEL */

.login-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--bg-panel);
  z-index: 200;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(100%);
  transition:
    transform var(--transition-base) ease,
    opacity var(--transition-base) ease;
}

.login-container.is-open {
  opacity: 1;
  transform: translateX(0);
}

.login-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
}

.login-logo {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.login-close {
  font-size: 28px;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.login-close:hover {
  color: var(--text-main);
}

.login-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.login-box {
  width: 304px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.login-box h2 {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.login-box input {
  background: var(--bg-input);
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 18px !important;
  touch-action: manipulation;
  outline: none;
  transition: var(--transition-fast);
}

.login-box input:focus {
  background: var(--bg-input-focus);
}

.reset-link {
  text-align: center;
  font-size: 13px;
  color: #bbb;
  cursor: pointer;
}

.reset-link:hover {
  color: var(--text-main);
}

.login-btn {
  background: var(--accent-gradient);
  border: none;
  padding: 14px;
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: 0.25s;
}

.login-btn:hover {
  filter: brightness(1.1);
}

.login-box .g-recaptcha {
  margin: 0 auto;
}

.google-btn {
  background: #eaeaea;
  border: none;
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
}

.google-btn img {
  width: 18px;
}

.login-footer {
  padding: 30px;
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.login-footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.login-footer a:hover {
  color: var(--text-main);
}

.login-footer span {
  margin-top: 10px;
  font-size: 12px;
  color: #777;
}

@media (max-width: 768px) {
  .login-logo {
    font-size: 32px;
    color: var(--text-main);
    font-weight: 900;
    text-decoration: none;
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 0.25),
      0 2px 6px rgba(0, 0, 0, 0.75),
      0 8px 24px rgba(0, 0, 0, 0.5);
  }
  .login-header {
    padding: 6px 16px 16px;
  }
  .login-footer {
    font-size: 12px;
    padding: 20px;
  }
}


/* AUTH SLIDER */

.auth-slider{
  position:relative;
  width:100%;
  overflow:hidden;
}

.auth-view{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.auth-view form{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.auth-view a{
  color: var(--text-main);
}

.auth-view{
  position:absolute;
  top:0;
  left:0;
  width:100%;

  opacity:0;
  transform:translateX(40px);

  transition:
          transform .35s cubic-bezier(.4,0,.2,1),
          opacity .25s ease;

  pointer-events:none;
}

.auth-view.active{
  opacity:1;
  transform:translateX(0);
  pointer-events:auto;
  position:relative;
}

.auth-view.exit-left{
  transform:translateX(-40px);
  opacity:0;
}

.auth-view.exit-right{
  transform:translateX(40px);
  opacity:0;
}

.switch-auth{
  margin-top:14px;
  text-align:center;
  font-size:14px;
}

.switch-auth a{
  color:var(--accent-secondary);
  cursor:pointer;
  font-weight:500;
}

/* USER PANEL */

.user-card{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.user-head{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px;
  background:#373737;
  border-radius:var(--radius-md);
  backdrop-filter: blur(10px);
}

.user-avatar{
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--accent-gradient);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:18px;
  color:#fff;
}

.user-info{
  display:flex;
  flex-direction:column;
}

.user-greet{
  font-size:16px;
  color:#aaa;
}

.user-name{
  font-size:20px;
  font-weight:600;
}

.user-menu{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.user-link{
  display:flex;
  align-items:center;
  justify-content:space-between;

  background:#373737;
  padding:14px 16px;

  border-radius:var(--radius-md);

  text-decoration:none;
  color:var(--text-main);

  font-size:15px;
  transition:.2s;
}

.user-link:hover{
  background: #1a1a1f;
  transform:translateX(4px);
}

.user-link.admin{
  background:linear-gradient(135deg,#ff3d81,#ff8c42);
}

.user-logout a{
  display:block;
  text-align:center;

  padding:12px;
  border-radius:var(--radius-md);

  background:#1a1a1f;

  color:#aaa;
  text-decoration:none;
  font-size:14px;

  transition:.2s;
}

.user-logout a:hover{
  color:#fff;
  background:#25252b;
}

/* SIDEBAR LOGIN BUTTON */

.sidebar-login {
  margin-top: 20px;
}

.sidebar-login-btn {
  width: 100%;
  border: none;
  border-radius: 18px;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-main);
  background: var(--accent-gradient);
  transition: 0.25s;
}

.sidebar-login-btn:hover {
  filter: brightness(1.1);
}

.sidebar-links {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.sidebar-links a {
  color: #9a9a9a;
  text-decoration: none;
  line-height: 1.4;
}

.sidebar-links a:hover {
  color: var(--text-main);
}

.sidebar-links .report {
  color: #ff4444;
  margin-top: 6px;
}

.sidebar-company {
  margin-top: 16px;
  font-size: 11px;
  color: var(--text-gray);
  line-height: 1.4;
}

/* LOADER */

.player-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  border-radius: 50%;
  background: conic-gradient(
    var(--accent-primary),
    var(--accent-secondary),
    var(--accent-primary)
  );
  animation: loaderSpin 1s linear infinite;
  z-index: 5;
}

.player-loader::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 36px;
  height: 36px;
  background: var(--bg-dark);
  border-radius: 50%;
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

.player-loader.hidden {
  display: none;
}

/* CONTENT AREA */

.content-scroll {
  position: relative;

  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.content-area {
  color: #ffffffe5;
  width: 100%;
  max-width: 1024px;

  font-weight: 500;

  margin: 0 auto;

  padding: 40px 16px 30px;
}

.content-area .preformatted {
  color: #ffffff99;
  font-weight: 500;
  font-size: 12px;
  line-height: 24px;
  margin-bottom: 24px;
  box-sizing: border-box;
  white-space: pre-wrap;
}

.content-area h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-main);
}

.content-area h2 {
  font-size: 22px;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--text-main);
}

.content-area p {
  line-height: 1.7;
  margin-bottom: 14px;
  color: #ffffffcc;
}

.content-area ul, .content-area ol {
  margin: 16px 0 16px 20px;
}
.content-area li {
  margin-bottom: 10px;
  line-height: 1.6;
}
.content-area a {
  color: var(--accent-secondary);
  text-decoration: none;
}
.content-area a:hover {
  text-decoration: underline;
}

.content-area hr {
  border: none;
  height: 1px;
  background: #6f6f6f99;
  margin: 40px 0;
}

/* MY FAVOURITES */

.content-box {
  color: #ffffffe5;
  width: 100%;
  max-width: 1024px;
  font-weight: 500;
  padding: 40px 0 30px;
  margin: 0 auto;
}

.content-box h1 {
  margin: 10px;
}
.models-list {
  column-gap: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(225px, auto));
  margin: 10px;
  row-gap: 10px;
}
.models-list .model {
  position: relative;
  aspect-ratio: 225/145;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

@media screen and (max-width: 560px) {
  .content-box .models-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.models-list .logo-image {
  background-origin: content-box;
  background-repeat: no-repeat;
  background-size: contain;
  height: 30px;
}

.models-list .logo-image.logo-source {
  width: 70px;
}

.container-model .model:hover .model-name {
  opacity: .8
}

.container-model .model:hover .logo-platform {
  opacity: 1
}

/* MODELS LIST */
.container-model .model .posts__thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
  transition: .5s;
}
.container-model .model:hover .posts__thumb img {
  filter: brightness(120%);
  transform: scale(1.05);
}

figure {
  margin: 0
}

.models-list .model-name {
  background-color: #303040;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  opacity: .6;
  padding: 5px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.models-list .model-title {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  text-align: left;
}

.models-list .model-title a:link, .models-list .model-title a:visited {
  color: #fff;
  text-decoration: none;
}

.models-list .model-title a:hover {
  text-decoration: none;
}

.models-list .model-country img {
  vertical-align: middle;
  display: inline-block;
  height: 16px;
}

.models-list .logo-platform,
.models-list .logo-platform-desktop {
  padding: 5px;
  position: absolute;
  z-index: 100
}

.models-list .logo-platform {
  opacity: .85
}

/* NEW STATUS */
.models-list .online-cam {
  position: absolute;
  top: 24px;
  left: 7px;
  z-index: 25;

  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.pulse-wave {
  background-color: #93D000;
}

.pulse-wave::before,
.pulse-wave::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: rgba(147, 208, 0, 0.5);
  animation: wavePulse 1.8s infinite ease-out;
}

.pulse-wave::after {
  animation-delay: 0.9s;
}

@keyframes wavePulse {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(2.5); opacity: 0; }
  100% { opacity: 0; }
}

.offline {
  background-color: #d00000;
}
/* END STATUS */

/* VERTICAL FIXES */

/* =========================
   BASE FULL HEIGHT
========================= */

.player-area,
.swiper,
.swiper-wrapper,
.swiper-slide {
  height: 100vh;
  height: 100dvh;
}

.swiper {
  padding: 0 80px;
}

/* =========================
   SLIDE
========================= */

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-shrink: 0;
  padding: 0;
}

/* =========================
   VIDEO WRAPPER
========================= */

.video {
  position: relative;
  width: 100%;
  height: 100%;
}

/* =========================
   MAIN VIDEO CONTAINER
========================= */

.container-model-video {
  position: relative;

  width: 100%;
  height: 100%;
  max-height: 100vh;

  /* 🔥 ключ — ограничиваем ширину под вертикаль */
  max-width: calc(100vh * 9 / 16);

  margin: 0 auto;
  background: #000;
  overflow: hidden;
}

/* =========================
   PLAYER LAYER
========================= */

.player-container {
  position: absolute;
  inset: 0;
  overflow: hidden; /* 💥 стабилизирует iframe */
}

/* iframe всегда главный слой */
.player-container iframe {
  position: relative;
  z-index: 2;

  width: 100%;
  /*height: 102%;*/ /* 💥 убирает микро-щели */
  height: calc(100% + 1px);

  display: block;
  background: #000;

  transform: translateZ(0); /* фикс Chrome */
  backface-visibility: hidden;

  vertical-align: top;
}

/* loader поверх */
.player-loader {
  z-index: 3;
}

.slide-actions {
  z-index: 10;
}

/* =========================
   SWIPER DESKTOP PADDING
========================= */

.swiper {
  padding: 0 170px 0 20px;
}

.swiper-wrapper {
  align-items: center;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

  .swiper {
    padding: 0;
  }

  .swiper-slide {
    padding: 0;
  }

  .player-area {
    padding-bottom: 60px;
  }

  .sidebar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 50;
  }

  .logo {
    position: fixed;
    top: 7px;
    left: auto;
    right: auto;
  }

  .model-info {
    bottom: 76px;
  }

  /* на мобиле во всю ширину */
  .container-model-video {
    max-width: 100%;
  }
}

/* =========================
   DESKTOP (VERTICAL CENTER)
========================= */

@media (min-width: 900px) {
  .swiper-slide {
    max-width: calc(100vh * 9 / 16);
    padding: 20px 0;
    overflow: visible;

  }
  .container-model-video {
    padding-bottom: 0;
    max-width: calc(100vh * 9 / 16);
  }
}

@media (max-width: 1200px) {
  .nav-arrows {
    display: none;
  }

  .swiper {
    padding: 0;
  }
}

@media (min-width: 1200px) {
  .slide-actions {
    right: -80px;
  }
}

@media (min-width: 1560px) {
  .swiper-slide {
    padding: 75px 0;
  }
}

/* REMOVE MODEL NAME */
.left--qd\+im {
  display: none !important;
}

/* REPORT MODEL */
.report-container {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 300;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;
  transition: .3s;
}

.report-container.is-open {
  opacity: 1;
  pointer-events: auto;
}

.report-inner {
  width: 420px;
  max-width: 95%;
  background: var(--bg-panel);
  border-radius: var(--radius-md);
  padding: 20px;
}

.report-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.report-close {
  cursor: pointer;
  font-size: 20px;
}

.report-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.report-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

/* SUCCESS */

.report-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 30px 10px;
  text-align: center;
}

.report-success-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}

.report-success-text {
  font-size: 15px;
  color: var(--text-main);
}

.report-body label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.login-box select,
.login-box textarea {
  background: var(--bg-input);
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 16px;
  outline: none;
  transition: var(--transition-fast);
  width: 100%;
}

.report-cancel-btn {
  background: #2a2a2f;
  border: none;
  padding: 14px;
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: 0.25s;
}

.report-cancel-btn:hover {
  background: #35353b;
  color: var(--text-main);
}

.login-box input[readonly] {
  opacity: 0.8;
  cursor: not-allowed;
}

/* =========================
   AUTH PAGES
========================= */

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.auth-card {
  width: 360px;
  max-width: 100%;
  background: var(--bg-panel);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.auth-card h1 {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

/* FORM */

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-form input {
  width: 100%;
  background: var(--bg-input);
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 16px;
  outline: none;
  transition: 0.2s;
}

.auth-form input:focus {
  background: var(--bg-input-focus);
}

.auth-form input.is-error {
  border: 2px solid var(--danger);
  background: #ffdede;
}

/* ERRORS */

.auth-error {
  color: var(--danger);
  font-size: 13px;
  margin-top: -6px;
}

/* CHECKBOX */

.auth-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.auth-checkbox input {
  width: 16px;
  height: 16px;
}

.auth-checkbox a {
  color: var(--accent-secondary);
}

/* CAPTCHA */

.g-recaptcha {
  display: flex;
  justify-content: center;
}

/* BUTTON */

.login-btn {
  background: var(--accent-gradient);
  border: none;
  padding: 14px;
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: 0.25s;
}

.login-btn:hover {
  filter: brightness(1.1);
}

/* SEO FEATURES */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.seo-footer {
  padding: 40px 20px;
  background: #0f0f13;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.seo-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.seo-footer h2 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 15px;
}

.seo-footer p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 10px;
}