/* VMUVI Global Final — cinematic theme, floating header, cards, search, player */
:root {
  --v-bg: #03060b;
  --v-panel: #0b111b;
  --v-orange: #ff6a00;
  --v-orange2: #ff9a3d;
  --v-border: rgba(255, 255, 255, .10);
  --v-text: #fff;
  --v-muted: #9aa4b2;
  --v-glass: rgba(10, 16, 25, .58)
}

html {
  scroll-behavior: smooth;
  background: var(--v-bg)
}

body.vmuvi-world {
  background: radial-gradient(circle at 82% 5%, rgba(255, 106, 0, .16), transparent 30rem), radial-gradient(circle at 5% 20%, rgba(54, 95, 160, .18), transparent 35rem), linear-gradient(180deg, #03060b, #05070a 40%, #03060b);
  font-feature-settings: "kern"1;
  text-rendering: geometricPrecision
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent 80%)
}

.vmuvi-floating-header {
  transition: transform .45s cubic-bezier(.2, .8, .2, 1), background .35s, border-color .35s, box-shadow .35s;
  will-change: transform, background
}

.vmuvi-floating-header .glass,
.vmuvi-floating-header.v-header-scrolled .glass {
  background: rgba(5, 8, 13, .62) !important;
  box-shadow: 0 18px 55px rgba(0, 0, 0, .35);
  border-color: rgba(255, 255, 255, .12)
}

.vmuvi-floating-header.v-header-scrolled .glass {
  background: rgba(5, 8, 13, .86) !important;
  backdrop-filter: blur(28px) saturate(1.25)
}

.vmuvi-floating-header.v-header-hidden {
  transform: translateY(-110%)
}

.v-logo-mark {
  position: relative;
  isolation: isolate
}

.v-logo-mark::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 24px;
  background: radial-gradient(circle, rgba(255, 106, 0, .26), transparent 60%);
  z-index: -1;
  opacity: .75;
  filter: blur(12px)
}

.v-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #03060b;
  transition: opacity .7s ease, visibility .7s ease
}

.v-loader.is-hidden {
  opacity: 0;
  visibility: hidden
}

.v-loader-logo {
  font-size: clamp(2.5rem, 8vw, 7rem);
  font-weight: 1000;
  letter-spacing: .18em;
  color: white;
  text-shadow: 0 0 40px rgba(255, 106, 0, .35);
  animation: vLogoPulse 1.9s ease both
}

.v-loader-logo span {
  color: var(--v-orange)
}

@keyframes vLogoPulse {
  0% {
    opacity: 0;
    transform: scale(.82);
    filter: blur(18px)
  }

  55% {
    opacity: 1;
    transform: scale(1.03);
    filter: blur(0)
  }

  100% {
    opacity: .96;
    transform: scale(1)
  }
}

.v-sound-toggle {
  position: fixed;
  bottom: 92px;
  left: 18px;
  z-index: 70;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--v-border);
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(18px);
  display: grid;
  place-items: center;
  color: #fff
}

.v-glass,
.glass {
  background: var(--v-glass);
  backdrop-filter: blur(24px) saturate(1.2);
  border: 1px solid var(--v-border);
  box-shadow: 0 25px 80px rgba(0, 0, 0, .24)
}

.v-depth {
  box-shadow: 0 35px 100px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .07)
}

.v-ambient {
  position: absolute;
  inset: auto -10% -20% -10%;
  height: 45%;
  background: radial-gradient(circle at 50% 100%, rgba(255, 106, 0, .22), transparent 60%);
  filter: blur(60px);
  pointer-events: none
}

.v-cinematic-title {
  font-weight: 1000;
  letter-spacing: -.06em;
  line-height: .96;
  text-shadow: 0 20px 60px rgba(0, 0, 0, .55)
}

.v-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border: 1px solid var(--v-border);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(16px);
  border-radius: 999px;
  padding: .55rem .85rem;
  color: #e5e7eb;
  font-size: .82rem
}

.v-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 1.05rem;
  padding: .8rem 1.1rem;
  font-weight: 900;
  transition: transform .25s, background .25s, border .25s, opacity .25s
}

.v-btn:hover {
  transform: translateY(-2px)
}

.v-btn-primary {
  background: #fff;
  color: #000
}

.v-btn-orange,
.btn-primary {
  background: linear-gradient(135deg, var(--v-orange), var(--v-orange2));
  color: #fff
}

