:root {
  --ink-950: #070708;
  --ink-900: #0B0B0D;
  --ink-800: #121214;
  --gold: #D4A017;
}

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(212, 160, 23, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(80, 80, 100, 0.12), transparent 45%),
    var(--ink-900);
}

#site-header {
  background: linear-gradient(to bottom, rgba(7,7,8,0.92), rgba(7,7,8,0.55), transparent);
}
#site-header.is-scrolled {
  background: rgba(11, 11, 13, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.auth-bg {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(212,160,23,0.12), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(40,40,60,0.4), transparent 45%),
    #070708;
}

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: #070708;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn-play:hover {
  background: #E8C547;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212,160,23,0.25);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  color: #f4f4f5;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: background .2s ease, border-color .2s ease;
}
.vx-see-all {
  padding: 0.45rem 0.95rem;
  font-size: 0.8rem;
  gap: 0.35rem;
}
.vx-see-all svg {
  width: 0.95rem;
  height: 0.95rem;
  transition: transform .15s ease;
}
.vx-see-all:hover svg {
  transform: translateX(2px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(212,160,23,0.4);
}

.form-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: #f4f4f5;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
  color-scheme: dark;
}
.form-input:focus {
  border-color: rgba(212,160,23,0.5);
  background: rgba(255,255,255,0.06);
}
.form-input::placeholder {
  color: #71717a;
}
select.form-input {
  appearance: none;
  background-color: #1A1A1E;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23a1a1aa'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
  cursor: pointer;
}
select.form-input option,
select.form-input optgroup {
  background-color: #1A1A1E;
  color: #f4f4f5;
}
select.form-input:invalid,
select.form-input option[value=""] {
  color: #a1a1aa;
}
.password-field {
  position: relative;
}
.password-field .form-input {
  padding-right: 3rem;
}
.password-toggle {
  position: absolute;
  right: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #a1a1aa;
  border-radius: 0.5rem;
  transition: color .15s ease, background .15s ease;
}
.password-toggle:hover {
  color: var(--gold);
  background: rgba(212,160,23,0.1);
}
.label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #a1a1aa;
  margin-bottom: 0.375rem;
}

.slider-track {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.slider-track::-webkit-scrollbar { display: none; }

.slider-btn {
  position: absolute;
  top: 35%;
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, opacity .2s ease;
}
.group\/row:hover .slider-btn { display: flex; }
.slider-btn:hover { background: rgba(212,160,23,0.9); color: #070708; }
.slider-prev { left: -0.25rem; }
.slider-next { right: -0.25rem; }
@media (min-width: 768px) {
  .slider-prev { left: -0.75rem; }
  .slider-next { right: -0.75rem; }
}

.content-card { transition: transform .25s ease; }
.content-card:hover { transform: translateY(-4px); }

.toast {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  top: auto;
  z-index: 200;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: min(22rem, calc(100vw - 2rem));
  padding: 0.95rem 1.15rem;
  border-radius: 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  backdrop-filter: blur(12px);
  animation: toast-in .35s ease, toast-out .4s ease 4.2s forwards;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
.toast-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.toast-success {
  background: rgba(6, 78, 59, 0.92);
  border: 1px solid rgba(16, 185, 129, 0.55);
  color: #d1fae5;
}
.toast-success .toast-icon {
  background: #10b981;
  color: #064e3b;
}
.toast-error {
  background: rgba(127, 29, 29, 0.94);
  border: 1px solid rgba(248, 113, 113, 0.55);
  color: #fee2e2;
}
.toast-error .toast-icon {
  background: #f87171;
  color: #7f1d1d;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes toast-out {
  to { opacity: 0; transform: translateY(12px); }
}

@keyframes hero-ken {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.animate-hero-ken {
  animation: hero-ken 20s ease-out forwards;
}

.animate-fade-up {
  opacity: 0;
  animation: fade-up .7s ease forwards;
}
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .45s; }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

[data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#search-suggestions a {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background .15s ease;
}
#search-suggestions a:hover { background: rgba(255,255,255,0.05); }
#search-suggestions img {
  width: 2.5rem;
  height: 3.5rem;
  object-fit: cover;
  border-radius: 0.25rem;
}

/* —— Ad placements (design-integrated) —— */
.vx-header-ad {
  position: relative;
  z-index: 20;
  isolation: isolate;
}
.vx-header-ad .vx-ad-slot {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/*
 * Full-bleed heroes use -mt to sit under the fixed navbar.
 * When a header ad is present between spacer and hero, cancel that pull-up
 * so the ad is not covered.
 */
body:has(.vx-header-ad) .hero,
body:has(.vx-header-ad) main > section:first-child {
  margin-top: 0 !important;
}

.vx-ad-slot {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 1.25rem 0;
  overflow: hidden;
  border-radius: 0.75rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.06);
  box-sizing: border-box;
}
.vx-ad-slot.is-empty,
.vx-ad-slot[hidden],
[data-ad-wrap].is-empty,
[data-ad-wrap][hidden] {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  min-height: 0 !important;
}
.vx-ad-slot__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.vx-ad-label {
  position: absolute;
  top: 0.4rem;
  left: 0.6rem;
  z-index: 2;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(212, 160, 23, 0.75);
  background: rgba(11, 11, 13, 0.75);
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
  pointer-events: none;
}
.vx-ad-unit {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vx-ad-unit.is-empty,
.vx-ad-unit[hidden] {
  display: none !important;
  min-height: 0 !important;
}
.vx-ad-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0.5rem;
}
.vx-ad-link { display: block; width: 100%; max-width: 100%; }
.vx-ad-size-leaderboard .vx-ad-unit { max-width: 728px; }
.vx-ad-size-mobile_banner .vx-ad-unit { max-width: 320px; }
.vx-ad-size-rectangle .vx-ad-unit { max-width: 300px; }
.vx-ad-size-large_rectangle .vx-ad-unit { max-width: 336px; }
.vx-ad-size-sidebar .vx-ad-unit { max-width: 300px; }
.vx-ad-size-responsive .vx-ad-unit { max-width: 100%; }
.vx-ad-custom {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.85rem;
  width: 100%;
  max-width: 720px;
  padding: 0.75rem;
  border-radius: 0.65rem;
  background: rgba(18, 18, 20, 0.9);
  border: 1px solid rgba(255,255,255,0.06);
  color: inherit;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}
.vx-ad-custom:hover { border-color: rgba(212, 160, 23, 0.35); transform: translateY(-1px); }
.vx-ad-custom__media { overflow: hidden; border-radius: 0.5rem; background: #1a1a1e; }
.vx-ad-custom__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; }
.vx-ad-custom__title { display: block; font-weight: 600; color: #f4f4f5; margin-bottom: 0.25rem; }
.vx-ad-custom__desc { margin: 0; font-size: 0.85rem; color: #a1a1aa; line-height: 1.4; }
.vx-ad-custom__cta {
  display: inline-flex;
  margin-top: 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0B0B0D;
  background: #D4A017;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
}
.vx-ad-slot--header,
.vx-ad-slot--footer,
.vx-ad-slot--home_bottom,
.vx-ad-slot--home_hero_below {
  margin-left: auto;
  margin-right: auto;
}
.vx-ad-sidebar .vx-ad-slot { margin-top: 0; }
.vx-watch-ads .vx-ad-slot {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
}
.vx-ad-unit iframe,
.vx-ad-unit ins,
.vx-ad-unit img {
  max-width: 100% !important;
}
@media (max-width: 767px) {
  .vx-ad-custom { grid-template-columns: 88px 1fr; }
  .vx-ad-slot { margin: 0.85rem 0; border-radius: 0.65rem; }
  .vx-ad-slot__inner { padding: 0.55rem; }
  .vx-ad-size-leaderboard .vx-ad-unit,
  .vx-ad-size-sidebar .vx-ad-unit { max-width: 100%; }
}

/* ===== Account Center ===== */
.vx-acc { padding-bottom: 4rem; }
.vx-acc-wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .vx-acc-wrap { padding: 0 2rem; }
}
.vx-acc-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 2rem 0 0;
  background:
    radial-gradient(900px 280px at 15% -10%, rgba(212,160,23,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 70%);
}
.vx-acc-hero__glow {
  position: absolute;
  inset: auto -20% -40% auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(212,160,23,.12), transparent 65%);
  pointer-events: none;
}
.vx-acc-hero__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
.vx-acc-hero__identity {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  min-width: 0;
}
.vx-acc-kicker {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(212,160,23,.85);
  margin: 0 0 .35rem;
}
.vx-acc-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0;
}
.vx-acc-email {
  display: inline-block;
  margin-top: .35rem;
  color: #a1a1aa;
  font-size: .92rem;
  word-break: break-all;
}
.vx-acc-email:hover { color: #e4e4e7; }
.vx-acc-lead {
  margin: .55rem 0 0;
  color: #71717a;
  font-size: .9rem;
}
.vx-acc-tabs {
  display: flex;
  gap: .4rem;
  overflow-x: auto;
  margin-top: 1.75rem;
  padding-bottom: .15rem;
  scrollbar-width: none;
  position: relative;
  z-index: 1;
}
.vx-acc-tabs::-webkit-scrollbar { display: none; }
.vx-acc-tab {
  flex: 0 0 auto;
  border: 1px solid transparent;
  background: transparent;
  color: #a1a1aa;
  font-size: .875rem;
  font-weight: 500;
  padding: .7rem 1rem;
  border-radius: .85rem .85rem 0 0;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
  position: relative;
  white-space: nowrap;
}
.vx-acc-tab:hover { color: #f4f4f5; background: rgba(255,255,255,.03); }
.vx-acc-tab.is-active {
  color: #fafafa;
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
  border-bottom-color: transparent;
}
.vx-acc-tab.is-active::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0;
  height: 2px;
  background: #d4a017;
  border-radius: 2px;
}
.vx-acc-tab[data-badge]::before {
  content: attr(data-badge);
  position: absolute;
  top: .35rem;
  right: .35rem;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 .25rem;
  border-radius: 999px;
  background: #d4a017;
  color: #0a0a0b;
  font-size: .65rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.vx-acc-body { margin-top: 1.5rem; }
.vx-acc-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .vx-acc-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
}
.vx-acc-stat {
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.07);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  backdrop-filter: blur(10px);
  padding: 1rem 1.1rem;
  transition: transform .2s ease, border-color .2s ease;
}
.vx-acc-stat:hover {
  transform: translateY(-2px);
  border-color: rgba(212,160,23,.28);
}
.vx-acc-stat strong {
  display: block;
  font-size: 1.25rem;
  color: #fafafa;
  letter-spacing: -.02em;
}
.vx-acc-stat span {
  display: block;
  margin-top: .25rem;
  font-size: .75rem;
  color: #71717a;
}
.vx-acc-panel { display: none; }
.vx-acc-panel.is-active { display: block; animation: vx-acc-fade .28s ease; }
@keyframes vx-acc-fade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.vx-acc-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .vx-acc-grid { grid-template-columns: 1.05fr .95fr; gap: 1.15rem; }
}
.vx-acc-card {
  border-radius: 1.15rem;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(24,24,27,.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  padding: 1.25rem 1.25rem 1.35rem;
}
@media (min-width: 768px) {
  .vx-acc-card { padding: 1.45rem 1.5rem 1.55rem; }
}
.vx-acc-card--danger {
  border-color: rgba(248,113,113,.22);
  background: linear-gradient(180deg, rgba(127,29,29,.18), rgba(24,24,27,.75));
}
.vx-acc-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: 1.15rem;
}
.vx-acc-card__head h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 650;
  color: #f4f4f5;
}
.vx-acc-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: .2rem .55rem;
  font-size: .7rem;
  font-weight: 650;
  border: 1px solid transparent;
}
.vx-acc-badge--ok {
  color: #6ee7b7;
  background: rgba(16,185,129,.12);
  border-color: rgba(16,185,129,.28);
}
.vx-acc-badge--warn {
  color: #fca5a5;
  background: rgba(239,68,68,.12);
  border-color: rgba(239,68,68,.28);
}
.vx-acc-badge--muted {
  color: #a1a1aa;
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.08);
}
.vx-acc-avatar {
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(145deg, #d4a017, #8a6a12);
  color: #0a0a0b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 750;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(212,160,23,.18);
}
.vx-acc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vx-acc-avatar--xl { width: 5.25rem; height: 5.25rem; font-size: 1.45rem; }
.vx-acc-avatar--lg { width: 6.5rem; height: 6.5rem; font-size: 1.7rem; }
.vx-acc-avatar-block {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  align-items: center;
}
.vx-acc-avatar-label {
  margin: 0;
  font-weight: 600;
  color: #e4e4e7;
}
.vx-acc-avatar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: .75rem;
}
.vx-acc-meta-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.vx-acc-meta-label {
  display: block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #71717a;
  margin-bottom: .2rem;
}
.vx-acc-meta-row p {
  margin: 0;
  font-size: .88rem;
  color: #e4e4e7;
}
@media (max-width: 640px) {
  .vx-acc-meta-row { grid-template-columns: 1fr; }
  .vx-acc-hero__identity { align-items: flex-start; }
}
.vx-acc-field-error {
  margin: .4rem 0 0;
  min-height: 0;
  font-size: .75rem;
  color: #fca5a5;
}
.vx-acc-field-error.is-visible { min-height: 1.1rem; }
.vx-acc-profiles {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: .85rem;
}
@media (min-width: 700px) {
  .vx-acc-profiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.vx-acc-profile {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  border-radius: .95rem;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.025);
  padding: .9rem;
  transition: border-color .2s ease, transform .2s ease;
}
.vx-acc-profile:hover {
  border-color: rgba(212,160,23,.28);
  transform: translateY(-1px);
}
.vx-acc-profile.is-current { border-color: rgba(212,160,23,.45); }
.vx-acc-profile__avatar {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: .85rem;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(212,160,23,.9), rgba(138,106,18,.9));
  color: #0a0a0b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 750;
  flex-shrink: 0;
}
.vx-acc-profile__avatar img { width: 100%; height: 100%; object-fit: cover; }
.vx-acc-profile__name {
  margin: 0;
  font-weight: 600;
  color: #f4f4f5;
}
.vx-acc-profile__meta {
  margin: .15rem 0 .55rem;
  font-size: .75rem;
  color: #71717a;
}
.vx-acc-profile__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .65rem;
}
.vx-acc-linkbtn {
  border: 0;
  background: none;
  padding: 0;
  color: #d4a017;
  font-size: .78rem;
  font-weight: 550;
}
.vx-acc-linkbtn:hover { text-decoration: underline; }
.vx-acc-linkbtn--danger { color: #f87171; }
.vx-acc-profile--add {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 7rem;
  border-style: dashed;
  color: #a1a1aa;
  text-align: center;
}
.vx-acc-profile__plus {
  font-size: 1.8rem;
  line-height: 1;
  color: #d4a017;
  margin-bottom: .25rem;
}
.vx-acc-continue {
  display: grid;
  gap: .85rem;
}
@media (min-width: 800px) {
  .vx-acc-continue { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.vx-acc-continue__item {
  display: flex;
  gap: .85rem;
  align-items: center;
  border-radius: .9rem;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.18);
  padding: .7rem;
}
.vx-acc-continue__poster {
  width: 4.5rem;
  aspect-ratio: 2/3;
  border-radius: .55rem;
  overflow: hidden;
  flex-shrink: 0;
  background: #18181b;
}
.vx-acc-continue__poster img { width: 100%; height: 100%; object-fit: cover; }
.vx-acc-continue__title {
  margin: 0;
  font-size: .92rem;
  font-weight: 600;
  color: #f4f4f5;
}
.vx-acc-continue__time {
  margin: .25rem 0 .45rem;
  font-size: .75rem;
  color: #a1a1aa;
}
.vx-acc-progress {
  height: .28rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  overflow: hidden;
}
.vx-acc-progress span {
  display: block;
  height: 100%;
  background: #d4a017;
}
.vx-acc-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .75rem;
}
.vx-acc-checklist li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .85rem .95rem;
  border-radius: .85rem;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
  color: #d4d4d8;
  font-size: .9rem;
}
.vx-acc-strength { margin-top: -.35rem; }
.vx-acc-strength__bar {
  height: .35rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}