.v-btn-ghost,
.btn-secondary {
  background: rgba(255, 255, 255, .075);
  color: #fff;
  border: 1px solid var(--v-border);
  backdrop-filter: blur(18px)
}

.v-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: visible;
  padding-bottom: 5.5rem;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain
}

.v-rail::-webkit-scrollbar {
  display: none
}

.vmuvi-card,
.v-card {
  transform-style: preserve-3d;
  will-change: transform
}

.vmuvi-card-inner,
.v-card-inner {
  transition: transform .45s cubic-bezier(.2, .8, .2, 1), box-shadow .45s, border-color .45s, filter .45s;
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .01))
}

.vmuvi-card:hover .vmuvi-card-inner,
.v-card:hover .v-card-inner {
  transform: scale(1.12) translateY(-12px);
  box-shadow: 0 35px 85px rgba(0, 0, 0, .68), 0 0 44px rgba(255, 106, 0, .18);
  border-color: rgba(255, 106, 0, .38);
  filter: saturate(1.12)
}

.vmuvi-preview-video {
  opacity: 0;
  transition: opacity .45s ease, transform .6s ease;
  transform: scale(1.03)
}

.vmuvi-card:hover .vmuvi-preview-video,
.v-card:hover .vmuvi-preview-video {
  opacity: 1;
  transform: scale(1)
}

.vmuvi-play-float,
.vmuvi-card-info {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s, transform .35s
}

.vmuvi-card:hover .vmuvi-play-float,
.vmuvi-card:hover .vmuvi-card-info {
  opacity: 1;
  transform: translateY(0)
}

.vmuvi-card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, .88), rgba(0, 0, 0, .1) 56%, rgba(0, 0, 0, .15))
}

.vmuvi-skeleton,
.v-skeleton {
  background: linear-gradient(90deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .13), rgba(255, 255, 255, .05));
  background-size: 240% 100%;
  animation: vShimmer 1.6s linear infinite
}

@keyframes vShimmer {
  to {
    background-position: -240% 0
  }
}

.hero-slide-item [style*="background-image"],
.v-parallax {
  will-change: transform;
  transition: transform .25s linear
}

.v-hero-glow {
  position: absolute;
  inset: 20% auto auto 8%;
  width: 38vw;
  height: 38vw;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 106, 0, .22), transparent 68%);
  filter: blur(70px);
  animation: vGlow 7s ease-in-out infinite alternate
}

@keyframes vGlow {
  from {
    transform: translate3d(0, 0, 0) scale(.9);
    opacity: .45
  }

  to {
    transform: translate3d(8%, -7%, 0) scale(1.12);
    opacity: .88
  }
}

.v-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s, visibility .28s;
  background: rgba(3, 6, 11, .74);
  backdrop-filter: blur(28px) saturate(1.2)
}

.v-search-overlay.is-open {
  opacity: 1;
  visibility: visible
}

.v-search-panel {
  max-width: 960px;
  margin: 8vh auto 0;
  padding: 1rem
}

.v-search-input {
  width: 100%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 2rem;
  padding: 1.25rem 1.5rem;
  font-size: 1.5rem;
  outline: none
}

.v-search-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem
}

.v-search-result {
  border: 1px solid var(--v-border);
  background: rgba(255, 255, 255, .05);
  border-radius: 1.4rem;
  overflow: hidden;
  transition: transform .2s
}

.v-search-result:hover {
  transform: translateY(-4px)
}

.v-player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  background: #000;
  border: 1px solid var(--v-border)
}

.v-player-video {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  display: block
}

.v-player-controls {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, .88), transparent);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s
}

.v-player-shell:hover .v-player-controls,
.v-player-shell.v-controls-visible .v-player-controls {
  opacity: 1;
  transform: translateY(0)
}

.v-progress {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  cursor: pointer;
  overflow: hidden
}

.v-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--v-orange), #fff)
}

.v-next-popup {
  position: absolute;
  left: 1.1rem;
  bottom: 7.2rem;
  width: min(330px, calc(100% - 2.2rem));
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: .3s
}

.v-next-popup.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto
}

.v-mini-player {
  position: fixed !important;
  width: min(420px, 92vw) !important;
  right: auto !important;
  left: 18px !important;
  bottom: 86px !important;
  z-index: 90 !important;
  border-radius: 1.5rem !important;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .75) !important
}

.v-mini-player .v-player-video {
  aspect-ratio: 16/9
}

.v-mini-player .absolute.top-5 {
  display: none
}

.v-page-enter {
  animation: vPageIn .55s ease both
}

@keyframes vPageIn {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(10px)
  }

  to {
    opacity: 1;
    transform: none;
    filter: blur(0)
  }
}

.v-profile-card {
  transition: .3s
}

.v-profile-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45)
}

.v-payment-card {
  border: 1px solid var(--v-border);
  background: rgba(255, 255, 255, .05);
  border-radius: 1.5rem;
  padding: 1rem
}

.v-payment-card.is-selected {
  border-color: rgba(255, 106, 0, .55);
  background: rgba(255, 106, 0, .11)
}

.v-locale-bar select {
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--v-border);
  border-radius: .9rem;
  padding: .55rem;
  color: white
}

@media (max-width:767px) {

  .vmuvi-card:hover .vmuvi-card-inner,
  .v-card:hover .v-card-inner {
    transform: scale(1.06) translateY(-6px)
  }

  .v-player-controls {
    position: relative;
    opacity: 1;
    transform: none;
    background: #05070a
  }

  .v-search-panel {
    margin-top: 5rem
  }

  .v-search-input {
    font-size: 1.1rem
  }

  .v-loader-logo {
    letter-spacing: .08em
  }

  .v-rail {
    padding-bottom: 3rem
  }

  .v-mini-player {
    left: 10px !important;
    bottom: 74px !important
  }

  .vmuvi-floating-header {
    padding-inline: .75rem !important
  }

  .vmuvi-floating-header .glass {
    border-radius: 1.25rem !important
  }
}


/* ================= VMUVI WOW VISUAL UPDATE v20 ================= */
:root {
  --v-wow-bg: #030711;
  --v-wow-blue: #07111f;
  --v-wow-orange: #ff6a00;
  --v-wow-orange-soft: #ff9d45;
  --v-wow-glass: rgba(9, 15, 25, .56);
  --v-wow-line: rgba(255, 255, 255, .11);
}

body.vmuvi-world {
  background:
    radial-gradient(circle at 80% 2%, rgba(255, 106, 0, .20), transparent 34rem),
    radial-gradient(circle at 10% 12%, rgba(44, 83, 140, .25), transparent 34rem),
    linear-gradient(180deg, #02040a 0%, #050b13 42%, #02040a 100%) !important;
}

body.vmuvi-world::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, .35) 80%);
  mix-blend-mode: multiply;
}

.v-wow-header {
  transform: translateZ(0);
  transition: padding .35s ease, transform .35s ease;
}

.v-wow-header.is-scrolled {
  padding-top: .55rem;
  padding-bottom: .55rem
}

.v-wow-header-glass {
  background: linear-gradient(135deg, rgba(9, 14, 22, .64), rgba(5, 8, 13, .36));
  box-shadow: 0 22px 70px rgba(0, 0, 0, .36), inset 0 1px 0 rgba(255, 255, 255, .08);
  position: relative;
  overflow: hidden;
}

.v-wow-header-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 0, .12), transparent);
  opacity: .55;
  pointer-events: none;
}

.v-logo-mark {
  transition: transform .45s cubic-bezier(.2, .8, .2, 1), box-shadow .45s
}

.v-logo-mark:hover {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 0 45px rgba(255, 106, 0, .28)
}

.v-wow-search-trigger {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: white;
  transition: .25s ease;
}

.v-wow-search-trigger:hover {
  background: white;
  color: #05070a;
  transform: translateY(-1px)
}

.v-wow-intro {
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 106, 0, .22), transparent 24rem),
    linear-gradient(180deg, #02040a, #050914);
}

.v-loader-aura {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 106, 0, .28), transparent 65%);
  filter: blur(30px);
  animation: vPulse 1.8s ease-in-out infinite;
}

.v-loader-logo {
  letter-spacing: .12em;
  text-shadow: 0 0 45px rgba(255, 106, 0, .46);
}

.v-loader-line {
  width: 180px;
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 0, .95), transparent);
  animation: vLine 1.6s ease infinite;
}

.v-loader-sub {
  margin-top: 14px;
  font-size: 10px;
  letter-spacing: .55em;
  color: rgba(255, 255, 255, .46);
}

@keyframes vPulse {
  50% {
    transform: scale(1.2);
    opacity: .72
  }
}