.vx-acc-strength__bar span {
  display: block;
  height: 100%;
  width: 33%;
  transition: width .25s ease, background .25s ease;
  background: #f87171;
}
.vx-acc-strength.is-medium .vx-acc-strength__bar span { background: #fbbf24; }
.vx-acc-strength.is-strong .vx-acc-strength__bar span { background: #34d399; }
.vx-acc-strength__label {
  margin: .4rem 0 0;
  font-size: .75rem;
  color: #a1a1aa;
}
.vx-acc-history {
  display: grid;
  gap: .7rem;
}
.vx-acc-history__item {
  display: flex;
  gap: .85rem;
  align-items: center;
  padding: .65rem;
  border-radius: .85rem;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
  transition: border-color .2s ease, background .2s ease;
}
.vx-acc-history__item:hover {
  border-color: rgba(212,160,23,.3);
  background: rgba(212,160,23,.05);
}
.vx-acc-history__item img {
  width: 3.4rem;
  aspect-ratio: 2/3;
  object-fit: cover;
  border-radius: .45rem;
  background: #18181b;
  flex-shrink: 0;
}
.vx-acc-history__item h3 {
  margin: 0;
  font-size: .9rem;
  color: #f4f4f5;
  font-weight: 600;
}
.vx-acc-history__item p {
  margin: .15rem 0 0;
  font-size: .75rem;
  color: #71717a;
}
.vx-acc-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 1rem;
}
.vx-acc-chip {
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  color: #d4d4d8;
  border-radius: 999px;
  padding: .45rem .9rem;
  font-size: .8rem;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.vx-acc-chip.is-active,
.vx-acc-chip:hover {
  background: #d4a017;
  border-color: #d4a017;
  color: #0a0a0b;
}
.vx-acc-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 640px) {
  .vx-acc-list-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 900px) {
  .vx-acc-list-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.vx-acc-list-grid .content-card { width: 100%; }

/* Account Listem — mobile-app style */
.vx-acc[data-active-tab="listem"] .vx-acc-stats { display: none; }
@media (max-width: 767px) {
  .vx-acc[data-active-tab="listem"] .vx-acc-lead,
  .vx-acc[data-active-tab="listem"] .vx-acc-kicker { display: none; }
  .vx-acc[data-active-tab="listem"] .vx-acc-hero {
    padding-bottom: .85rem;
  }
  .vx-acc[data-active-tab="listem"] .vx-acc-title {
    font-size: 1.35rem;
  }
  .vx-acc[data-active-tab="listem"] .vx-acc-avatar--xl {
    width: 3.25rem;
    height: 3.25rem;
    font-size: 1rem;
  }
  .vx-acc[data-active-tab="listem"] .vx-acc-body {
    margin-top: .75rem;
  }
  .vx-acc[data-active-tab="listem"] .vx-acc-wrap {
    padding-left: 0;
    padding-right: 0;
  }
  .vx-acc[data-active-tab="listem"] .vx-acc-hero .vx-acc-wrap,
  .vx-acc[data-active-tab="listem"] .vx-acc-tabs {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.vx-acc-mylist {
  border-radius: 1.15rem;
  border: 1px solid rgba(255,255,255,.07);
  background:
    radial-gradient(520px 180px at 10% 0%, rgba(212,160,23,.1), transparent 70%),
    rgba(24,24,27,.55);
  padding: 1rem .95rem 1.25rem;
}
@media (min-width: 768px) {
  .vx-acc-mylist { padding: 1.35rem 1.4rem 1.5rem; }
}
@media (max-width: 767px) {
  .vx-acc-mylist {
    border-radius: 1.1rem 1.1rem 0 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    min-height: 60vh;
  }
}
.vx-acc-mylist__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .95rem;
  padding: 0 .15rem;
}
.vx-acc-mylist__head h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 750;
  letter-spacing: -.02em;
}
.vx-acc-mylist__count {
  margin: .28rem 0 0;
  color: #a1a1aa;
  font-size: .82rem;
}
.vx-acc-mylist__count-sub { color: #71717a; }
.vx-acc-mylist__full {
  flex-shrink: 0;
  color: #d4a017;
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
}
.vx-acc-mylist__toolbar {
  position: sticky;
  top: 4rem;
  z-index: 20;
  display: grid;
  gap: .7rem;
  margin: 0 -.15rem 1rem;
  padding: .55rem .15rem .7rem;
  background: linear-gradient(180deg, rgba(10,10,11,.96), rgba(10,10,11,.88) 70%, transparent);
  backdrop-filter: blur(10px);
}
@media (min-width: 768px) {
  .vx-acc-mylist__toolbar { top: 5rem; }
}
.vx-acc-mylist__filters {
  display: flex;
  gap: .45rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: .1rem;
}
.vx-acc-mylist__filters::-webkit-scrollbar { display: none; }
.vx-acc-mylist__chip {
  flex: 0 0 auto;
  min-height: 2.15rem;
  padding: .4rem .95rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: #d4d4d8;
  font-size: .82rem;
  font-weight: 600;
  transition: .15s ease;
}
.vx-acc-mylist__chip.is-active {
  background: #d4a017;
  border-color: #d4a017;
  color: #0a0a0b;
}
.vx-acc-mylist__search {
  position: relative;
  display: block;
}
.vx-acc-mylist__search svg {
  position: absolute;
  left: .85rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
  color: #71717a;
  pointer-events: none;
}
.vx-acc-mylist__search input {
  width: 100%;
  min-height: 2.55rem;
  border-radius: .9rem;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: #f4f4f5;
  padding: .65rem .9rem .65rem 2.45rem;
  font-size: .92rem;
  outline: none;
}
.vx-acc-mylist__search input::placeholder { color: #71717a; }
.vx-acc-mylist__search input:focus {
  border-color: rgba(212,160,23,.45);
  background: rgba(24,24,27,.85);
}
.vx-acc-mylist__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .95rem .7rem;
}
@media (min-width: 640px) {
  .vx-acc-mylist__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.1rem .9rem; }
}
@media (min-width: 1024px) {
  .vx-acc-mylist__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.vx-acc-mylist__card {
  min-width: 0;
  transition: opacity .2s ease, transform .2s ease;
}
.vx-acc-mylist__card.is-hidden,
.vx-acc-mylist__card[hidden] { display: none !important; }
.vx-acc-mylist__card.is-removing {
  opacity: 0;
  transform: scale(.96);
}
.vx-acc-mylist__poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  border-radius: .9rem;
  overflow: hidden;
  background: #18181b;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}
.vx-acc-mylist__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.vx-acc-mylist__card:active .vx-acc-mylist__poster img,
.vx-acc-mylist__card:hover .vx-acc-mylist__poster img {
  transform: scale(1.05);
}
.vx-acc-mylist__badge,
.vx-acc-mylist__rating {
  position: absolute;
  top: .45rem;
  z-index: 2;
  font-size: .62rem;
  font-weight: 700;
  padding: .18rem .4rem;
  border-radius: .4rem;
  background: rgba(0,0,0,.72);
  border: 1px solid rgba(255,255,255,.12);
}
.vx-acc-mylist__badge { left: .45rem; color: #f4f4f5; text-transform: uppercase; letter-spacing: .04em; }
.vx-acc-mylist__rating { right: .45rem; color: #d4a017; }
.vx-acc-mylist__play {
  position: absolute;
  inset: auto auto .55rem .55rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #d4a017;
  color: #0a0a0b;
  box-shadow: 0 6px 16px rgba(0,0,0,.35);
  opacity: .95;
}
.vx-acc-mylist__play svg { width: .85rem; height: .85rem; margin-left: 1px; }
.vx-acc-mylist__meta { margin-top: .55rem; }
.vx-acc-mylist__meta h3 {
  margin: 0;
  font-size: .88rem;
  font-weight: 650;
  line-height: 1.3;
}
.vx-acc-mylist__meta h3 a { color: #f4f4f5; }
.vx-acc-mylist__meta h3 a:hover { color: #d4a017; }
.vx-acc-mylist__meta > p {
  margin: .2rem 0 0;
  font-size: .72rem;
  color: #71717a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vx-acc-mylist__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem;
  margin-top: .5rem;
}
.vx-acc-mylist__btn {
  min-height: 2rem;
  border-radius: .55rem;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: #e4e4e7;
  font-size: .72rem;
  font-weight: 650;
  padding: .35rem .4rem;
}
.vx-acc-mylist__btn--play {
  background: #d4a017;
  border-color: #d4a017;
  color: #0a0a0b;
}
.vx-acc-mylist__btn:disabled { opacity: .55; }
.vx-acc-mylist__empty {
  text-align: center;
  padding: 2.5rem 1rem;
}
.vx-acc-mylist__empty-icon {
  width: 3.4rem;
  height: 3.4rem;
  margin: 0 auto .9rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  color: #d4a017;
  background: rgba(212,160,23,.1);
  border: 1px solid rgba(212,160,23,.25);
}
.vx-acc-mylist__empty-icon svg { width: 1.45rem; height: 1.45rem; }
.vx-acc-mylist__empty h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}
.vx-acc-mylist__empty p {
  margin: .45rem auto 1.1rem;
  max-width: 22rem;
  color: #a1a1aa;
  font-size: .9rem;
}
.vx-acc-notifs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .65rem;
}
.vx-acc-notif {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .9rem 1rem;
  border-radius: .9rem;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
}
.vx-acc-notif.is-unread {
  border-color: rgba(212,160,23,.25);
  background: rgba(212,160,23,.06);
}
.vx-acc-notif__dot {
  width: .55rem;
  height: .55rem;
  border-radius: 999px;
  margin-top: .4rem;
  background: #52525b;
  flex-shrink: 0;
}
.vx-acc-notif.is-unread .vx-acc-notif__dot { background: #d4a017; }
.vx-acc-notif__title {
  margin: 0;
  font-size: .92rem;
  font-weight: 600;
  color: #f4f4f5;
}
.vx-acc-notif__body {
  margin: .25rem 0 0;
  font-size: .82rem;
  color: #a1a1aa;
}
.vx-acc-notif__time {
  margin: .35rem 0 0;
  font-size: .72rem;
  color: #71717a;
}

/* ===== My List (Listem) ===== */
.vx-list { padding-bottom: 4rem; overflow-x: clip; }
.vx-list-wrap {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .vx-list-wrap { padding: 0 2rem; }
}
.vx-list-hero {
  position: relative;
  padding: 2rem 0 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background:
    radial-gradient(800px 240px at 10% -20%, rgba(212,160,23,.16), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 75%);
}
.vx-list-kicker {
  margin: 0 0 .4rem;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(212,160,23,.9);
}
.vx-list-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
}
.vx-list-lead {
  margin: .65rem 0 0;
  max-width: 36rem;
  color: #a1a1aa;
  font-size: .95rem;
}
.vx-list-body { margin-top: 1.35rem; }
.vx-list-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .85rem 1rem;
}
.vx-list-filters {
  display: flex;
  gap: .45rem;
  overflow-x: auto;
  max-width: 100%;
  padding-bottom: .15rem;
  scrollbar-width: none;
}
.vx-list-filters::-webkit-scrollbar { display: none; }
.vx-list-chip {
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  color: #d4d4d8;
  border-radius: 999px;
  padding: .5rem 1rem;
  font-size: .82rem;
  font-weight: 550;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.vx-list-chip:hover { border-color: rgba(212,160,23,.35); color: #fff; }
.vx-list-chip.is-active {
  background: #d4a017;
  border-color: #d4a017;
  color: #0a0a0b;
}
.vx-list-tools {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: center;
  width: 100%;
}
@media (min-width: 768px) {
  .vx-list-tools { width: auto; }
}
.vx-list-search {
  position: relative;
  flex: 1 1 100%;
  min-width: 0;
}
@media (min-width: 640px) {
  .vx-list-search { flex: 1 1 16rem; min-width: 14rem; }
}
.vx-list-search__icon {
  position: absolute;
  left: .9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: #71717a;
  pointer-events: none;
}
.vx-list-search input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  border-radius: 999px;
  color: #fff;
  padding: .65rem 1rem .65rem 2.4rem;
  font-size: .875rem;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.vx-list-search input::placeholder { color: #71717a; }
.vx-list-search input:focus {
  border-color: rgba(212,160,23,.45);
  background: rgba(24,24,27,.9);
}
.vx-list-sort select {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: #e4e4e7;
  border-radius: 999px;
  padding: .65rem 2rem .65rem 1rem;
  font-size: .82rem;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2371717a'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .7rem center;
  background-size: 1rem;
  cursor: pointer;
}
.vx-list-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: .5rem;
  margin: 1.1rem 0 1.25rem;
}
.vx-list-meta p {
  margin: 0;
  font-size: .9rem;
  color: #e4e4e7;
  font-weight: 600;
}
.vx-list-meta__sub {
  font-weight: 400 !important;
  color: #71717a !important;
  font-size: .8rem !important;
}
.vx-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem .85rem;
}
@media (min-width: 640px) {
  .vx-list-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.15rem 1rem; }
}
@media (min-width: 900px) {
  .vx-list-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1200px) {
  .vx-list-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
@media (min-width: 1500px) {
  .vx-list-grid { grid-template-columns: repeat(7, minmax(0, 1fr)); }
}
.vx-list-card {
  position: relative;
  min-width: 0;
  transition: transform .25s ease, opacity .22s ease;
}
.vx-list-card.is-removing {
  opacity: 0;
  transform: scale(.96);
}
.vx-list-card__poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  border-radius: .85rem;
  overflow: hidden;
  background: #18181b;
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}
.vx-list-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.vx-list-card:hover .vx-list-card__poster img { transform: scale(1.06); }
.vx-list-card__badge {
  position: absolute;
  top: .55rem;
  left: .55rem;
  z-index: 2;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .22rem .45rem;
  border-radius: .4rem;
  background: rgba(0,0,0,.72);
  color: #f4f4f5;
  border: 1px solid rgba(255,255,255,.12);
}
.vx-list-card__rating {
  position: absolute;
  top: .55rem;
  right: .55rem;
  z-index: 2;
  font-size: .68rem;
  font-weight: 700;
  padding: .2rem .4rem;
  border-radius: .4rem;
  background: rgba(0,0,0,.72);
  color: #d4a017;
}
.vx-list-card__hover {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: .85rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  gap: .4rem;
  padding: .75rem;
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,.88) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 3;
}
.vx-list-card:hover .vx-list-card__hover,
.vx-list-card:focus-within .vx-list-card__hover {
  opacity: 1;
  pointer-events: auto;
}
.vx-list-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  min-height: 2.15rem;
  border-radius: .65rem;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(24,24,27,.88);
  color: #f4f4f5;
  font-size: .75rem;
  font-weight: 600;
  padding: .45rem .65rem;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.vx-list-action svg { width: .85rem; height: .85rem; }
.vx-list-action:hover {
  border-color: rgba(212,160,23,.45);
  color: #fff;
}
.vx-list-action--play {
  background: #d4a017;
  border-color: #d4a017;
  color: #0a0a0b;
}
.vx-list-action--play:hover { background: #e0b33a; color: #0a0a0b; }
.vx-list-card__meta { margin-top: .65rem; }
.vx-list-card__title {
  margin: 0;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.3;
}
.vx-list-card__title a { color: #f4f4f5; }
.vx-list-card__title a:hover { color: #d4a017; }
.vx-list-card__sub {
  margin: .25rem 0 0;
  font-size: .75rem;
  color: #71717a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vx-list-inline-remove {
  margin-top: .45rem;
  border: 0;
  background: none;
  padding: 0;
  color: #d4a017;
  font-size: .72rem;
  font-weight: 600;
}
.vx-list-inline-remove:hover { text-decoration: underline; }
@media (hover: hover) and (pointer: fine) {
  .vx-list-inline-remove { display: none; }
}
.vx-list-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  color: #a1a1aa;
  font-size: .85rem;
}
.vx-list-empty,
.vx-list-gate {
  margin: 1.5rem 0 1rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255,255,255,.07);
  background:
    radial-gradient(500px 180px at 50% 0%, rgba(212,160,23,.12), transparent 70%),
    rgba(24,24,27,.65);
  backdrop-filter: blur(12px);
  text-align: center;
  padding: 3rem 1.5rem;
}
.vx-list-empty__visual,
.vx-list-gate__icon {
  width: 4.25rem;
  height: 4.25rem;
  margin: 0 auto 1.1rem;
  border-radius: 1.15rem;
  display: grid;
  place-items: center;
  background: rgba(212,160,23,.1);
  border: 1px solid rgba(212,160,23,.25);
  color: #d4a017;
}
.vx-list-empty__visual svg,
.vx-list-gate__icon svg { width: 1.8rem; height: 1.8rem; }
.vx-list-empty h2,
.vx-list-gate h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fafafa;
}
.vx-list-empty p,
.vx-list-gate p {
  margin: .6rem auto 0;
  max-width: 26rem;
  color: #a1a1aa;
  font-size: .92rem;
  line-height: 1.5;
}
.vx-list-empty__actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: center;
}
.vx-list-reco { margin-top: 3rem; }
.vx-list-reco__head { margin-bottom: 1.1rem; }
.vx-list-reco__head h2 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 750;
}
.vx-list-reco__head p {
  margin: .35rem 0 0;
  color: #71717a;
  font-size: .85rem;
}
.vx-list-reco__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 640px) {
  .vx-list-reco__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .vx-list-reco__grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
.vx-list-reco__grid .content-card { width: 100%; }

/* Navbar active */
.site-nav-link.is-active { color: #fff; }
.site-nav-link.is-active::after {
  content: '';
  display: block;
  height: 2px;
  margin-top: .2rem;
  border-radius: 2px;
  background: #d4a017;
}

/* ===== Search / Keşfet ===== */
.vx-search {
  padding-bottom: 4rem;
  overflow-x: clip;
  color: #f4f4f5;
  color-scheme: dark;
}
.vx-search-wrap {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .vx-search-wrap { padding: 0 2rem; }
}
.vx-search-hero {
  padding: 2rem 0 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background:
    radial-gradient(900px 280px at 20% -30%, rgba(212,160,23,.16), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 80%);
}
.vx-search-kicker {
  margin: 0 0 .35rem;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(212,160,23,.9);
}
.vx-search-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.03em;
}
.vx-search-bar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  align-items: stretch;
  width: 100%;
  max-width: 52rem;
}
.vx-search-bar__icon {
  position: absolute;
  left: 1.05rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.15rem;
  height: 1.15rem;
  color: #71717a;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 639px) {
  .vx-search-bar__icon { top: 1.35rem; transform: none; }
}
.vx-search-bar input[type="search"] {
  flex: 1 1 100%;
  min-width: 0;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(24,24,27,.75);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  color: #fff;
  padding: 1rem 1rem 1rem 2.85rem;
  font-size: 1rem;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
@media (min-width: 640px) {
  .vx-search-bar input[type="search"] {
    flex: 1 1 auto;
    border-radius: 999px;
  }
}
.vx-search-bar input::placeholder { color: #71717a; }
.vx-search-bar input:focus {
  border-color: rgba(212,160,23,.5);
  box-shadow: 0 0 0 3px rgba(212,160,23,.12);
}
.vx-search-bar__btn {
  flex: 1 1 100%;
  justify-content: center;
}
@media (min-width: 640px) {
  .vx-search-bar__btn {
    flex: 0 0 auto;
    border-radius: 999px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.vx-search-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + .45rem);
  z-index: 40;
  max-height: 22rem;
  overflow-y: auto;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.12);
  background: #18181b;
  color: #f4f4f5;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px rgba(0,0,0,.45);
}
.vx-search-suggest__item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem .9rem;
  border-bottom: 1px solid rgba(255,255,255,.04);
  color: #f4f4f5;
  text-decoration: none;
}
.vx-search-suggest__item:hover { background: rgba(255,255,255,.06); color: #fafafa; }
.vx-search-suggest__poster {
  width: 2.5rem;
  height: 3.5rem;
  object-fit: cover;
  border-radius: .4rem;
  background: #18181b;
  flex-shrink: 0;
}
.vx-search-suggest__poster--empty {
  display: grid;
  place-items: center;
  font-size: .6rem;
  color: #71717a;
  text-align: center;
  padding: .2rem;
}
.vx-search-suggest__title {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: #f4f4f5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vx-search-suggest__meta {
  display: block;
  margin-top: .15rem;
  font-size: .72rem;
  color: #71717a;
}
.vx-search-suggest__empty {
  margin: 0;
  padding: 1.1rem 1rem;
  font-size: .9rem;
  font-weight: 500;
  color: #e4e4e7;
  text-align: center;
}
.vx-search-body { margin-top: 1.5rem; }
.vx-search-section { margin-bottom: 2.25rem; }
.vx-search-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .9rem;
}
.vx-search-section__head h2,
.vx-search-subtitle {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}
.vx-search-subtitle { margin-bottom: .85rem; font-size: 1.1rem; }
.vx-search-textbtn {
  border: 0;
  background: none;
  color: #d4a017;
  font-size: .8rem;
  font-weight: 600;
  padding: 0;
}
.vx-search-textbtn:hover { text-decoration: underline; }
.vx-search-chips,
.vx-search-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.vx-search-chip-row {
  flex-wrap: nowrap;
  overflow-x: auto;
  max-width: 100%;
  padding-bottom: .15rem;
  scrollbar-width: none;
}
.vx-search-chip-row::-webkit-scrollbar { display: none; }
.vx-search-chip {
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: #d4d4d8;
  border-radius: 999px;
  padding: .45rem .9rem;
  font-size: .8rem;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.vx-search-chip:hover,
.vx-search-chip.is-active {
  background: #d4a017;
  border-color: #d4a017;
  color: #0a0a0b;
}
.vx-search-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem .85rem;
}
@media (min-width: 640px) {
  .vx-search-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 900px) {
  .vx-search-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1200px) {
  .vx-search-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
.vx-search-card { position: relative; min-width: 0; }
.vx-search-card__poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  border-radius: .85rem;
  overflow: hidden;
  background: #18181b;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}
.vx-search-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.vx-search-card:hover .vx-search-card__poster img { transform: scale(1.06); }
.vx-search-card__badge,
.vx-search-card__rating {
  position: absolute;
  top: .5rem;
  z-index: 2;
  font-size: .65rem;
  font-weight: 700;
  padding: .2rem .4rem;
  border-radius: .35rem;
  background: rgba(0,0,0,.72);
}
.vx-search-card__badge { left: .5rem; color: #f4f4f5; }
.vx-search-card__rating { right: .5rem; color: #d4a017; }
.vx-search-card__hover {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: .85rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .35rem;
  padding: .65rem;
  background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,.9));
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 3;
}
.vx-search-card:hover .vx-search-card__hover,
.vx-search-card:focus-within .vx-search-card__hover {
  opacity: 1;
  pointer-events: auto;
}
.vx-search-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  min-height: 2.05rem;
  width: 100%;
  border-radius: .6rem;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(24,24,27,.9);
  color: #f4f4f5;
  font-size: .72rem;
  font-weight: 600;
  padding: .4rem .55rem;
}
.vx-search-action svg { width: .8rem; height: .8rem; }
.vx-search-action--play {
  background: #d4a017;
  border-color: #d4a017;
  color: #0a0a0b;
}
.vx-search-card__meta { margin-top: .6rem; }
.vx-search-card__meta h3 {
  margin: 0;
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.3;
}
.vx-search-card__meta h3 a { color: #f4f4f5; }
.vx-search-card__meta h3 a:hover { color: #d4a017; }
.vx-search-card__meta p {
  margin: .2rem 0 0;
  font-size: .74rem;
  color: #71717a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vx-search-layout {
  display: grid;
  gap: 1.1rem;
}
.vx-search-barfilters {
  position: sticky;
  top: 4rem;
  z-index: 30;
  margin: 0 -.15rem .25rem;
  padding: .55rem .15rem .85rem;
  background: linear-gradient(180deg, rgba(10,10,11,.97), rgba(10,10,11,.9) 75%, transparent);
  backdrop-filter: blur(12px);
  overflow: visible;
}
@media (min-width: 768px) {
  .vx-search-barfilters { top: 5rem; }
}
.vx-search-barfilters__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.vx-search-type {
  display: flex;
  gap: .35rem;
  overflow-x: auto;
  scrollbar-width: none;
  min-width: 0;
  flex: 1;
  padding: .1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.vx-search-type::-webkit-scrollbar { display: none; }
.vx-search-type__btn {
  flex: 1 0 auto;
  min-height: 2.2rem;
  padding: .4rem .95rem;
  border-radius: 999px;
  color: #d4d4d8;
  font-size: .82rem;
  font-weight: 650;
  text-align: center;
  white-space: nowrap;
  transition: .15s ease;
}
.vx-search-type__btn.is-active {
  background: #d4a017;
  color: #0a0a0b;
}
.vx-search-barfilters__more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  flex-shrink: 0;
  min-height: 2.35rem;
  padding: .45rem .85rem;
  border-radius: .85rem;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: #f4f4f5;
  font-size: .8rem;
  font-weight: 650;
}
.vx-search-barfilters__more svg {
  width: 1rem;
  height: 1rem;
}
@media (min-width: 900px) {
  .vx-search-barfilters__more { display: none; }
}
.vx-search-active {
  display: flex;
  flex-wrap: nowrap;
  gap: .4rem;
  overflow-x: auto;
  scrollbar-width: none;
  margin-top: .7rem;
  padding-bottom: .1rem;
}
.vx-search-active::-webkit-scrollbar { display: none; }
.vx-search-active__chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  min-height: 1.9rem;
  padding: .3rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(212,160,23,.35);
  background: rgba(212,160,23,.12);
  color: #f4f4f5;
  font-size: .75rem;
  font-weight: 600;
}
.vx-search-active__chip span { color: #d4a017; font-size: .95rem; line-height: 1; }
.vx-search-active__clear {
  flex: 0 0 auto;
  align-self: center;
  color: #a1a1aa;
  font-size: .75rem;
  font-weight: 600;
  padding: .25rem .35rem;
}
.vx-search-active__clear:hover { color: #d4a017; }

/* —— Custom FilterDropdown / listbox —— */
.vx-dd {
  position: relative;
  display: inline-flex;
  vertical-align: top;
}
.vx-dd__btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 2.45rem;
  padding: .45rem .85rem .45rem 1rem;
  border-radius: .85rem;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: #f4f4f5;
  font-size: .88rem;
  font-weight: 650;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.vx-dd__btn:hover,
.vx-dd.is-open .vx-dd__btn {
  border-color: rgba(212,160,23,.45);
  background: rgba(212,160,23,.08);
}
.vx-dd__value { max-width: 10rem; overflow: hidden; text-overflow: ellipsis; }
.vx-dd__chev {
  width: .95rem;
  height: .95rem;
  color: #a1a1aa;
  transition: transform .18s ease;
  flex-shrink: 0;
}
.vx-dd.is-open .vx-dd__chev { transform: rotate(180deg); color: #d4a017; }
.vx-dd__panel {
  position: absolute;
  top: calc(100% + .4rem);
  left: 0;
  z-index: 60;
  min-width: max(100%, 12.5rem);
  max-width: min(18rem, 86vw);
  max-height: min(20rem, 55vh);
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(18,18,20,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 48px rgba(0,0,0,.55);
  overflow: hidden;
  transform-origin: top left;
  animation: vx-dd-in .16s cubic-bezier(.22,1,.36,1);
}
.vx-dd__panel.is-align-end {
  left: auto;
  right: 0;
  transform-origin: top right;
}
.vx-dd__panel[hidden] { display: none !important; }
@keyframes vx-dd-in {
  from { opacity: 0; transform: translateY(-6px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .vx-dd__panel { animation: none; }
  .vx-dd__chev { transition: none; }
}
.vx-dd__head {
  padding: .75rem 1rem .45rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #a1a1aa;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.vx-dd__options {
  overflow-y: auto;
  padding: .35rem;
  overscroll-behavior: contain;
}
.vx-dd__option {
  display: flex;
  align-items: center;
  gap: .55rem;
  width: 100%;
  text-align: left;
  border: 0;
  border-radius: .65rem;
  background: transparent;
  color: #e4e4e7;
  font-size: .9rem;
  font-weight: 500;
  padding: .6rem .7rem;
  cursor: pointer;
  transition: background .12s ease, color .12s ease;
}
.vx-dd__option:hover,
.vx-dd__option:focus-visible {
  background: rgba(255,255,255,.06);
  color: #fafafa;
  outline: none;
}
.vx-dd__option.is-selected {
  background: rgba(212,160,23,.12);
  color: #f5e6b8;
}
.vx-dd__check {
  width: 1rem;
  flex-shrink: 0;
  color: #d4a017;
  font-size: .85rem;
  font-weight: 700;
}

.vx-filterbar {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.vx-filterbar__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.vx-filterbar__label {
  margin: 0;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #71717a;
}
.vx-filterbar__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
  overflow: visible;
}
@media (min-width: 720px) {
  .vx-filterbar__row {
    display: flex;
    flex-wrap: wrap;
  }
}
/* Inline dropdowns cover mobile; sheet toggle kept as optional fallback */
.vx-search-barfilters__more { display: none !important; }
.vx-filterbar__row .vx-dd { width: 100%; min-width: 0; }
@media (min-width: 720px) {
  .vx-filterbar__row .vx-dd { width: auto; }
  .vx-filterbar__row .vx-dd__btn { width: auto; }
}
.vx-filterbar__row .vx-dd__btn { width: 100%; justify-content: space-between; }

/* Mobile 2-col: right-column panels open leftward so they stay on screen */
@media (max-width: 719px) {
  .vx-search,
  .vx-search-barfilters,
  .vx-filterbar {
    overflow: visible;
  }
  .vx-filterbar__row .vx-dd__panel {
    min-width: 100%;
    width: max(100%, 11.5rem);
    max-width: min(16rem, calc(100vw - 1.5rem));
  }
  .vx-filterbar__row .vx-dd:nth-child(even) .vx-dd__panel {
    left: auto;
    right: 0;
    transform-origin: top right;
  }
}
.vx-search-sheet .vx-dd { display: block; width: 100%; }
.vx-search-sheet .vx-dd__btn { width: 100%; justify-content: space-between; }
.vx-search-sheet .vx-dd__panel { left: 0; right: 0; min-width: 0; max-width: none; }
.vx-search-results.is-loading {
  opacity: .45;
  pointer-events: none;
  transition: opacity .2s ease;
}
.vx-search-skeleton {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem .85rem;
  margin-top: 1rem;
}
@media (min-width: 640px) { .vx-search-skeleton { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 900px) { .vx-search-skeleton { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .vx-search-skeleton { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
.vx-search-skeleton__card {
  aspect-ratio: 2/3;
  border-radius: .85rem;
  background: linear-gradient(90deg, rgba(255,255,255,.04), rgba(255,255,255,.08), rgba(255,255,255,.04));
  background-size: 200% 100%;
  animation: vx-skel 1.1s ease infinite;
}
@keyframes vx-skel {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
.vx-search-sheet[hidden] { display: none !important; }
.vx-search-sheet {
  position: fixed;
  inset: 0;
  z-index: 80;
}
.vx-search-sheet__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0,0,0,.62);
}
.vx-search-sheet__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: min(82vh, 640px);
  overflow: auto;
  border-radius: 1.25rem 1.25rem 0 0;
  border: 1px solid rgba(255,255,255,.1);
  border-bottom: 0;
  background: #121214;
  padding: .55rem 1rem calc(1.1rem + env(safe-area-inset-bottom));
  box-shadow: 0 -20px 50px rgba(0,0,0,.45);
  animation: vx-search-sheet-up .22s ease;
}
@keyframes vx-search-sheet-up {
  from { transform: translateY(18%); opacity: .6; }
  to { transform: translateY(0); opacity: 1; }
}
.vx-search-sheet__grab {
  width: 2.4rem;
  height: .28rem;
  margin: .15rem auto .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}
.vx-search-sheet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.vx-search-sheet__head h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 750;
}
.vx-search-sheet__close {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: #f4f4f5;
  font-size: 1.2rem;
  line-height: 1;
}
.vx-search-sheet__grid {
  display: grid;
  gap: .75rem;
}
.vx-search-field {
  display: grid;
  gap: .35rem;
}
.vx-search-field span {
  color: #a1a1aa;
  font-size: .75rem;
  font-weight: 650;
}
.vx-search-field select {
  width: 100%;
  min-height: 2.7rem;
  border-radius: .85rem;
  border: 1px solid rgba(255,255,255,.1);
  background: #1a1a1e;
  color: #f4f4f5;
  padding: .7rem .9rem;
  font-size: .95rem;
  outline: none;
  color-scheme: dark;
}
.vx-search-field select option,
.vx-search-field select optgroup {
  background-color: #1a1a1e;
  color: #f4f4f5;
}
.vx-search-field select:focus {
  border-color: rgba(212,160,23,.45);
}
.vx-search-sheet__actions {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: .65rem;
  margin-top: 1.15rem;
}
body.is-search-filters-open { overflow: hidden; }
.vx-search-results__head {
  margin-bottom: 1.25rem;
}
.vx-search-results__head h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 750;
  color: #fafafa;
}
.vx-search-results__head p {
  margin: .3rem 0 0;
  color: #a1a1aa;
  font-size: .85rem;
}
.vx-search-empty {
  text-align: center;
  border-radius: 1.2rem;
  border: 1px solid rgba(255,255,255,.1);
  background:
    radial-gradient(420px 160px at 50% 0%, rgba(212,160,23,.14), transparent 70%),
    #18181b;
  padding: 3rem 1.25rem;
  color: #f4f4f5;
}
.vx-search-empty__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  color: #d4a017;
  background: rgba(212,160,23,.1);
  border: 1px solid rgba(212,160,23,.25);
}
.vx-search-empty__icon svg { width: 1.7rem; height: 1.7rem; }
.vx-search-empty h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fafafa;
}
.vx-search-empty p {
  margin: .55rem auto 1.2rem;
  max-width: 26rem;
  color: #d4d4d8;
  font-size: .92rem;
}
.vx-search-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: 2rem;
}
.vx-search-pager__pages {
  display: flex;
  gap: .35rem;
}
.vx-search-page {
  min-width: 2.1rem;
  height: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .55rem;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color: #d4d4d8;
  font-size: .85rem;
}
.vx-search-page.is-active,
.vx-search-page:hover {
  background: #d4a017;
  border-color: #d4a017;
  color: #0a0a0b;
}
/* ===== Category / Browse pages ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.vx-cat { color: #f4f4f5; }
.vx-cat-wrap {
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
}
.vx-cat-hero {
  position: relative;
  padding: 6.5rem 0 2.5rem;
  overflow: hidden;
  background:
    radial-gradient(720px 280px at 15% 0%, rgba(212,160,23,.16), transparent 70%),
    linear-gradient(180deg, #141416 0%, #0a0a0b 100%);
}
.vx-cat-hero--compact { padding: 5.5rem 0 1.75rem; }
.vx-cat-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.vx-cat-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
  filter: saturate(.9);
}
.vx-cat-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,11,.92) 8%, rgba(10,10,11,.55) 55%, rgba(10,10,11,.85) 100%),
    linear-gradient(180deg, rgba(10,10,11,.25) 0%, rgba(10,10,11,.95) 100%);
}
.vx-cat-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
  margin-bottom: 1rem;
  color: #a1a1aa;
  font-size: .82rem;
}
.vx-cat-crumb a { color: #d4d4d8; }
.vx-cat-crumb a:hover { color: #d4a017; }
.vx-cat-title {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.vx-cat-lead {
  margin: .7rem 0 0;
  max-width: 36rem;
  color: #d4d4d8;
  font-size: 1rem;
}
.vx-cat-count {
  margin: .85rem 0 0;
  color: #a1a1aa;
  font-size: .9rem;
}
.vx-cat-body { padding: 1.5rem 0 3.5rem; }
.vx-cat-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.vx-cat-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.vx-cat-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: .35rem .9rem;
  border-radius: .65rem;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  color: #d4d4d8;
  font-size: .88rem;
  transition: .15s ease;
}
.vx-cat-chip:hover {
  border-color: rgba(212,160,23,.45);
  color: #fafafa;
}
.vx-cat-chip.is-active {
  background: #d4a017;
  border-color: #d4a017;
  color: #0a0a0b;
  font-weight: 650;
}
.vx-cat-sort select {
  min-height: 2.15rem;
  padding: .4rem .8rem;
  border-radius: .65rem;
  border: 1px solid rgba(255,255,255,.1);
  background: #18181b;
  color: #f4f4f5;
  font-size: .88rem;
}
.vx-cat-section { margin-bottom: 2.25rem; }
.vx-cat-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.vx-cat-subtitle {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 750;
}
.vx-cat-more {
  color: #a1a1aa;
  font-size: .88rem;
  white-space: nowrap;
}
.vx-cat-more:hover { color: #d4a017; }
.vx-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem 0.75rem;
}
@media (min-width: 640px) {
  .vx-cat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .vx-cat-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
.vx-cat-empty {
  text-align: center;
  border-radius: 1.2rem;
  border: 1px solid rgba(255,255,255,.07);
  background:
    radial-gradient(420px 160px at 50% 0%, rgba(212,160,23,.12), transparent 70%),
    rgba(24,24,27,.55);
  padding: 3rem 1.25rem;
}
.vx-cat-empty h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}
.vx-cat-empty p {
  margin: .55rem auto 1.2rem;
  max-width: 26rem;
  color: #a1a1aa;
}
.vx-cat-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: 2rem;
}
.vx-cat-pager__pages {
  display: flex;
  gap: .35rem;
}
.vx-cat-page {
  min-width: 2.1rem;
  height: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .55rem;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color: #d4d4d8;
  font-size: .85rem;
}
.vx-cat-page.is-active,
.vx-cat-page:hover {
  background: #d4a017;
  border-color: #d4a017;
  color: #0a0a0b;
}
.vx-cat-genre-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}
@media (min-width: 720px) {
  .vx-cat-genre-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .vx-cat-genre-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.vx-cat-genre-card {
  display: block;
  padding: 1.25rem 1.15rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(145deg, rgba(212,160,23,.12), transparent 55%),
    rgba(24,24,27,.7);
  transition: .18s ease;
}
.vx-cat-genre-card:hover {
  border-color: rgba(212,160,23,.4);
  transform: translateY(-2px);
}
.vx-cat-genre-card h2 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 750;
  color: #fafafa;
}
.vx-cat-genre-card p {
  margin: .4rem 0 0;
  color: #a1a1aa;
  font-size: .85rem;
}

/* ===== Notifications page ===== */
.vx-notif-page {
  padding: 1.25rem 0 3.5rem;
  color: #f4f4f5;
}
.vx-notif-page__wrap {
  width: min(100% - 2rem, 720px);
  margin-inline: auto;
}
.vx-notif-page__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}
.vx-notif-page__title {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.02em;
}
.vx-notif-page__lead {
  margin: .45rem 0 0;
  color: #a1a1aa;
  font-size: .92rem;
}
.vx-notif-page__empty {
  text-align: center;
  border-radius: 1.2rem;
  border: 1px solid rgba(255,255,255,.07);
  background:
    radial-gradient(420px 160px at 50% 0%, rgba(212,160,23,.12), transparent 70%),
    rgba(24,24,27,.55);
  padding: 3rem 1.25rem;
}
.vx-notif-page__empty h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}
.vx-notif-page__empty p {
  margin: .55rem auto 1.2rem;
  max-width: 24rem;
  color: #a1a1aa;
}
.vx-notif-page__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .65rem;
}
.vx-notif-page__item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(24,24,27,.55);
}
.vx-notif-page__item.is-unread {
  border-color: rgba(212,160,23,.28);
  background: rgba(212,160,23,.06);
}
.vx-notif-page__dot {
  width: .55rem;
  height: .55rem;
  margin-top: .45rem;
  border-radius: 999px;
  background: #52525b;
  flex-shrink: 0;
}
.vx-notif-page__item.is-unread .vx-notif-page__dot { background: #d4a017; }
.vx-notif-page__item-title {
  margin: 0;
  font-size: .98rem;
  font-weight: 650;
  color: #fafafa;
}
.vx-notif-page__item-body {
  margin: .35rem 0 0;
  color: #a1a1aa;
  font-size: .88rem;
  line-height: 1.45;
}
.vx-notif-page__item-time {
  margin: .45rem 0 0;
  color: #71717a;
  font-size: .75rem;
}
.vx-notif-page__open {
  flex-shrink: 0;
  align-self: center;
  padding: .4rem .75rem;
  border-radius: .55rem;
  border: 1px solid rgba(255,255,255,.1);
  color: #d4d4d8;
  font-size: .8rem;
}
.vx-notif-page__open:hover {
  border-color: rgba(212,160,23,.45);
  color: #d4a017;
}

/* ===== Profile select + PIN lock ===== */
.vx-profiles {
  width: 100%;
  text-align: center;
  padding: 1rem 0 2rem;
}
.vx-profiles__title {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.03em;
}
.vx-profiles__lead {
  margin: .45rem 0 2rem;
  color: #a1a1aa;
  font-size: .95rem;
}
.vx-profiles__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 1.5rem;
}
.vx-profiles__item { width: 7.25rem; }
@media (min-width: 640px) {
  .vx-profiles__item { width: 8.5rem; }
}
.vx-profiles__card {
  display: block;
  width: 100%;
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  cursor: pointer;
}
.vx-profiles__avatar {
  position: relative;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(145deg, #1a1a1e, #121214);
  border: 2px solid transparent;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08);
  transition: border-color .2s ease, transform .2s ease;
  display: grid;
  place-items: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #d4a017;
}
.vx-profiles__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vx-profiles__card:hover .vx-profiles__avatar,
.vx-profiles__card:focus-visible .vx-profiles__avatar {
  border-color: #d4a017;
  transform: translateY(-2px);
}
.vx-profiles__avatar--add {
  border: 2px dashed rgba(255,255,255,.18);
  box-shadow: none;
  color: #71717a;
  font-size: 2.6rem;
}
.vx-profiles__card--add:hover .vx-profiles__avatar--add {
  border-color: rgba(212,160,23,.55);
  color: #d4a017;
}
.vx-profiles__lock {
  position: absolute;
  right: .4rem;
  bottom: .4rem;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.72);
  border: 1px solid rgba(255,255,255,.14);
  color: #f4f4f5;
}
.vx-profiles__lock svg { width: .85rem; height: .85rem; }
.vx-profiles__name {
  margin: .7rem 0 0;
  font-size: .9rem;
  font-weight: 600;
  color: #d4d4d8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vx-profiles__card:hover .vx-profiles__name { color: #fff; }
.vx-profiles__meta {
  margin: .2rem 0 0;
  font-size: .68rem;
  color: #71717a;
}
.vx-profiles__meta--kids { color: #34d399; }
.vx-profiles__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem;
  margin-top: 2.25rem;
}
body.is-pin-open { overflow: hidden; }
.vx-pin[hidden] { display: none !important; }
.vx-pin {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.vx-pin__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
}
.vx-pin__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 22rem);
  border-radius: 1.35rem;
  border: 1px solid rgba(255,255,255,.1);
  background:
    radial-gradient(420px 180px at 50% 0%, rgba(212,160,23,.14), transparent 70%),
    #121214;
  padding: 1.4rem 1.15rem 1.25rem;
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  text-align: center;
  animation: vx-pin-in .22s ease;
}
@keyframes vx-pin-in {
  from { transform: translateY(12px) scale(.98); opacity: .5; }
  to { transform: none; opacity: 1; }
}
.vx-pin__close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: #f4f4f5;
  font-size: 1.15rem;
  line-height: 1;
}
.vx-pin__avatar {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto .85rem;
  border-radius: 1rem;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #1a1a1e, #0f0f12);
  border: 1px solid rgba(255,255,255,.1);
  color: #d4a017;
  font-size: 1.6rem;
  font-weight: 750;
}
.vx-pin__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vx-pin__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
}
.vx-pin__lead {
  margin: .35rem 0 0;
  color: #a1a1aa;
  font-size: .9rem;
}
.vx-pin__error {
  margin: .65rem 0 0;
  color: #f87171;
  font-size: .82rem;
  font-weight: 600;
}
.vx-pin__dots {
  display: flex;
  justify-content: center;
  gap: .55rem;
  margin: 1.15rem 0 1rem;
}
.vx-pin__dots span {
  width: .72rem;
  height: .72rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.28);
  background: transparent;
  transition: .15s ease;
}
.vx-pin__dots span.is-filled {
  background: #d4a017;
  border-color: #d4a017;
}
.vx-pin__dots span.is-active {
  border-color: #d4a017;
  box-shadow: 0 0 0 3px rgba(212,160,23,.18);
}
.vx-pin__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}
.vx-pin__pad {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .55rem;
  max-width: 16.5rem;
  margin: 0 auto;
}
.vx-pin__key {
  min-height: 3.2rem;
  border-radius: .95rem;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: #fafafa;
  font-size: 1.25rem;
  font-weight: 650;
  transition: background .15s ease, border-color .15s ease, transform .1s ease;
}
.vx-pin__key:active { transform: scale(.96); background: rgba(212,160,23,.16); }
.vx-pin__key--empty {
  border: 0;
  background: transparent;
  pointer-events: none;
}
.vx-pin__key--action {
  color: #d4d4d8;
  display: grid;
  place-items: center;
}
.vx-pin__key--action svg { width: 1.25rem; height: 1.25rem; }
.vx-pin__submit {
  width: 100%;
  margin-top: 1rem;
}
.vx-pin__submit:disabled {
  opacity: .45;
  cursor: not-allowed;
}