@keyframes vLine {
  0% {
    transform: scaleX(.25);
    opacity: .25
  }

  50% {
    transform: scaleX(1);
    opacity: 1
  }

  100% {
    transform: scaleX(.25);
    opacity: .25
  }
}

.v-wow-hero {
  background: #02040a;
  isolation: isolate;
}

.v-wow-hero-ambient {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 106, 0, .28), transparent 28rem),
    radial-gradient(circle at 12% 58%, rgba(56, 99, 168, .22), transparent 36rem);
  filter: blur(10px);
  z-index: 0;
  animation: vAmbient 9s ease-in-out infinite alternate;
}

@keyframes vAmbient {
  to {
    transform: translate3d(2%, -1%, 0) scale(1.04)
  }
}

.v-wow-hero-bg {
  transform: scale(1.1);
  filter: saturate(1.05) contrast(1.08);
  animation: vHeroDrift 16s ease-in-out infinite alternate;
}

.v-wow-hero-video {
  opacity: .62;
  filter: saturate(1.08) contrast(1.08)
}

.v-wow-hero-depth {
  background:
    linear-gradient(90deg, rgba(2, 4, 10, .98) 0%, rgba(2, 4, 10, .82) 34%, rgba(2, 4, 10, .26) 68%, rgba(2, 4, 10, .88) 100%),
    linear-gradient(0deg, #02040a 0%, rgba(2, 4, 10, .18) 32%, rgba(2, 4, 10, .45) 100%);
}

.v-wow-hero-vignette {
  box-shadow: inset 0 -220px 170px #02040a, inset 0 160px 170px rgba(2, 4, 10, .72);
}

@keyframes vHeroDrift {
  to {
    transform: scale(1.18) translate3d(-1.5%, 1%, 0)
  }
}

.v-wow-hero-content {
  animation: vReveal .9s cubic-bezier(.2, .8, .2, 1) both
}

@keyframes vReveal {
  from {
    opacity: 0;
    transform: translateY(34px);
    filter: blur(10px)
  }

  to {
    opacity: 1;
    transform: none;
    filter: blur(0)
  }
}

.v-wow-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
  color: #ffb16f;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.v-wow-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6a00;
  box-shadow: 0 0 22px rgba(255, 106, 0, .9);
  animation: vDot 1.4s ease infinite
}

@keyframes vDot {
  50% {
    transform: scale(1.65);
    opacity: .55
  }
}

.v-wow-hero-title {
  margin-top: 1.6rem;
  font-size: clamp(3.8rem, 9vw, 9.5rem);
  font-weight: 1000;
  line-height: .88;
  letter-spacing: -.075em;
  max-width: 980px;
  text-shadow: 0 22px 80px rgba(0, 0, 0, .72);
}

.v-wow-hero-desc {
  margin-top: 1.8rem;
  max-width: 760px;
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  line-height: 2.1;
  color: rgba(255, 255, 255, .76);
}

.v-wow-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, .72);
  font-size: .9rem
}

.v-wow-quality,
.v-wow-pill {
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
  border-radius: .8rem;
  padding: .34rem .62rem;
  font-size: .72rem;
  font-weight: 800;
}

.v-wow-primary,
.v-wow-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0 1.7rem;
  border-radius: 1.1rem;
  font-weight: 1000;
  transition: .32s cubic-bezier(.2, .8, .2, 1);
}

.v-wow-primary {
  background: white;
  color: #03060b;
  box-shadow: 0 22px 60px rgba(255, 255, 255, .08)
}

.v-wow-primary:hover {
  background: #ff6a00;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 24px 80px rgba(255, 106, 0, .33)
}

.v-wow-secondary {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: white;
  backdrop-filter: blur(20px)
}

.v-wow-secondary:hover {
  background: rgba(255, 255, 255, .16);
  transform: translateY(-3px)
}

.v-wow-hero-orb {
  position: absolute;
  left: 8%;
  bottom: 14%;
  width: 210px;
  height: 210px;
  border-radius: 999px
}

.v-wow-orb-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 0 70px rgba(255, 106, 0, .22);
  animation: vSpin 14s linear infinite
}

.v-wow-orb-ring::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 999px;
  border: 1px dashed rgba(255, 106, 0, .35)
}

.v-wow-orb-core {
  position: absolute;
  inset: 58px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(20px);
  font-weight: 1000;
  letter-spacing: .16em;
  color: #ffb16f
}

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

.v-wow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .34);
  transition: .3s
}

.v-wow-dot.is-active {
  width: 48px;
  background: #ff6a00;
  box-shadow: 0 0 25px rgba(255, 106, 0, .7)
}

.v-wow-card {
  position: relative;
  transition: transform .42s cubic-bezier(.2, .8, .2, 1), filter .42s
}

.v-wow-card:hover {
  transform: translateY(-10px) scale(1.055);
  filter: drop-shadow(0 28px 55px rgba(0, 0, 0, .55));
  z-index: 50
}

.v-wow-card-inner {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 12px 38px rgba(0, 0, 0, .28);
  transition: box-shadow .35s, border-color .35s
}

.v-wow-card:hover .v-wow-card-inner {
  border-color: rgba(255, 106, 0, .34);
  box-shadow: 0 26px 80px rgba(255, 106, 0, .16), inset 0 1px 0 rgba(255, 255, 255, .12)
}

.v-wow-poster {
  transition: transform .7s cubic-bezier(.2, .8, .2, 1), filter .55s
}

.v-wow-card:hover .v-wow-poster {
  transform: scale(1.10);
  filter: brightness(.9) saturate(1.15)
}

.v-wow-preview-video {
  opacity: 0;
  transition: opacity .55s ease
}

.v-wow-card:hover .v-wow-preview-video {
  opacity: 1
}

.v-wow-card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, .92), rgba(0, 0, 0, .14) 48%, rgba(0, 0, 0, .05));
  opacity: .9
}

.v-wow-card-glow {
  background: radial-gradient(circle at 50% 65%, rgba(255, 106, 0, .24), transparent 50%);
  opacity: 0;
  transition: .45s
}

.v-wow-card:hover .v-wow-card-glow {
  opacity: 1
}

.v-wow-play {
  opacity: 0;
  transform: scale(.86);
  transition: .35s
}

.v-wow-card:hover .v-wow-play {
  opacity: 1;
  transform: scale(1)
}

.v-wow-play-button {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: white;
  color: #05070a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .45);
  font-weight: 1000
}

.v-wow-card-info {
  transform: translateY(16px);
  opacity: .92;
  transition: .35s
}

.v-wow-card:hover .v-wow-card-info {
  transform: translateY(0);
  opacity: 1
}

.v-wow-mini-tag {
  font-size: 9px;
  color: #ffb16f;
  background: rgba(255, 106, 0, .15);
  border: 1px solid rgba(255, 106, 0, .18);
  padding: .25rem .42rem;
  border-radius: .5rem;
  font-weight: 900
}

.v-wow-rating {
  font-size: 10px;
  color: white;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .10);
  padding: .25rem .42rem;
  border-radius: .5rem
}

.v-wow-rank {
  width: 42px;
  height: 42px;
  border-radius: 1rem;
  background: linear-gradient(135deg, #fff, #ffb16f);
  color: #070a0f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 1000;
  box-shadow: 0 15px 40px rgba(255, 106, 0, .28)
}

.v-wow-pill-lock {
  color: #ffb16f
}

.v-wow-mute {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .62);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: .25s
}

.v-wow-card:hover .v-wow-mute {
  opacity: 1
}

.v-wow-expand {
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, .45))
}

.v-wow-brand-panel {
  background: linear-gradient(135deg, rgba(10, 17, 28, .88), rgba(4, 7, 12, .92));
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 34px 120px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.v-wow-brand-radial {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 80% 20%, rgba(255, 106, 0, .18), transparent 24rem), radial-gradient(circle at 10% 100%, rgba(255, 255, 255, .08), transparent 24rem);
  filter: blur(8px)
}

.v-wow-brand-lines {
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image: linear-gradient(to right, #fff 1px, transparent 1px), linear-gradient(to bottom, #fff 1px, transparent 1px);
  background-size: 46px 46px
}

.v-wow-signature {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem
}

.v-wow-signature span {
  padding: .85rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .72);
  font-size: .85rem
}

.v-wow-search-overlay {
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(24px)
}

.v-wow-search-panel {
  background:
    radial-gradient(circle at 85% 0%, rgba(255, 106, 0, .18), transparent 24rem),
    linear-gradient(135deg, rgba(11, 17, 27, .96), rgba(4, 6, 11, .96));
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 36px 120px rgba(0, 0, 0, .7);
}

.v-wow-search-input {
  font-size: 1.2rem;
  background: rgba(255, 255, 255, .06) !important;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06)
}