/* ===== Admin Roles ===== */
.vx-roles { padding-bottom: 5rem; }
.vx-roles__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.vx-roles__overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 900px) {
  .vx-roles__overview { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.vx-roles__card {
  display: block;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(24,24,27,.65);
  transition: border-color .15s ease, transform .15s ease, background .15s ease;
  color: inherit;
}
a.vx-roles__card:hover {
  border-color: rgba(212,160,23,.4);
  transform: translateY(-1px);
}
.vx-roles__card.is-active {
  border-color: rgba(212,160,23,.55);
  background: rgba(212,160,23,.08);
}
.vx-roles__card.is-locked {
  opacity: .85;
  background:
    linear-gradient(145deg, rgba(255,255,255,.03), transparent),
    rgba(24,24,27,.55);
}
.vx-roles__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .4rem;
}
.vx-roles__card-top strong {
  font-size: .95rem;
  font-weight: 700;
}
.vx-roles__card p {
  margin: 0;
  color: #a1a1aa;
  font-size: .78rem;
  line-height: 1.4;
  min-height: 2.2rem;
}
.vx-roles__card-stats {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  margin-top: .75rem;
  color: #71717a;
  font-size: .72rem;
  font-weight: 600;
}
.vx-roles__badge {
  flex-shrink: 0;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .18rem .45rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  color: #a1a1aa;
}
.vx-roles__badge--active {
  border-color: rgba(212,160,23,.4);
  color: #d4a017;
  background: rgba(212,160,23,.12);
}
.vx-roles__layout {
  display: grid;
  gap: 1rem;
}
@media (min-width: 960px) {
  .vx-roles__layout {
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: start;
    gap: 1.25rem;
  }
}
.vx-roles__nav {
  display: grid;
  gap: .45rem;
}
.vx-roles__nav-item {
  display: block;
  padding: .85rem .95rem;
  border-radius: .9rem;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(24,24,27,.55);
  transition: .15s ease;
}
.vx-roles__nav-item:hover { border-color: rgba(212,160,23,.35); }
.vx-roles__nav-item.is-active {
  border-color: rgba(212,160,23,.5);
  background: rgba(212,160,23,.1);
}
.vx-roles__nav-label {
  display: block;
  font-weight: 700;
  font-size: .92rem;
}
.vx-roles__nav-meta {
  display: block;
  margin-top: .2rem;
  color: #71717a;
  font-size: .72rem;
}
.vx-roles__panel {
  border-radius: 1.15rem;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(24,24,27,.55);
  padding: 1rem 1rem 1.25rem;
}
@media (min-width: 768px) {
  .vx-roles__panel { padding: 1.25rem 1.35rem 1.5rem; }
}
.vx-roles__panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.vx-roles__panel-head h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 750;
}
.vx-roles__panel-head p {
  margin: .3rem 0 0;
  color: #a1a1aa;
  font-size: .85rem;
}
.vx-roles__panel-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
}
.vx-roles__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.7rem;
  height: 1.7rem;
  padding: 0 .4rem;
  border-radius: 999px;
  background: #d4a017;
  color: #0a0a0b;
  font-size: .75rem;
  font-weight: 800;
}
.vx-roles__groups { display: grid; gap: .75rem; }
.vx-roles__group {
  border-radius: .95rem;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.18);
  overflow: hidden;
}
.vx-roles__group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .85rem 1rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.vx-roles__group-head::-webkit-details-marker { display: none; }
.vx-roles__group-head strong {
  display: block;
  font-size: .92rem;
}
.vx-roles__group-head span {
  color: #71717a;
  font-size: .72rem;
  font-weight: 600;
}
.vx-roles__group-toggle {
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: #d4d4d8;
  border-radius: .55rem;
  padding: .3rem .65rem;
  font-size: .72rem;
  font-weight: 650;
}
.vx-roles__group-toggle:hover {
  border-color: rgba(212,160,23,.4);
  color: #d4a017;
}
.vx-roles__perms {
  display: grid;
  grid-template-columns: 1fr;
  gap: .45rem;
  padding: 0 .75rem .85rem;
}
@media (min-width: 720px) {
  .vx-roles__perms { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .vx-roles__perms { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.vx-roles__perm {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .7rem .75rem;
  border-radius: .75rem;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
  cursor: pointer;
  transition: .15s ease;
}
.vx-roles__perm:hover { border-color: rgba(255,255,255,.12); }
.vx-roles__perm.is-checked {
  border-color: rgba(212,160,23,.35);
  background: rgba(212,160,23,.08);
}
.vx-roles__perm input {
  margin-top: .15rem;
  accent-color: #d4a017;
}
.vx-roles__perm-body { min-width: 0; }
.vx-roles__perm-label {
  display: block;
  font-size: .84rem;
  font-weight: 650;
  color: #f4f4f5;
}
.vx-roles__perm-key {
  display: block;
  margin-top: .15rem;
  font-size: .68rem;
  color: #71717a;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vx-roles__empty {
  padding: 2rem 1rem;
  text-align: center;
  color: #a1a1aa;
}
.vx-roles__sticky {
  position: sticky;
  bottom: .75rem;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-top: 1.15rem;
  padding: .85rem 1rem;
  border-radius: .95rem;
  border: 1px solid rgba(212,160,23,.28);
  background: rgba(18,18,20,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.vx-roles__sticky p {
  margin: 0;
  color: #d4d4d8;
  font-size: .85rem;
}

/* ===== Admin Plans ===== */
.vx-plans { padding-bottom: 2.5rem; }
.vx-plans__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.vx-plans__tabs {
  display: flex;
  gap: .4rem;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 1.15rem;
  padding: .25rem;
  border-radius: .9rem;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(24,24,27,.55);
}
.vx-plans__tabs::-webkit-scrollbar { display: none; }
.vx-plans__tabs a {
  flex: 0 0 auto;
  min-height: 2.2rem;
  padding: .4rem .95rem;
  border-radius: .7rem;
  color: #a1a1aa;
  font-size: .82rem;
  font-weight: 650;
}
.vx-plans__tabs a.is-active,
.vx-plans__tabs a:hover {
  background: rgba(212,160,23,.14);
  color: #f4f4f5;
}
.vx-plans__tabs a.is-active { color: #d4a017; }
.vx-plans__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.vx-plans__stats article {
  padding: 1rem;
  border-radius: .95rem;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(24,24,27,.55);
}
.vx-plans__stats strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -.02em;
}
.vx-plans__stats span {
  display: block;
  margin-top: .2rem;
  color: #71717a;
  font-size: .75rem;
  font-weight: 600;
}
.vx-plans__editor {
  margin-bottom: 1.35rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(212,160,23,.28);
  background:
    radial-gradient(520px 160px at 0% 0%, rgba(212,160,23,.12), transparent 70%),
    rgba(24,24,27,.7);
  padding: 1.15rem 1.15rem 1.25rem;
}
.vx-plans__editor-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: 1rem;
}
.vx-plans__editor-head h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 750;
}
.vx-plans__editor-head p {
  margin: .25rem 0 0;
  color: #a1a1aa;
  font-size: .85rem;
}
.vx-plans__form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
}
@media (min-width: 800px) {
  .vx-plans__form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.vx-plans__field {
  display: grid;
  gap: .35rem;
}
.vx-plans__field--wide { grid-column: 1 / -1; }
.vx-plans__field span {
  color: #a1a1aa;
  font-size: .78rem;
  font-weight: 650;
}
.vx-plans__field span em {
  font-style: normal;
  color: #71717a;
  font-weight: 500;
}
.vx-plans__form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.vx-plans__switch {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #d4d4d8;
  font-size: .88rem;
  font-weight: 600;
}
.vx-plans__switch input { accent-color: #d4a017; }
.vx-plans__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 760px) {
  .vx-plans__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1180px) {
  .vx-plans__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.vx-plans__card {
  display: flex;
  flex-direction: column;
  border-radius: 1.15rem;
  border: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 40%),
    rgba(24,24,27,.7);
  padding: 1.15rem;
  transition: border-color .15s ease, transform .15s ease;
}
.vx-plans__card:hover {
  border-color: rgba(212,160,23,.35);
  transform: translateY(-2px);
}
.vx-plans__card.is-inactive { opacity: .72; }
.vx-plans__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .85rem;
}
.vx-plans__card-top h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 750;
}
.vx-plans__slug {
  margin: .2rem 0 0;
  color: #71717a;
  font-size: .72rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.vx-plans__status {
  flex-shrink: 0;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .22rem .5rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  color: #a1a1aa;
}
.vx-plans__status.is-on {
  border-color: rgba(52,211,153,.35);
  color: #34d399;
  background: rgba(52,211,153,.1);
}
.vx-plans__price {
  display: flex;
  align-items: baseline;
  gap: .45rem;
  margin-bottom: .7rem;
}
.vx-plans__price strong {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
}
.vx-plans__price span {
  color: #a1a1aa;
  font-size: .9rem;
  font-weight: 650;
}
.vx-plans__price small {
  display: block;
  color: #71717a;
  font-size: .72rem;
  font-weight: 500;
}
.vx-plans__desc {
  margin: 0 0 .85rem;
  color: #a1a1aa;
  font-size: .85rem;
  line-height: 1.45;
}
.vx-plans__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .45rem;
  flex: 1;
}
.vx-plans__features li {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
  color: #e4e4e7;
  font-size: .84rem;
  line-height: 1.35;
}
.vx-plans__features li.is-muted { color: #71717a; }
.vx-plans__features svg {
  width: .95rem;
  height: .95rem;
  margin-top: .1rem;
  color: #d4a017;
  flex-shrink: 0;
}
.vx-plans__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem .85rem;
  margin: 1rem 0 .9rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(255,255,255,.06);
  color: #71717a;
  font-size: .72rem;
  font-weight: 600;
}
.vx-plans__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.vx-plans__empty {
  text-align: center;
  padding: 3rem 1.25rem;
  border-radius: 1.15rem;
  border: 1px dashed rgba(255,255,255,.12);
  background: rgba(24,24,27,.45);
}
.vx-plans__empty h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 750;
}
.vx-plans__empty p {
  margin: .45rem auto 1.1rem;
  max-width: 24rem;
  color: #a1a1aa;
}