.v-search-overlay.is-open .v-wow-search-panel {
  animation: vSearchIn .45s cubic-bezier(.2, .8, .2, 1) both
}

@keyframes vSearchIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(.97);
    filter: blur(10px)
  }

  to {
    opacity: 1;
    transform: none;
    filter: blur(0)
  }
}

.mobile-rail {
  scroll-padding-inline: 1.25rem
}

.v-wow-skeleton,
.vmuvi-skeleton {
  background: linear-gradient(90deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .10), rgba(255, 255, 255, .04));
  background-size: 220% 100%;
  animation: vShimmer 1.8s linear infinite
}

@keyframes vShimmer {
  to {
    background-position: -220% 0
  }
}

@media (max-width:767px) {
  .v-wow-hero-title {
    font-size: clamp(3.15rem, 18vw, 5.4rem);
    letter-spacing: -.06em
  }

  .v-wow-hero-desc {
    font-size: .95rem;
    line-height: 1.95
  }

  .v-wow-hero-depth {
    background: linear-gradient(0deg, #02040a 0%, rgba(2, 4, 10, .18) 42%, rgba(2, 4, 10, .62) 100%), linear-gradient(90deg, rgba(2, 4, 10, .9), rgba(2, 4, 10, .25))
  }

  .v-wow-card:hover {
    transform: translateY(-6px) scale(1.03)
  }

  .v-wow-card {
    width: 158px
  }

  .v-wow-poster {
    height: 232px
  }

  .v-wow-header {
    padding-inline: .75rem
  }

  .v-wow-header-glass {
    border-radius: 1.2rem
  }

  .v-wow-brand-panel {
    border-radius: 2rem
  }
}

.v-wow-result-card {
  display: flex;
  gap: .9rem;
  align-items: center;
  padding: .85rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .075);
  transition: .25s
}

.v-wow-result-card:hover {
  background: rgba(255, 106, 0, .10);
  border-color: rgba(255, 106, 0, .25);
  transform: translateY(-2px)
}

.v-wow-result-poster {
  width: 54px;
  height: 76px;
  border-radius: .85rem;
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 255, 255, .06);
  flex-shrink: 0
}

.v-wow-result-skeleton {
  height: 92px;
  border-radius: 1rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .11), rgba(255, 255, 255, .04));
  background-size: 220% 100%;
  animation: vShimmer 1.8s linear infinite
}

.v-wow-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1)
}

.v-wow-reveal.is-visible {
  opacity: 1;
  transform: none
}

.v-search-lock {
  overflow: hidden
}

.v-wow-header.is-hidden-soft {
  transform: translateY(-110%)
}

@media (max-width:767px) {
  .v-wow-header.is-hidden-soft {
    transform: none
  }
}


/* ================= VMUVI Locale Switcher Fix v21 ================= */
.v-locale-bar select {
  min-width: 76px;
  cursor: pointer;
  outline: none
}

.v-locale-bar select:focus {
  border-color: rgba(255, 106, 0, .7);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, .14)
}

#mobileMenu .v-locale-bar select {
  background: rgba(0, 0, 0, .28);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: .85rem;
  padding: .65rem .75rem;
  color: #fff
}

html[dir="ltr"] body {
  direction: ltr
}

html[dir="ltr"] .v-search-panel,
html[dir="ltr"] #mobileMenu {
  text-align: left
}

html[dir="rtl"] .v-search-panel,
html[dir="rtl"] #mobileMenu {
  text-align: right
}


/* ================= VMUVI AI UNIVERSE v23 ================= */
.v-ai-mobile-dock {
  position: fixed;
  right: 12px;
  left: 12px;
  bottom: 12px;
  z-index: 70;
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  background: rgba(5, 7, 10, .78);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .45)
}

.v-ai-mobile-dock a,
.v-ai-mobile-dock button {
  flex: 1;
  text-align: center;
  padding: 10px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  font-weight: 800;
  font-size: 12px;
  color: white
}

.v-ai-page {
  background: radial-gradient(circle at 80% 10%, rgba(255, 106, 0, .18), transparent 35%), radial-gradient(circle at 20% 40%, rgba(34, 211, 238, .08), transparent 30%)
}

.v-ai-hero-panel,
.v-ai-home-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(9, 14, 22, .92), rgba(3, 5, 9, .96));
  padding: clamp(28px, 6vw, 72px);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .55), inset 0 1px 0 rgba(255, 255, 255, .08)
}

.v-ai-orb {
  position: absolute;
  left: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 106, 0, .42), rgba(255, 106, 0, .08) 42%, transparent 70%);
  filter: blur(10px);
  animation: v-ai-orb 8s ease-in-out infinite alternate
}

.v-ai-orb.small {
  width: 260px;
  height: 260px;
  left: auto;
  right: -70px;
  top: -70px
}

@keyframes v-ai-orb {
  from {
    transform: scale(.9) translate3d(0, 0, 0)
  }

  to {
    transform: scale(1.08) translate3d(30px, 20px, 0)
  }
}

.v-ai-search-box {
  display: grid;
  grid-template-columns: 1fr 170px auto;
  gap: 12px;
  padding: 10px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(24px)
}

.v-ai-input,
.v-ai-select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .1);
  outline: none;
  background: rgba(0, 0, 0, .25);
  color: #fff;
  border-radius: 20px;
  padding: 15px 18px
}

.v-ai-select option {
  background: #080b10;
  color: #fff
}

.v-ai-results .v-wow-result-card {
  min-height: 118px
}

.v-ai-prompt-card {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 32px;
  background: rgba(255, 255, 255, .05);
  padding: 28px;
  backdrop-filter: blur(20px)
}

.v-mood-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
  padding: 28px;
  transition: .35s;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25)
}

.v-mood-card:before {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(255, 106, 0, .22);
  filter: blur(50px)
}

.v-mood-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 106, 0, .35)
}

.v-mood-card h2 {
  position: relative;
  font-size: 28px;
  font-weight: 950;
  margin-bottom: 10px
}

.v-mood-card p {
  position: relative;
  color: #9ca3af
}

.v-mini-mood {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 84px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .045);
  font-weight: 900;
  transition: .25s
}

.v-mini-mood:hover {
  background: rgba(255, 106, 0, .14);
  border-color: rgba(255, 106, 0, .28);
  transform: translateY(-3px)
}

.v-dynamic-movie-theme:before {
  content: "";
  position: absolute;
  inset: -15% -10% auto auto;
  width: 55vw;
  height: 55vw;
  border-radius: 999px;
  background: var(--movie-glow, #ff6a00);
  opacity: .18;
  filter: blur(120px);
  pointer-events: none
}

.v-dynamic-movie-theme .v-btn-primary,
.v-dynamic-movie-theme .v-btn-orange {
  background: var(--movie-accent, #ff6a00) !important
}

.v-dynamic-movie-theme .v-chip {
  border-color: color-mix(in srgb, var(--movie-accent, #ff6a00), transparent 65%)
}

.v-party-fab {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 106, 0, .92);
  color: #fff;
  font-weight: 950;
  padding: 13px 18px;
  box-shadow: 0 20px 60px rgba(255, 106, 0, .28);
  backdrop-filter: blur(20px)
}

.v-party-panel {
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, .04)
}

.v-party-messages {
  height: 55vh;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  background: rgba(255, 255, 255, .035);
  padding: 14px
}

.v-party-msg {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.v-party-msg:last-child {
  border-bottom: 0
}

.v-party-name {
  color: #fb923c;
  font-size: 12px;
  font-weight: 900
}

.v-party-text {
  color: #e5e7eb;
  font-size: 14px;
  line-height: 1.8
}

@media(max-width:767px) {
  .v-ai-search-box {
    grid-template-columns: 1fr
  }

  .v-ai-hero-panel,
  .v-ai-home-panel {
    border-radius: 30px;
    padding: 28px
  }

  .v-ai-mobile-dock+main {
    padding-bottom: 70px
  }

  .v-party-panel {
    min-height: 420px
  }

  .v-party-messages {
    height: 300px
  }

  .mobile-rail {
    scroll-snap-type: none !important;
    overscroll-behavior: auto !important;
    touch-action: pan-x pan-y !important
  }

  .v-wow-card {
    transform: translateZ(0)
  }
}


/* ================= VMUVI Smart Search Professional Results Fix v26 =================
   این بخش فقط برای اصلاح نمایش نتایج جستجوی حرفه‌ای اضافه شده است.
   بخش‌های قبلی فایل حذف یا تغییر داده نشده‌اند.
*/

#vSmartSearchOverlay {
  direction: rtl !important;
}

#vSmartSearchOverlay .v-search-panel,
#vSmartSearchOverlay.v-search-overlay .v-search-panel {
  width: min(980px, calc(100vw - 32px)) !important;
  max-width: 980px !important;
  max-height: calc(100vh - 48px) !important;
  margin: 24px auto !important;
  padding: clamp(18px, 3vw, 34px) !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  border-radius: 30px !important;
}

#vSmartSearchResults {
  display: block !important;
  width: 100% !important;
  margin-top: 28px !important;
}