/* ===== Admin Settings (left nav) ===== */
.vx-settings { padding-bottom: 2rem; }
.vx-settings__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}
.vx-settings__search {
  position: relative;
  width: min(100%, 20rem);
}
.vx-settings__search svg {
  position: absolute;
  left: .85rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
  color: #71717a;
  pointer-events: none;
}
.vx-settings__search input {
  width: 100%;
  min-height: 2.55rem;
  border-radius: .85rem;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: #f4f4f5;
  padding: .65rem .9rem .65rem 2.4rem;
  font-size: .9rem;
  outline: none;
}
.vx-settings__search input:focus {
  border-color: rgba(212,160,23,.45);
}
.vx-settings__layout {
  display: grid;
  gap: 1rem;
}
@media (min-width: 960px) {
  .vx-settings__layout {
    grid-template-columns: 240px minmax(0, 1fr);
    align-items: start;
    gap: 1.35rem;
  }
}
.vx-settings__sidebar {
  border-radius: 1.05rem;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(24,24,27,.65);
  padding: .75rem;
  position: sticky;
  top: 5.5rem;
}
.vx-settings__sidebar-title {
  margin: 0 .4rem .55rem;
  color: #71717a;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.vx-settings__nav {
  display: flex;
  gap: .35rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: .1rem;
}
.vx-settings__nav::-webkit-scrollbar { display: none; }
@media (min-width: 960px) {
  .vx-settings__nav {
    flex-direction: column;
    overflow: visible;
  }
}
.vx-settings__link {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  flex: 0 0 auto;
  min-height: 2.45rem;
  padding: .55rem .8rem;
  border-radius: .75rem;
  color: #a1a1aa;
  font-size: .86rem;
  font-weight: 600;
  white-space: nowrap;
  transition: .15s ease;
}
.vx-settings__link svg {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}
.vx-settings__link:hover {
  background: rgba(255,255,255,.04);
  color: #f4f4f5;
}
.vx-settings__link.is-active {
  background: rgba(212,160,23,.12);
  color: #d4a017;
  border: 1px solid rgba(212,160,23,.28);
}
@media (min-width: 960px) {
  .vx-settings__link {
    width: 100%;
    white-space: normal;
  }
  .vx-settings__link.is-active { border-color: transparent; box-shadow: inset 3px 0 0 #d4a017; }
}
.vx-settings__main {
  min-width: 0;
  max-width: 52rem;
}

/* ===== Public pricing / checkout ===== */
.vx-pricing {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}
.vx-pricing__hero { text-align: center; margin-bottom: 2.5rem; }
.vx-pricing__eyebrow {
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.vx-pricing__title {
  font-family: var(--font-display, inherit);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-top: .5rem;
}
.vx-pricing__lead { color: #a1a1aa; margin-top: .75rem; max-width: 32rem; margin-inline: auto; }
.vx-pricing__current {
  display: inline-block;
  margin-top: 1.25rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  background: rgba(212,160,23,.12);
  border: 1px solid rgba(212,160,23,.35);
  color: #e4e4e7;
  font-size: .875rem;
}
.vx-pricing__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .vx-pricing__grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}
.vx-pricing__card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.vx-pricing__card.is-featured {
  border-color: rgba(212,160,23,.45);
  background: linear-gradient(180deg, rgba(212,160,23,.12), rgba(255,255,255,.02));
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.vx-pricing__card.is-current { outline: 1px solid rgba(212,160,23,.5); }
.vx-pricing__badge {
  position: absolute;
  top: .9rem;
  right: .9rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #111;
  background: var(--gold);
  padding: .2rem .55rem;
  border-radius: .4rem;
}
.vx-pricing__card h2 { font-size: 1.35rem; font-weight: 700; }
.vx-pricing__desc { color: #a1a1aa; font-size: .9rem; margin-top: .4rem; }
.vx-pricing__price { margin: 1.25rem 0; }
.vx-pricing__price strong { font-size: 2rem; font-weight: 800; display: block; }
.vx-pricing__price span { color: #a1a1aa; font-size: .85rem; }
.vx-pricing__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: .55rem;
  flex: 1;
}
.vx-pricing__features li {
  position: relative;
  padding-left: 1.35rem;
  color: #d4d4d8;
  font-size: .9rem;
}
.vx-pricing__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .45rem;
  width: .55rem;
  height: .55rem;
  border-radius: 999px;
  background: var(--gold);
}
.vx-pricing__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: .85rem 1rem;
  border-radius: .75rem;
  background: var(--gold);
  color: #111;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: .15s ease;
  text-align: center;
}
.vx-pricing__cta:hover { filter: brightness(1.08); }
.vx-pricing__cta.is-disabled {
  background: rgba(255,255,255,.06);
  color: #71717a;
  cursor: default;
}
.vx-pricing__empty, .vx-pricing__note {
  text-align: center;
  color: #a1a1aa;
  margin-top: 1.5rem;
  font-size: .9rem;
}
.vx-checkout {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}
.vx-checkout__box {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 1rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  min-height: 220px;
}
.vx-checkout--success { text-align: center; }