#vSmartSearchResults .v-smart-result-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
  gap: 16px !important;
  width: 100% !important;
  direction: rtl !important;
  align-items: stretch !important;
}

#vSmartSearchResults .v-smart-result-card {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 10px !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, .055) !important;
  border: 1px solid rgba(255, 255, 255, .10) !important;
  color: #fff !important;
  text-decoration: none !important;
  overflow: hidden !important;
  text-align: right !important;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease !important;
}

#vSmartSearchResults .v-smart-result-card:hover {
  transform: translateY(-4px) !important;
  background: rgba(255, 106, 0, .12) !important;
  border-color: rgba(255, 106, 0, .35) !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .32) !important;
}

#vSmartSearchResults .v-smart-result-poster {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 2 / 3 !important;
  flex: none !important;
  border-radius: 17px !important;
  background-size: cover !important;
  background-position: center !important;
  background-color: rgba(255, 255, 255, .08) !important;
  margin: 0 0 11px 0 !important;
}

#vSmartSearchResults .v-smart-result-card>.min-w-0,
#vSmartSearchResults .v-smart-result-card>div:not(.v-smart-result-poster) {
  width: 100% !important;
  min-width: 0 !important;
}

#vSmartSearchResults .v-smart-result-title {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  min-height: 42px !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  color: #fff !important;
  line-height: 1.5 !important;
  margin: 0 0 6px 0 !important;
  text-align: right !important;
}

#vSmartSearchResults .v-smart-result-meta {
  display: block !important;
  min-height: 20px !important;
  font-size: 11.5px !important;
  color: #fb923c !important;
  line-height: 1.6 !important;
  margin: 0 0 6px 0 !important;
  text-align: right !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

#vSmartSearchResults .v-smart-result-desc {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  min-height: 42px !important;
  font-size: 11.5px !important;
  color: #9ca3af !important;
  line-height: 1.8 !important;
  text-align: right !important;
  margin: 0 !important;
}

#vSmartSearchResults .text-orange-400,
#vSmartSearchResults .text-\[12px\],
#vSmartSearchResults .text-\[11px\] {
  display: block !important;
  width: 100% !important;
  text-align: right !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

#vSmartSearchResults>a.block {
  margin-top: 18px !important;
  padding: 13px 16px !important;
  border-radius: 16px !important;
  background: rgba(255, 106, 0, .10) !important;
  border: 1px solid rgba(255, 106, 0, .18) !important;
}

#desktopSearchResults,
#mobileSearchResults {
  display: block;
}

#desktopSearchResults.hidden,
#mobileSearchResults.hidden {
  display: none !important;
}

.live-search-results a {
  text-decoration: none !important;
}

@media (min-width: 1180px) {
  #vSmartSearchResults .v-smart-result-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 900px) and (max-width: 1179px) {
  #vSmartSearchResults .v-smart-result-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 640px) and (max-width: 899px) {
  #vSmartSearchResults .v-smart-result-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 639px) {

  #vSmartSearchOverlay .v-search-panel,
  #vSmartSearchOverlay.v-search-overlay .v-search-panel {
    width: calc(100vw - 20px) !important;
    margin: 10px auto !important;
    padding: 16px !important;
    border-radius: 24px !important;
  }

  #vSmartSearchResults .v-smart-result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  #vSmartSearchResults .v-smart-result-card {
    padding: 8px !important;
    border-radius: 18px !important;
  }

  #vSmartSearchResults .v-smart-result-poster {
    border-radius: 14px !important;
    margin-bottom: 8px !important;
  }

  #vSmartSearchResults .v-smart-result-title {
    min-height: 36px !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
  }

  #vSmartSearchResults .v-smart-result-meta,
  #vSmartSearchResults .v-smart-result-desc {
    font-size: 10.5px !important;
  }

  #vSmartSearchResults .v-smart-result-desc {
    min-height: 0 !important;
    -webkit-line-clamp: 1 !important;
  }
}