/* global */
/* ================================================================
   Hello Star — Light Theme
   Oswald font · #ef2853 primary · Clean editorial aesthetic
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap');

:root {
  /* ── Backgrounds ── */
  --bg: #f7f7fb;
  --bg-2: #efeff6;
  --surface: #ffffff;
  --surface-2: #f5f5fa;
  --surface-3: #ebebf2;
  --border: #e2e2ed;
  --border-2: #d0d0e0;

  /* ── Text ── */
  --text: #0d0d1a;
  --text-2: #3a3a5c;
  --muted: #8080a0;

  /* ── Primary — #ef2853 red ── */
  --gold: #ef2853;
  --gold-2: #c41a3d;
  --gold-glow: rgba(239, 40, 83, 0.22);
  --gold-dim: rgba(239, 40, 83, 0.08);

  /* ── Secondary — blue ── */
  --purple: #2563eb;
  --purple-2: #1d4ed8;
  --purple-glow: rgba(37, 99, 235, 0.2);
  --purple-dim: rgba(37, 99, 235, 0.08);

  /* ── Status ── */
  --green: #16a34a;
  --green-dim: rgba(22, 163, 74, 0.1);
  --red: #ef2853;
  --red-dim: rgba(239, 40, 83, 0.1);
  --amber: #d97706;
  --amber-dim: rgba(217, 119, 6, 0.1);
  --blue: #2563eb;
  --blue-dim: rgba(37, 99, 235, 0.1);

  --r-sm: 7px;
  --r: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.07);
  --maxw: 1280px;
  --nav-h: 66px;
  --sidebar: 255px;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Oswald', 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0.02em;
  min-height: 100dvh;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
button {
  font-family: inherit;
  cursor: pointer;
}
input,
select,
textarea {
  font-family: inherit;
  letter-spacing: 0.02em;
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg-2);
}
::-webkit-scrollbar-thumb {
  background: var(--border-2);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

/* ── Layout ── */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ================================================================
      NAVIGATION
      ================================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
  margin-right: 32px;
  text-transform: uppercase;
}
.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.brand-name {
  color: var(--text);
}
.brand-name b {
  color: var(--gold);
}
.brand-logo {
  height: 34px;
  width: auto;
  display: block;
}
footer .brand-logo {
  height: 42px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border-radius: var(--r-sm);
  color: var(--muted);
  font-weight: 500;
  font-size: 0.9rem;
  background: none;
  border: none;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: var(--gold-dim);
}
.nav-link svg {
  flex-shrink: 0;
  opacity: 0.65;
  transition: opacity 0.15s;
}
.nav-link:hover svg,
.nav-link.active svg {
  opacity: 1;
}

.nav-sep {
  width: 1px;
  height: 22px;
  background: var(--border);
  margin: 0 6px;
  flex-shrink: 0;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* Header WhatsApp / Instagram links */
.nav-social {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--muted);
  flex-shrink: 0;
  transition: color 0.15s, background 0.15s;
}
.nav-social a:hover {
  background: var(--surface-2);
}
.nav-social a.wa:hover {
  color: #25d366;
}
.nav-social a.ig:hover {
  color: #dc2743;
}
.nav-social svg {
  width: 17px;
  height: 17px;
}

/* Logged-in user chip (avatar initials + name) */
.nav-user {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 12px 5px 5px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.nav-user:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
}
.nav-ava {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.nav-uname {
  color: var(--text);
  font-weight: 600;
  font-size: 0.86rem;
  white-space: nowrap;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-user.mob {
  width: 100%;
  margin-bottom: 6px;
}
.nav-user.mob .nav-uname {
  font-size: 1rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 9px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--surface-2);
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  z-index: 199;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 18px;
  flex-direction: column;
  gap: 5px;
  overflow-y: auto;
  box-shadow: var(--shadow);
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu .nav-link {
  padding: 13px 16px;
  font-size: 1rem;
  border-radius: var(--r);
}
.mobile-menu .nav-sep {
  width: 100%;
  height: 1px;
  margin: 6px 0;
}
.mob-section {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 16px 4px;
}

/* ================================================================
      BUTTONS
      ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--r);
  font-weight: 600;
  font-size: 0.88rem;
  border: 1.5px solid transparent;
  transition: all 0.15s;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.btn:active {
  transform: scale(0.97);
}
.btn svg {
  flex-shrink: 0;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: var(--gold-2);
  box-shadow: 0 4px 16px var(--gold-glow);
}
/* True metallic-gold button (distinct from the brand-red .btn-gold) */
.btn-amber {
  background: linear-gradient(135deg, #f6d365 0%, #d4af37 55%, #b8860b 100%);
  color: #3a2c00;
  border-color: #c8a02e;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-amber:hover {
  background: linear-gradient(135deg, #ffdf7e 0%, #e0bb45 55%, #c8920c 100%);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}
.btn-purple {
  background: var(--purple);
  color: #fff;
}
.btn-purple:hover {
  background: var(--purple-2);
  box-shadow: 0 4px 16px var(--purple-glow);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn-outline:hover {
  background: var(--surface-2);
  border-color: var(--gold);
  color: var(--gold);
}
.btn-ghost {
  background: var(--surface-2);
  color: var(--text-2);
  border-color: transparent;
}
.btn-ghost:hover {
  background: var(--surface-3);
  color: var(--text);
}
.btn-danger {
  background: var(--red-dim);
  color: var(--red);
  border-color: rgba(239, 40, 83, 0.2);
}
.btn-danger:hover {
  background: rgba(239, 40, 83, 0.15);
}
.btn-success {
  background: var(--green-dim);
  color: var(--green);
  border-color: rgba(22, 163, 74, 0.2);
}
.btn-success:hover {
  background: rgba(22, 163, 74, 0.15);
}
.btn-sm {
  padding: 6px 13px;
  font-size: 0.78rem;
  border-radius: var(--r-sm);
  gap: 5px;
}
.btn-lg {
  padding: 13px 26px;
  font-size: 0.95rem;
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* ================================================================
      HERO — SPLIT BANNER
      ================================================================ */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100dvh - var(--nav-h));
}
.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-panel > .hp-content {
  position: relative;
  z-index: 1;
  max-width: 540px;
}

/* Celebrity panel — warm light, red accent */
.hp-celeb {
  background: linear-gradient(155deg, #fff5f6 0%, #feeaed 40%, #f9f9fc 100%);
  border-right: 1px solid rgba(239, 40, 83, 0.1);
}
.hp-celeb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
      700px 700px at -10% 40%,
      rgba(239, 40, 83, 0.07) 0%,
      transparent 65%
    ),
    radial-gradient(
      400px 400px at 70% 90%,
      rgba(239, 40, 83, 0.04) 0%,
      transparent 60%
    );
}
.hp-celeb::after {
  content: '★';
  position: absolute;
  right: -30px;
  bottom: -60px;
  font-size: 380px;
  line-height: 1;
  color: rgba(239, 40, 83, 0.05);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.hp-celeb .panel-edge {
  position: absolute;
  right: -1px;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  background: linear-gradient(
    to bottom right,
    transparent 49.5%,
    var(--bg) 50%
  );
}

/* Talent panel — cool light, blue accent */
.hp-talent {
  background: linear-gradient(155deg, #f0f4ff 0%, #e8edff 40%, #f9f9fc 100%);
  border-left: 1px solid rgba(37, 99, 235, 0.1);
}
.hp-talent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
      700px 700px at 110% 40%,
      rgba(37, 99, 235, 0.07) 0%,
      transparent 65%
    ),
    radial-gradient(
      400px 400px at 30% 90%,
      rgba(37, 99, 235, 0.04) 0%,
      transparent 60%
    );
}
.hp-talent::after {
  content: '🎬';
  position: absolute;
  left: -10px;
  bottom: -20px;
  font-size: 260px;
  line-height: 1;
  opacity: 0.04;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

/* Eyebrow pill */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-pill.gold {
  background: rgba(239, 40, 83, 0.1);
  color: var(--gold);
  border: 1px solid rgba(239, 40, 83, 0.25);
}
.hero-pill.purple {
  background: var(--purple-dim);
  color: var(--purple);
  border: 1px solid rgba(37, 99, 235, 0.25);
}

.hp-content h1 {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.hp-content h1 .g {
  color: var(--gold);
}
.hp-content h1 .p {
  color: var(--purple);
}
.hp-content > .lead {
  color: var(--text-2);
  font-size: 0.98rem;
  margin-bottom: 26px;
  line-height: 1.75;
  max-width: 460px;
  font-weight: 400;
}

/* Service mini-cards */
.hero-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-bottom: 30px;
}
.hs-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(239, 40, 83, 0.12);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-2);
  backdrop-filter: blur(4px);
}
.hs-ico {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}
.hs-ico.g {
  background: rgba(239, 40, 83, 0.1);
  color: var(--gold);
}
.hs-ico.p {
  background: var(--purple-dim);
  color: var(--purple);
}

/* Category chips */
.hero-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 30px;
}
.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--purple);
  border: 1px solid rgba(37, 99, 235, 0.22);
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}
.cat-chip:hover {
  background: var(--purple-dim);
  border-color: rgba(37, 99, 235, 0.4);
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ================================================================
      SECTIONS
      ================================================================ */
.section {
  padding: 72px 0;
}
.section-sm {
  padding: 48px 0;
}
.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 44px;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-head p {
  color: var(--muted);
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 400;
}

/* ── Small reusable utilities (avoid inline style="…") ── */
.section-alt {
  background: var(--bg-2);
}
.section-surface {
  background: var(--surface);
}
.section-cta {
  text-align: center;
  margin-top: 28px;
}
.hidden {
  display: none;
}
.text-center {
  text-align: center;
}
.flex-1 {
  flex: 1;
}
.feat-ico.center {
  margin: 0 auto 16px;
}
.step-num {
  font-size: 1.2rem;
  font-weight: 900;
}

.eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.eyebrow.gold {
  color: var(--gold);
}
.eyebrow.purple {
  color: var(--purple);
}

/* ================================================================
      CARDS
      ================================================================ */
.grid {
  display: grid;
  gap: 20px;
}
.g2 {
  grid-template-columns: repeat(2, 1fr);
}
.g3 {
  grid-template-columns: repeat(3, 1fr);
}
.g4 {
  grid-template-columns: repeat(4, 1fr);
}
.g-auto {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

/* ── "Premium Auditions + Join With Us" home section ── */
.join-grid {
  align-items: flex-start;
  gap: 42px;
}
.join-thumb {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
  max-width: 95%;
}
.join-thumb img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.join-heading {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 6px 0 10px;
}
.join-lead {
  color: var(--text-2);
  line-height: 1.8;
  font-weight: 400;
}
.join-lead.spaced {
  margin-bottom: 18px;
}
.join-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.join-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
}
.join-row .feat-ico {
  margin: 0;
  flex-shrink: 0;
}
.join-row-body {
  flex: 1;
}
.join-row-title {
  font-weight: 700;
}
.join-row-desc {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 36px rgba(239, 40, 83, 0.1);
}

.card-thumb {
  aspect-ratio: 3/4;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.card:hover .card-thumb img {
  transform: scale(1.04);
}
.card-thumb .init {
  font-size: 3rem;
  font-weight: 700;
  color: var(--muted);
  opacity: 0.35;
  text-transform: uppercase;
}
.card-thumb .ctbadge {
  position: absolute;
  top: 10px;
  left: 10px;
}
.card-thumb .feat-ribbon {
  position: absolute;
  top: 12px;
  right: -28px;
  background: var(--gold);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 4px 32px;
  transform: rotate(45deg);
  letter-spacing: 1px;
  text-transform: uppercase;
}
/* VIP ribbon — sits on the left so it can coexist with FEATURED on the right */
.card-thumb .vip-ribbon {
  position: absolute;
  top: 12px;
  left: -28px;
  background: #7c3aed;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 4px 32px;
  transform: rotate(-45deg);
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

/* ── Hover overlay — dark tint + 2 action icons ── */
.card-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: background 0.25s;
}
.card:hover .card-overlay {
  background: rgba(0, 0, 0, 0.52);
}
.ov-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.22s, transform 0.22s, background 0.15s,
    border-color 0.15s;
  backdrop-filter: blur(2px);
  flex-shrink: 0;
}
.card:hover .ov-btn {
  opacity: 1;
  transform: translateY(0);
}
.card:hover .ov-btn:nth-child(2) {
  transition-delay: 0.06s;
}
.ov-btn:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  transform: scale(1.12) !important;
}
/* Keep overlay icons above the scale transform */
.card:hover .card-thumb img {
  transform: scale(1.06);
}

/* ── Detail page layout ── */
.detail-page {
  padding: 40px 0 70px;
}
.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 28px;
  transition: color 0.15s;
  cursor: pointer;
}
.detail-back:hover {
  color: var(--gold);
}
.detail-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 36px;
  align-items: start;
}
.detail-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin-top: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.detail-actions h4 {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
}
.detail-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.detail-info-card {
  padding: 12px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.detail-info-card .di-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.detail-info-card .di-val {
  font-size: 0.95rem;
  font-weight: 600;
}
.detail-section {
  margin-bottom: 24px;
}
.detail-section h3 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

/* Service tiles on celebrity detail */
.svc-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.svc-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 14px 20px;
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
  background: var(--surface-2);
  cursor: pointer;
  transition: all 0.18s;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-2);
  min-width: 100px;
}
.svc-tile:hover,
.svc-tile.active {
  border-color: var(--gold);
  background: var(--gold-dim);
  color: var(--gold);
}
.svc-tile .st-ico {
  font-size: 1.5rem;
}

@media (max-width: 900px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
}
.card-body {
  padding: 16px 18px 18px;
}
.card-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.card-cat.p {
  color: var(--purple);
}
.card-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 400;
}
.card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.card-desc {
  font-size: 0.85rem;
  color: var(--text-2);
  margin-bottom: 12px;
  line-height: 1.6;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}
.tag {
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-size: 0.7rem;
  color: var(--text-2);
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.card-footer {
  display: flex;
  gap: 7px;
  align-items: center;
}
.card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.card-code {
  color: #d4af37;
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
}
.card-tags.nowrap {
  flex-wrap: nowrap;
  overflow: hidden;
}
.card-lang {
  font-size: 0.76rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.read-more {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.empty-note {
  color: var(--muted);
  padding: 20px;
}
.mt-sm {
  margin-top: 6px;
}
.mt-8 {
  margin-top: 8px;
}
.mt-10 {
  margin-top: 10px;
}
.mt-12 {
  margin-top: 12px;
}
.mb-12 {
  margin-bottom: 12px;
}
.mb-22 {
  margin-bottom: 22px;
}
.ml-auto {
  margin-left: auto;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.text-muted {
  color: var(--muted);
}
.text-muted-sm {
  color: var(--muted);
  font-size: 0.85rem;
}
.text-gold {
  color: var(--gold);
}
.text-gold-2 {
  color: #d4af37;
}
.col-span-all {
  grid-column: 1 / -1;
}
.flex-between {
  display: flex;
  justify-content: space-between;
}
.border-none {
  border: none;
}

/* Audition pipeline stage header colors (director dashboard) */
.stage-applied {
  color: var(--blue);
}
.stage-shortlisted {
  color: var(--amber);
}
.stage-audition_scheduled {
  color: var(--gold);
}
.stage-selected,
.stage-confirmed {
  color: var(--green);
}
.stage-rejected {
  color: var(--red);
}

/* Service lead status header colors (admin CRM) */
.lead-new {
  color: var(--blue);
}
.lead-contacted {
  color: var(--purple);
}
.lead-negotiation {
  color: var(--amber);
}
.lead-confirmed,
.lead-completed {
  color: var(--green);
}
.lead-lost {
  color: var(--red);
}

/* Requirement fulfilment progress (done vs pending) */
.progress-fill {
  height: 100%;
  border-radius: 999px;
}
.fill-done {
  background: var(--green);
}
.fill-pending {
  background: var(--gold);
}
.req-count {
  font-size: 0.82rem;
  min-width: 70px;
  font-weight: 600;
}
.count-done {
  color: var(--green);
}
.count-pending {
  color: var(--muted);
}
.req-qty {
  display: inline-block;
  min-width: 56px;
  font-weight: 700;
}
.qty-done {
  color: var(--green);
}
.qty-pending {
  color: var(--gold);
}

/* Feature cards */
.feat-card {
  padding: 26px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.feat-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(239, 40, 83, 0.08);
}
.feat-ico {
  width: 48px;
  height: 48px;
  border-radius: var(--r);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.feat-ico.gold {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(239, 40, 83, 0.2);
}
.feat-ico.purple {
  background: var(--purple-dim);
  color: var(--purple);
  border: 1px solid rgba(37, 99, 235, 0.2);
}
.feat-ico.green {
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid rgba(22, 163, 74, 0.2);
}
.feat-ico.blue {
  background: var(--blue-dim);
  color: var(--blue);
  border: 1px solid rgba(37, 99, 235, 0.2);
}
.feat-ico.red {
  background: var(--red-dim);
  color: var(--red);
  border: 1px solid rgba(239, 40, 83, 0.2);
}
.feat-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.feat-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  font-weight: 400;
}

/* ================================================================
      BADGES
      ================================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge::before {
  content: '●';
  font-size: 0.52rem;
  line-height: 1;
}
.badge.available,
.badge.approved,
.badge.confirmed,
.badge.completed,
.badge.selected {
  background: var(--green-dim);
  color: var(--green);
}
.badge.busy,
.badge.rejected,
.badge.lost {
  background: var(--red-dim);
  color: var(--red);
}
.badge.pending,
.badge.shortlisted,
.badge.on_hold,
.badge.out_of_station {
  background: var(--amber-dim);
  color: var(--amber);
}
.badge.new,
.badge.open,
.badge.contacted,
.badge.in_progress {
  background: var(--blue-dim);
  color: var(--blue);
}
.badge.applied,
.badge.booked,
.badge.negotiation {
  background: var(--purple-dim);
  color: var(--purple);
}
.badge.audition_scheduled,
.badge.featured {
  background: var(--gold-dim);
  color: var(--gold);
}

/* ================================================================
      FILTER TOOLBAR
      ================================================================ */
.toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: flex-end;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin-bottom: 22px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.fgroup {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 130px;
}
.fgroup.grow {
  flex: 2;
  min-width: 200px;
}
.fgroup label {
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ================================================================
      FORMS
      ================================================================ */
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.field .hint {
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 5px;
  font-weight: 400;
}
input,
select,
textarea {
  width: 100%;
  padding: 10px 13px;
  background: var(--surface);
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font: inherit;
  font-size: 0.9rem;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
input::placeholder {
  color: var(--muted);
  font-weight: 400;
}
textarea {
  resize: vertical;
  min-height: 96px;
  font-weight: 400;
}
select {
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: right 11px center;
  background-size: 15px;
  padding-right: 34px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%238080a0' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.form-section {
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--border);
}
.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.form-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.file-drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px;
  border: 2px dashed var(--border);
  border-radius: var(--r-lg);
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
}
.file-drop:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
}
.file-drop input[type='file'] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

/* ================================================================
      AUTH
      ================================================================ */
.auth-page {
  min-height: calc(100dvh - var(--nav-h));
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background: linear-gradient(150deg, #fff5f6 0%, #f7f7fb 50%, #f0f4ff 100%);
}
.auth-card {
  width: 100%;
  max-width: 460px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow);
}
.auth-card.auth-md {
  max-width: 520px;
}
.auth-card.auth-wide {
  max-width: 620px;
}
.auth-card h2 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.auth-sub {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 0.9rem;
  font-weight: 400;
}
.auth-footer {
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 400;
}
.auth-footer a {
  color: var(--gold);
  font-weight: 600;
}
.role-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}
.role-opt {
  padding: 14px;
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  background: var(--surface-2);
  cursor: pointer;
  text-align: center;
  transition: all 0.15s;
}
.role-opt h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.role-opt p {
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 400;
}
.role-opt.sel-gold {
  border-color: var(--gold);
  background: var(--gold-dim);
}
.role-opt.sel-purple {
  border-color: var(--purple);
  background: var(--purple-dim);
}
.demo-box {
  margin-top: 18px;
  padding: 14px;
  border-radius: var(--r);
  background: var(--surface-2);
  border: 1px dashed var(--border-2);
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 400;
}

/* ================================================================
      DASHBOARD LAYOUT
      ================================================================ */
.dash-wrap {
  display: grid;
  grid-template-columns: var(--sidebar) 1fr;
  min-height: calc(100dvh - var(--nav-h));
}

.dash-side {
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: 20px 10px;
  position: sticky;
  top: var(--nav-h);
  height: calc(100dvh - var(--nav-h));
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.04);
}
.side-lbl {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 14px 7px;
}
.side-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--r);
  color: var(--muted);
  font-weight: 500;
  font-size: 0.85rem;
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  cursor: pointer;
  transition: color 0.14s, background 0.14s;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.side-link:hover {
  color: var(--text);
  background: var(--surface-2);
}
.side-link.active {
  color: var(--text);
  background: var(--surface-2);
}
.side-link.active.gold {
  color: var(--gold);
  background: var(--gold-dim);
}
.side-link.active.purple {
  color: var(--purple);
  background: var(--purple-dim);
}
.side-link .cnt {
  margin-left: auto;
  min-width: 20px;
  height: 19px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  padding: 0 5px;
}
.side-spacer {
  flex: 1;
}
.side-footer {
  padding: 10px 14px;
  margin-top: 8px;
  border-top: 1px solid var(--border);
}
.side-user {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
}
.side-user .s-name {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.side-user .s-role {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dash-main {
  padding: 32px 36px;
  overflow-x: hidden;
  min-width: 0;
  background: var(--bg);
}
.page-hdr {
  margin-bottom: 26px;
}
.page-hdr h1 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.page-hdr p {
  color: var(--muted);
  margin-top: 5px;
  font-size: 0.88rem;
  font-weight: 400;
}
.page-hdr-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ================================================================
      DASHBOARD GREETING STRIP
      ================================================================ */
.greet-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  margin-bottom: 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--r-lg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.greet-strip .gs-ava {
  flex-shrink: 0;
}
.greet-strip .gs-text h2 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.greet-strip .gs-text p {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 2px;
  font-weight: 400;
}
.greet-strip .gs-badge {
  margin-left: auto;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.greet-strip .gs-badge.gold {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(239, 40, 83, 0.22);
}
.greet-strip .gs-badge.purple {
  background: var(--purple-dim);
  color: var(--purple);
  border: 1px solid rgba(37, 99, 235, 0.22);
}
.greet-strip .gs-badge.green {
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid rgba(22, 163, 74, 0.22);
}

/* ================================================================
      IMAGE CROPPER
      ================================================================ */
.crop-bg {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(13, 13, 26, 0.82);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.crop-bg.open {
  display: flex;
}
.crop-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 22px;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow);
  animation: mUp 0.2s ease;
}
.crop-modal h3 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.crop-modal .crop-sub {
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 16px;
  font-weight: 400;
}
.crop-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 58vh;
  overflow: hidden;
  border-radius: var(--r);
  background: #0d0d1a;
  touch-action: none;
  cursor: grab;
  margin: 0 auto 8px;
}
.crop-stage.dragging {
  cursor: grabbing;
}
.crop-stage img {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 0 0;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  max-width: none;
  will-change: transform;
}
/* rule-of-thirds guide overlay */
.crop-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
      to right,
      transparent 33.33%,
      rgba(255, 255, 255, 0.25) 33.33%,
      rgba(255, 255, 255, 0.25) calc(33.33% + 1px),
      transparent calc(33.33% + 1px)
    ),
    linear-gradient(
      to right,
      transparent 66.66%,
      rgba(255, 255, 255, 0.25) 66.66%,
      rgba(255, 255, 255, 0.25) calc(66.66% + 1px),
      transparent calc(66.66% + 1px)
    ),
    linear-gradient(
      to bottom,
      transparent 33.33%,
      rgba(255, 255, 255, 0.25) 33.33%,
      rgba(255, 255, 255, 0.25) calc(33.33% + 1px),
      transparent calc(33.33% + 1px)
    ),
    linear-gradient(
      to bottom,
      transparent 66.66%,
      rgba(255, 255, 255, 0.25) 66.66%,
      rgba(255, 255, 255, 0.25) calc(66.66% + 1px),
      transparent calc(66.66% + 1px)
    );
}
.crop-hint {
  text-align: center;
  font-size: 0.74rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.crop-zoom-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.crop-zoom-row svg {
  color: var(--muted);
  flex-shrink: 0;
}
.crop-zoom {
  flex: 1;
  accent-color: var(--gold);
  cursor: pointer;
}
.crop-actions {
  display: flex;
  gap: 10px;
}

/* ================================================================
      STAT CARDS
      ================================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.stat::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  opacity: 0.06;
}
.stat.gold::after {
  background: var(--gold);
}
.stat.purple::after {
  background: var(--purple);
}
.stat.green::after {
  background: var(--green);
}
.stat.red::after {
  background: var(--red);
}
.stat .s-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.stat .s-val {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
}
.stat.gold .s-val {
  color: var(--gold);
}
.stat.purple .s-val {
  color: var(--purple);
}
.stat.green .s-val {
  color: var(--green);
}
.stat.red .s-val {
  color: var(--red);
}
.stat .s-sub {
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 7px;
  font-weight: 400;
}

/* ================================================================
      TABLES
      ================================================================ */
.table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.table-hdr {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  background: var(--surface-2);
}
.table-hdr h3 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.table-hdr .table-search {
  max-width: 240px;
  flex: 1;
}
.table-hdr .table-search input {
  padding: 7px 12px;
  font-size: 0.82rem;
  border-radius: var(--r-sm);
}
table {
  width: 100%;
  border-collapse: collapse;
}
th {
  text-align: left;
  padding: 10px 14px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
td {
  padding: 12px 14px;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  font-weight: 400;
}
tr:last-child td {
  border-bottom: none;
}
tr:hover td {
  background: var(--surface-2);
}
.td-bold {
  font-weight: 600;
}
.td-muted {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 400;
}
.td-actions {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.td-avatar {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ================================================================
      PIPELINE (Kanban)
      ================================================================ */
.pipeline {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 12px;
  align-items: flex-start;
}
.p-col {
  flex-shrink: 0;
  width: 200px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.p-col-hdr {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface-2);
}
.p-col-body {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-height: 80px;
}
.p-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 11px 13px;
}
.p-card .pc-name {
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.p-card .pc-meta {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 400;
}
.p-card .pc-actions {
  margin-top: 8px;
  display: flex;
  gap: 5px;
}

/* ================================================================
      MODAL
      ================================================================ */
.modal-bg {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(13, 13, 26, 0.6);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-bg.open {
  display: flex;
}
.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  width: 100%;
  max-width: 580px;
  max-height: 90dvh;
  overflow-y: auto;
  box-shadow: var(--shadow);
  animation: mUp 0.2s ease;
}
@keyframes mUp {
  from {
    transform: translateY(18px);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.modal-hdr {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.modal-hdr h3 {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.modal-close {
  cursor: pointer;
  color: var(--muted);
  padding: 4px;
  transition: color 0.15s;
  flex-shrink: 0;
  border: none;
  background: none;
}
.modal-close:hover {
  color: var(--gold);
}

/* ================================================================
      TOAST
      ================================================================ */
#toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%) translateY(22px);
  background: var(--text);
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  font-weight: 600;
  font-size: 0.85rem;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  transition: all 0.25s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.3px;
}
#toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
#toast.ok {
  background: var(--green);
}
#toast.err {
  background: var(--red);
}

/* ================================================================
      AVATARS
      ================================================================ */
.ava {
  border-radius: 50%;
  background: var(--surface-2);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  border: 1.5px solid var(--border);
}
.ava img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ava.sm {
  width: 32px;
  height: 32px;
  font-size: 0.78rem;
}
.ava.md {
  width: 50px;
  height: 50px;
  font-size: 1rem;
}
.ava.lg {
  width: 78px;
  height: 78px;
  font-size: 1.4rem;
}
.ava.xl {
  width: 112px;
  height: 112px;
  font-size: 1.9rem;
}

/* ================================================================
      PHOTO CAROUSEL
      ================================================================ */
.carousel {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface-2);
}
.carousel-track {
  display: flex;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.carousel-slide {
  min-width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.carousel-slide.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--muted);
  opacity: 0.3;
  background: var(--surface-2);
  min-width: 100%;
  aspect-ratio: 3/4;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1.1rem;
  font-weight: 700;
  transition: background 0.15s, border-color 0.15s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.carousel-btn:hover {
  background: #fff;
  border-color: var(--gold);
  color: var(--gold);
}
.carousel-btn.prev {
  left: 10px;
}
.carousel-btn.next {
  right: 10px;
}
.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: all 0.2s;
}
.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.25);
}
.carousel-count {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}

/* ================================================================
      VIDEO WISHES CATEGORY TILES (hellostar.in style)
      ================================================================ */
.vw-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.vw-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.vw-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 10px;
  border-radius: var(--r-lg);
  background: var(--bg);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  text-align: center;
}
.vw-card:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(239, 40, 83, 0.12);
}
.vw-card:hover .vw-ico {
  background: var(--gold);
  transform: scale(1.08);
}
.vw-card:hover .vw-ico span {
  filter: grayscale(0);
}
.vw-ico {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: all 0.2s;
  flex-shrink: 0;
}
.vw-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1.3;
}
.vw-card:hover .vw-label {
  color: var(--gold);
}
/* Horizontal scroll on small screens */
@media (max-width: 900px) {
  .vw-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 600px) {
  .vw-grid {
    grid-template-columns: repeat(3, minmax(90px, 1fr));
    gap: 10px;
  }
  .vw-ico {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
  .vw-label {
    font-size: 0.65rem;
  }
}

/* ================================================================
      CELEBRITY REGISTRATION CARD (3-option role grid)
      ================================================================ */
.role-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.photo-main {
  position: relative;
  cursor: zoom-in;
}
.checkbox-inline {
  width: auto;
  margin: 0;
}

/* Photo upload grid */
.photo-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.photo-slot {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface-2);
  border: 1.5px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.photo-slot:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
}
.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-slot .slot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
}
.photo-slot:hover .slot-overlay {
  display: flex;
}
.photo-slot .slot-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.photo-slot input[type='file'] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.photo-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: var(--gold);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.photo-del {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

/* WhatsApp bubble */
.wa-bubble {
  background: #128c7e;
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px 12px 12px 4px;
  font-size: 0.88rem;
  line-height: 1.65;
  white-space: pre-wrap;
  max-width: 380px;
  font-weight: 400;
}
.wa-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.wa-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Pipeline selector */
.pipeline-selector {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.pipe-tab {
  padding: 8px 16px;
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pipe-tab.active {
  border-color: var(--gold);
  background: var(--gold-dim);
  color: var(--gold);
}

/* ================================================================
      MISC
      ================================================================ */
.divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}
.empty-state .ei {
  font-size: 2.8rem;
  margin-bottom: 14px;
  opacity: 0.35;
}
.empty-state h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-2);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.empty-state p {
  font-size: 0.88rem;
  max-width: 280px;
  margin: 0 auto 18px;
  font-weight: 400;
}
.tabs {
  display: flex;
  gap: 3px;
  background: var(--surface-2);
  padding: 4px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  margin-bottom: 22px;
}
.tab-btn {
  flex: 1;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  border: none;
  background: none;
  color: var(--muted);
  font: inherit;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.tab-btn.active {
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.avail-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-2);
}
.avail-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 5px;
}
.avail-dot.available {
  background: var(--green);
}
.avail-dot.on_hold {
  background: var(--amber);
}
.avail-dot.booked {
  background: var(--red);
}

/* Calendar */
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-cell {
  padding: 7px 4px;
  text-align: center;
  border-radius: var(--r-sm);
  font-size: 0.76rem;
  cursor: default;
  font-weight: 400;
}
.cal-cell.hdr {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cal-cell.available {
  background: var(--green-dim);
  color: var(--green);
}
.cal-cell.on_hold {
  background: var(--amber-dim);
  color: var(--amber);
}
.cal-cell.booked {
  background: var(--red-dim);
  color: var(--red);
}
.cal-cell.other {
  color: var(--muted);
  opacity: 0.3;
}

/* Profile strip */
.profile-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin-bottom: 22px;
  flex-wrap: wrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.profile-strip .ps-info h2 {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.profile-strip .ps-info p {
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 3px;
  font-weight: 400;
}
.profile-strip .ps-actions {
  margin-left: auto;
  display: flex;
  gap: 8px;
}

/* ================================================================
      BLOG CARDS (shared by blog.html and home page blog section)
      ================================================================ */
.blog-card .card-thumb {
  aspect-ratio: 16/9;
}
.blog-card .card-desc {
  -webkit-line-clamp: 3;
}
.blog-date {
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ================================================================
      FOOTER
      ================================================================ */
footer {
  position: relative;
  padding: 56px 0 26px;
  background: radial-gradient(
      1200px 400px at 15% -10%,
      rgba(239, 40, 83, 0.16),
      transparent 60%
    ),
    linear-gradient(165deg, #16161f 0%, #0d0d18 60%, #08080f 100%);
  color: #b6b6c8;
  border-top: none;
}
/* gradient hairline accent across the top of the footer */
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #d4af37 50%, var(--purple));
}
footer .brand-logo {
  height: 46px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 40px;
}
.footer-brand .desc {
  font-size: 0.88rem;
  margin-top: 14px;
  line-height: 1.75;
  color: #9a9ab2;
  font-weight: 400;
  max-width: 330px;
}
.footer-col h4 {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 10px;
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #d4af37);
  border-radius: 2px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col a {
  font-size: 0.88rem;
  color: #a6a6bd;
  transition: color 0.15s, padding-left 0.15s;
  font-weight: 400;
}
.footer-col a:hover {
  color: #fff;
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  color: #7e7e98;
}
.footer-bottom a {
  color: #d4af37;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #cfcfe0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.15s, background 0.15s, color 0.15s, border-color 0.15s;
}
.footer-social a:hover {
  color: #fff;
  transform: translateY(-2px);
}
.footer-social a.wa:hover {
  background: #25d366;
  border-color: #25d366;
}
.footer-social a.ig:hover {
  background: linear-gradient(45deg, #f09433, #dc2743 50%, #bc1888);
  border-color: transparent;
}
.footer-social a.yt:hover {
  background: #ff0000;
  border-color: #ff0000;
}
.footer-social a.fb:hover {
  background: #1877f2;
  border-color: #1877f2;
}
.footer-social svg {
  width: 18px;
  height: 18px;
}
.scam-alert {
  margin-top: 16px;
  max-width: 340px;
  font-size: 0.8rem;
  line-height: 1.6;
  font-weight: 600;
  color: #ffd9df;
  background: rgba(239, 40, 83, 0.12);
  border: 1px solid rgba(239, 40, 83, 0.3);
  border-radius: var(--r);
  padding: 12px 14px;
}
.scam-alert strong {
  font-weight: 800;
  color: #ff8fa3;
}

/* ================================================================
      RESPONSIVE
      ================================================================ */
@media (max-width: 1100px) {
  .g4 {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .dash-main {
    padding: 26px 22px;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-sep,
  .nav-right {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-split {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .hero-panel {
    padding: 52px 28px;
  }
  .hp-celeb .panel-edge {
    display: none;
  }
  .hp-talent {
    border-left: none;
    border-top: 1px solid rgba(37, 99, 235, 0.12);
  }
  .hp-celeb::after,
  .hp-talent::after {
    font-size: 160px;
  }
  .hp-content h1 {
    font-size: 2rem;
  }
  .g4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .g3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .g2 {
    grid-template-columns: 1fr;
  }
  .form-row,
  .form-3 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dash-wrap {
    grid-template-columns: 1fr;
  }
  .dash-side {
    position: static;
    height: auto;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 8px 12px;
    gap: 3px;
    border-right: none;
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .dash-side .side-lbl,
  .dash-side .side-spacer,
  .dash-side .side-footer {
    display: none;
  }
  .dash-side .side-link {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 8px 12px;
    font-size: 0.78rem;
    border-radius: var(--r-sm);
  }
  .dash-main {
    padding: 20px 16px;
    background: var(--bg);
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 14px;
  }
  .hero-panel {
    padding: 40px 18px;
  }
  .hero-services {
    grid-template-columns: 1fr;
  }
  .hero-cta {
    flex-direction: column;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .g4,
  .g3,
  .g2 {
    grid-template-columns: 1fr;
  }
  /* Search field full width, other filters 2-per-row (50%) */
  .toolbar {
    gap: 10px;
  }
  .fgroup {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
  }
  .fgroup.grow {
    flex: 1 1 100%;
  }
  .auth-card {
    padding: 24px 18px;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .modal {
    padding: 20px 16px;
  }
  th,
  td {
    padding: 9px 10px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .pipeline {
    flex-direction: column;
  }
  .p-col {
    width: 100%;
  }
}

/* ================================================================
      Additions — smooth scroll, image loading, skeletons, search-select,
      language chips, blog slider
      ================================================================ */

/* Smooth auto-scroll behaviour site-wide */
html {
  scroll-behavior: smooth;
}

/* ── Image loading: shimmer placeholder + fade-in ── */
@keyframes shimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* A thumb that wraps an <img class="lazy-img"> shows a shimmer until loaded.
      The shimmer stops once .thumb-ready is added on image load. */
.card-thumb:not(.thumb-ready) {
  background: linear-gradient(
    90deg,
    var(--surface-2) 25%,
    var(--surface-3) 37%,
    var(--surface-2) 63%
  );
  background-size: 900px 100%;
  animation: shimmer 1.4s ease-in-out infinite;
}
.lazy-img {
  opacity: 0;
  transition: opacity 0.45s ease;
}
.lazy-img.loaded {
  opacity: 1;
}
/* Once an image is loaded, stop the shimmer on its parent */
.thumb-ready {
  animation: none !important;
  background: var(--surface-2) !important;
}

/* Standalone spinner */
.spinner {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid var(--border-2);
  border-top-color: var(--gold);
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}
.loader-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 60px 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ── Skeleton cards (shown while a profile grid is loading) ── */
.skeleton-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
}
.skeleton-card .sk-thumb {
  aspect-ratio: 3/4;
  background: linear-gradient(
    90deg,
    var(--surface-2) 25%,
    var(--surface-3) 37%,
    var(--surface-2) 63%
  );
  background-size: 900px 100%;
  animation: shimmer 1.4s infinite;
}
.skeleton-card .sk-body {
  padding: 14px;
}
.skeleton-card .sk-line {
  height: 11px;
  border-radius: 6px;
  margin-bottom: 9px;
  background: linear-gradient(
    90deg,
    var(--surface-2) 25%,
    var(--surface-3) 37%,
    var(--surface-2) 63%
  );
  background-size: 900px 100%;
  animation: shimmer 1.4s infinite;
}
.skeleton-card .sk-line.short {
  width: 55%;
}

/* ── Searchable select (combobox) ── */
.search-select {
  position: relative;
}
.search-select .ss-input {
  width: 100%;
  cursor: text;
}
.search-select .ss-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 40;
  background: var(--surface);
  border: 1.5px solid var(--border-2);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  max-height: 240px;
  overflow: auto;
  display: none;
}
.search-select.open .ss-menu {
  display: block;
}
.search-select .ss-opt {
  padding: 9px 12px;
  font-size: 0.9rem;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
}
.search-select .ss-opt:last-child {
  border-bottom: none;
}
.search-select .ss-opt:hover,
.search-select .ss-opt.active {
  background: var(--gold-dim);
  color: var(--gold-2);
}
.search-select .ss-empty {
  padding: 12px;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

/* Force a single .toolbar to wrap into a new row */
.tb-break {
  flex-basis: 100%;
  height: 0;
  margin: 0;
  padding: 0;
}

/* Multi-select (checkbox dropdown) built on .search-select — matches native <select> */
.search-select .ms-field {
  width: 100%;
  padding: 10px 34px 10px 13px;
  cursor: pointer;
  position: relative;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}
.search-select .ms-field .ms-caret {
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.7rem;
}
.search-select.open .ms-field {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.search-select.disabled .ms-field {
  opacity: 0.55;
  cursor: not-allowed;
  background: var(--surface-2);
}
.search-select .ss-opt.ms-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  color: var(--text);
}
.search-select .ss-opt.ms-opt input {
  width: auto;
  margin: 0;
  flex: 0 0 auto;
  accent-color: var(--gold);
}
/* gold only when selected; default white */
.search-select .ss-opt.ms-opt input:checked {
  background: var(--gold);
}
/* selected option highlighted with a background */
.search-select .ss-opt.ms-opt:has(input:checked) {
  background: var(--gold-dim);
  color: var(--gold-2);
  font-weight: 600;
}

/* ── Language chips — highlight background when checked ── */
.lang-chip {
  transition: all 0.15s;
}
.lang-chip:has(input:checked) {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #fff !important;
}
.lang-chip:has(input:checked) input {
  accent-color: #fff;
}

/* ── Blog image slider ── */
.blog-slider {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--surface-2);
}
.blog-slider .bs-track {
  display: flex;
  transition: transform 0.4s ease;
}
.blog-slider .bs-slide {
  min-width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.blog-slider .bs-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-slider .bs-btn.prev {
  left: 12px;
}
.blog-slider .bs-btn.next {
  right: 12px;
}
.blog-slider .bs-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  gap: 7px;
  justify-content: center;
}
.blog-slider .bs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}
.blog-slider .bs-dot.active {
  background: #fff;
  width: 22px;
  border-radius: 5px;
}

/* ================================================================
      MIGRATED INLINE STYLES (auto-generated 1:1 from removed
      style="..." attributes across detail pages and dashboards)
      ================================================================ */
.u-ar-34-bg-surfac-br-rlg { aspect-ratio:3/4; background:var(--surface-2); border-radius:var(--r-lg); overflow:hidden; margin-bottom:10px; display:flex; align-items:center; justify-content:center; }
.u-bdb-none { border-bottom:none; }
.u-bdb-none-2 { border-bottom: none; }
.u-bg-25d366-clr-fff-bd-none { background:#25d366; color:#fff; border:none; gap:6px; }
.u-bg-7c3aed-clr-fff { background:#7c3aed; color:#fff; }
.u-bg-fff-clr-gold-fw-700 { background:#fff; color:var(--gold); font-weight:700; }
.u-bg-surfac-bd-1pxsol-br-rlg { background:var(--surface); border:1px solid var(--gold); border-radius:var(--r-lg); padding:14px 18px; margin-bottom:18px; display:flex; flex-wrap:wrap; align-items:center; gap:12px; }
.u-bg-surfac-bd-1pxsol-br-rlg-2 { background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg); padding:26px; }
.u-bg-surfac-bd-1pxsol-br-rlg-3 { background:var(--surface); border:1px solid var(--amber); border-radius:var(--r-lg); padding:18px 20px; margin-bottom:10px; }
.u-bg-surfac-bd-1pxsol-br-rlg-4 { background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg); padding:18px 20px; margin-bottom:16px; }
.u-bg-surfac-bd-1pxsol-br-rlg-5 { background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg); padding:14px 16px; }
.u-bg-surfac-pad-10px12-br-r { background:var(--surface-2); padding:10px 12px; border-radius:var(--r); border:1px solid var(--border); }
.u-br-0rr0 { border-radius: 0 var(--r) var(--r) 0; }
.u-clr-gold-fs-082rem-fw-600 { color: var(--gold); font-size: 0.82rem; font-weight: 600; }
.u-clr-gold-fw-700-fs-82rem { color:var(--gold); font-weight:700; font-size:.82rem; text-transform:uppercase; letter-spacing:.5px; }
.u-clr-gold-fw-700-fs-82rem-2 { color:var(--gold); font-weight:700; font-size:.82rem; }
.u-clr-green-fw-600 { color:var(--green); font-weight:600; }
.u-clr-muted-fs-085rem-mt-3px { color: var(--muted); font-size: 0.85rem; margin-top: 3px; }
.u-clr-muted-fs-088rem-mb-16px { color: var(--muted); font-size: 0.88rem; margin-bottom: 16px; }
.u-clr-muted-fs-088rem-mt-3px { color: var(--muted); font-size: 0.88rem; margin-top: 3px; }
.u-clr-muted-fs-09rem-mt-3px { color: var(--muted); font-size: 0.9rem; margin-top: 3px; }
.u-clr-muted-fs-68rem-fw-700 { color:var(--muted); font-size:.68rem; font-weight:700; text-transform:uppercase; letter-spacing:.8px; margin-bottom:4px; }
.u-clr-muted-fs-68rem-fw-700-2 { color:var(--muted); font-size:.68rem; font-weight:700; text-transform:uppercase; letter-spacing:.8px; margin-bottom:6px; }
.u-clr-muted-fs-76rem { color:var(--muted); font-size:.76rem; }
.u-clr-muted-fs-7rem-fw-700 { color:var(--muted); font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.8px; margin-bottom:4px; }
.u-clr-muted-fs-85rem-mt-3px { color:var(--muted); font-size:.85rem; margin-top:3px; }
.u-clr-muted-fs-85rem-pad-10px0 { color:var(--muted); font-size:.85rem; padding:10px 0; }
.u-clr-muted-fs-88rem { color:var(--muted); font-size:.88rem; }
.u-clr-muted-fs-88rem-mb-16px { color:var(--muted); font-size:.88rem; margin-bottom:16px; }
.u-clr-muted-fs-88rem-mb-16px-2 { color:var(--muted); font-size:.88rem; margin-bottom:16px; font-weight:400; }
.u-clr-muted-fs-88rem-mt-3px { color:var(--muted); font-size:.88rem; margin-top:3px; }
.u-clr-muted-fw-400 { color:var(--muted); font-weight:400; }
.u-clr-muted-fw-600-fs-85rem { color:var(--muted); font-weight:600; font-size:.85rem; }
.u-clr-purple { color:var(--purple); }
.u-clr-purple-fw-600 { color:var(--purple); font-weight:600; }
.u-clr-red-ml-auto { color:var(--red); margin-left:auto; }
.u-clr-text { color:var(--text); }
.u-clr-text2-lh-18-fw-400 { color:var(--text-2); line-height:1.8; font-weight:400; font-size:.95rem; }
.u-cur-pointe { cursor:pointer; }
.u-cur-zoomin { cursor:zoom-in; }
.u-d-flex { display: flex; }
.u-d-flex-ai-center-gap-10px { display:flex; align-items:center; gap:10px; padding:8px; border:1px solid var(--border); border-radius:var(--r); }
.u-d-flex-ai-center-gap-10px-2 { display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.u-d-flex-ai-center-gap-10px-3 { display:flex; align-items:center; gap:10px; margin-bottom:14px; flex-wrap:wrap; }
.u-d-flex-ai-center-gap-10px-4 { display:flex; align-items:center; gap:10px; margin-bottom:12px; flex-wrap:wrap; }
.u-d-flex-ai-center-gap-10px-5 { display:flex; align-items:center; gap:10px; margin-bottom:8px; }
.u-d-flex-ai-center-gap-12px { display:flex; align-items:center; gap:12px; padding:8px 10px; border:1px solid var(--border); border-radius:var(--r); background:var(--surface-2); }
.u-d-flex-ai-center-gap-6px { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.u-d-flex-ai-center-gap-7px { display:flex; align-items:center; gap:7px; font-size:.8rem; }
.u-d-flex-ai-center-gap-8px { display:flex; align-items:center; gap:8px; margin-bottom:6px; }
.u-d-flex-ai-center-jc-spaceb { display:flex; align-items:center; justify-content:space-between; padding:9px 0; border-bottom:1px solid var(--border); font-size:.88rem; }
.u-d-flex-ai-center-pad-012px { display: flex; align-items: center; padding: 0 12px; background: var(--surface-2); border: 1.5px solid var(--border); border-right: none; border-radius: var(--r) 0 0 var(--r); font-weight: 600; color: var(--text-2); }
.u-d-flex-ai-center-pad-012px-2 { display: flex; align-items: center; padding: 0 12px; background: var(--surface-2); border: 1.5px solid var(--border); border-right: none; border-radius: var(--r) 0 0 var(--r); font-size: 0.9rem; font-weight: 600; color: var(--text-2); }
.u-d-flex-ai-stretc-gap-0 { display: flex; align-items: stretch; gap: 0; }
.u-d-flex-fd-column-gap-10px { display:flex; flex-direction:column; gap:10px; font-size:.85rem; }
.u-d-flex-fd-column-gap-10px-2 { display:flex; flex-direction:column; gap:10px; }
.u-d-flex-fd-column-gap-14px { display:flex; flex-direction:column; gap:14px; }
.u-d-flex-fd-column-gap-5px { display:flex; flex-direction:column; gap:5px; }
.u-d-flex-fd-column-gap-6px { display:flex; flex-direction:column; gap:6px; margin-top:6px; }
.u-d-flex-fd-column-gap-6px-2 { display:flex; flex-direction:column; gap:6px; min-width:180px; }
.u-d-flex-fd-column-gap-7px { display:flex; flex-direction:column; gap:7px; }
.u-d-flex-fd-column-gap-8px { display:flex; flex-direction:column; gap:8px; }
.u-d-flex-fd-column-gap-8px-2 { display: flex; flex-direction: column; gap: 8px; }
.u-d-flex-fd-column-gap-8px-3 { display:flex; flex-direction:column; gap:8px; max-height:60vh; overflow:auto; }
.u-d-flex-fd-column-gap-8px-4 { display: flex; flex-direction: column; gap: 8px; max-height: 50vh; overflow: auto; }
.u-d-flex-fd-column-gap-8px-5 { display: flex; flex-direction: column; gap: 8px; max-height: 52vh; overflow: auto; }
.u-d-flex-fd-column-gap-9px { display:flex; flex-direction:column; gap:9px; }
.u-d-flex-fd-column-gap-9px-2 { display:flex; flex-direction:column; gap:9px; font-size:.86rem; }
.u-d-flex-fw2-wrap-gap-10px { display:flex; flex-wrap:wrap; gap:10px; font-size:.85rem; color:var(--muted); }
.u-d-flex-fw2-wrap-gap-14px { display:flex; flex-wrap:wrap; gap:14px; align-items:flex-start; }
.u-d-flex-fw2-wrap-gap-6px { display:flex; flex-wrap:wrap; gap:6px; margin-top:8px; }
.u-d-flex-fw2-wrap-gap-8px { display:flex; flex-wrap:wrap; gap:8px; }
.u-d-flex-fw2-wrap-gap-8px-2 { display:flex; flex-wrap:wrap; gap:8px; margin-top:4px; }
.u-d-flex-fw2-wrap-gap-8px-3 { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.u-d-flex-gap-10px { display: flex; gap: 10px; }
.u-d-flex-gap-10px-fw2-wrap { display:flex; gap:10px; flex-wrap:wrap; }
.u-d-flex-gap-10px-fw2-wrap-2 { display:flex; gap:10px; flex-wrap:wrap; margin-top:20px; border-top:1px solid var(--border); padding-top:18px; }
.u-d-flex-gap-10px-mt-4px { display: flex; gap: 10px; margin-top: 4px; }
.u-d-flex-gap-10px-mt-6px { display:flex; gap:10px; margin-top:6px; }
.u-d-flex-gap-10px-mt-6px-2 { display: flex; gap: 10px; margin-top: 6px; }
.u-d-flex-gap-5px { display:flex; gap:5px; }
.u-d-flex-gap-6px { display: flex; gap: 6px; }
.u-d-flex-gap-6px-2 { display:flex; gap:6px; }
.u-d-flex-gap-7px-w-100 { display:flex; gap:7px; width:100%; }
.u-d-flex-gap-8px { display: flex; gap: 8px; }
.u-d-flex-gap-8px-2 { display:flex; gap:8px; }
.u-d-flex-gap-8px-fw2-wrap { display:flex; gap:8px; flex-wrap:wrap; margin-top:14px; }
.u-d-flex-gap-8px-fw2-wrap-2 { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:20px; }
.u-d-flex-gap-8px-fw2-wrap-3 { display:flex; gap:8px; flex-wrap:wrap; }
.u-d-flex-gap-8px-mb-12px { display: flex; gap: 8px; margin-bottom: 12px; }
.u-d-flex-jc-spaceb-ai-center { display:flex; justify-content:space-between; align-items:center; }
.u-d-flex-jc-spaceb-ai-flexst { display:flex; justify-content:space-between; align-items:flex-start; gap:10px; }
.u-d-flex-jc-spaceb-pad-9px0 { display:flex; justify-content:space-between; padding:9px 0; border-bottom:1px solid var(--border); font-size:.88rem; }
.u-d-flex-jc-spaceb-pad-9px0-2 { display:flex; justify-content:space-between; padding:9px 0; font-size:.88rem; }
.u-d-grid-gtc-16fr09-gap-6px { display: grid; grid-template-columns: 1.6fr 0.9fr 0.7fr 0.7fr 0.7fr auto; gap: 6px; font-size: 0.66rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; padding: 0 2px 4px; }
.u-d-grid-gtc-16fr9f-gap-6px { display:grid; grid-template-columns:1.6fr .9fr .7fr .7fr .7fr auto; gap:6px; margin-bottom:6px; }
.u-d-grid-gtc-180px1-gap-22px { display:grid; grid-template-columns:180px 1fr; gap:22px; align-items:start; }
.u-d-grid-gtc-1fr1fr-gap-10px { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.u-d-grid-gtc-1fr1fr-gap-10px-2 { display:grid; grid-template-columns:1fr 1fr; gap:10px; font-size:.86rem; }
.u-d-grid-gtc-1fr1fr-gap-10px-3 { display:grid; grid-template-columns:1fr 1fr 1fr; gap:10px; font-size:.85rem; }
.u-d-grid-gtc-1fr1fr-gap-10px-4 { display:grid; grid-template-columns:1fr 1fr 1fr; gap:10px; margin-top:20px; border-top:1px solid var(--border); padding-top:18px; }
.u-d-grid-gtc-220px1-gap-22px { display:grid; grid-template-columns:220px 1fr; gap:22px; align-items:start; }
.u-d-grid-gtc-300px1-gap-22px { display:grid; grid-template-columns:300px 1fr; gap:22px; align-items:start; }
.u-d-grid-gtc-320px1-gap-22px { display:grid; grid-template-columns:320px 1fr; gap:22px; align-items:start; }
.u-d-grid-gtc-repeat-gap-10px { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 10px; margin-bottom: 20px; }
.u-d-inline-ai-center-gap-6px { display:inline-flex; align-items:center; gap:6px; padding:7px 12px; border:1.5px solid var(--border); border-radius:999px; cursor:pointer; font-size:.85rem; font-weight:600; }
.u-d-none-clr-16a34a-fw-700 { display: none; color: #16a34a; font-weight: 700; font-size: 0.8rem; }
.u-d-none-mb-14px-pad-12px { display: none; margin-bottom: 14px; padding: 12px; background: var(--green-dim); border: 1px solid rgba(22, 163, 74, 0.25); border-radius: var(--r); font-size: 0.9rem; }
.u-d-none-mt-10px-gap-8px { display: none; margin-top: 10px; gap: 8px; align-items: center; }
.u-d-none-mt-12px { display:none; margin-top:12px; }
.u-fd-column-gap-7px { flex-direction:column; gap:7px; }
.u-flex-00auto-alig-flexen { flex:0 0 auto; align-self:flex-end; }
.u-flex-00auto-ml-auto { flex: 0 0 auto; margin-left: auto; }
.u-flex-00auto-ml-auto-2 { flex:0 0 auto; margin-left:auto; }
.u-flex-1-minw-180px { flex:1; min-width:180px; }
.u-flex-1-minw-200px { flex:1; min-width:200px; }
.u-flex-1-minw-220px { flex:1; min-width:220px; }
.u-flex-1-mw-300px-h-7px { flex:1; max-width:300px; height:7px; border-radius:999px; background:var(--surface-3); overflow:hidden; }
.u-font-monosp { font-family:monospace; }
.u-fs-066rem-fw-700-clr-muted { font-size: 0.66rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.u-fs-076rem-clr-muted-m-2px08p { font-size: 0.76rem; color: var(--muted); margin: -2px 0 8px; }
.u-fs-08rem { font-size: 0.8rem; }
.u-fs-11rem-fw-700-mt-4px { font-size:1.1rem; font-weight:700; margin-top:4px; }
.u-fs-1rem-fw-700 { font-size:1rem; font-weight:700; }
.u-fs-28rem-clr-muted-fw-900 { font-size:2.8rem; color:var(--muted); font-weight:900; }
.u-fs-2rem-fw-700-tt-upperc { font-size:2rem; font-weight:700; text-transform:uppercase; letter-spacing:.5px; margin-bottom:8px; }
.u-fs-2rem-fw-700-tt-upperc-2 { font-size:2rem; font-weight:700; text-transform:uppercase; letter-spacing:.5px; margin-bottom:6px; }
.u-fs-68rem-fw-700-clr-gold { font-size:.68rem; font-weight:700; color:var(--gold); letter-spacing:2px; text-transform:uppercase; margin-bottom:6px; }
.u-fs-68rem-fw-700-clr-muted { font-size:.68rem; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:.8px; margin-bottom:8px; }
.u-fs-72rem { font-size:.72rem; }
.u-fs-72rem-clr-muted-mt-8px { font-size:.72rem; color:var(--muted); margin-top:8px; line-height:1.6; }
.u-fs-72rem-fw-700-clr-muted { font-size:.72rem; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:1px; margin-bottom:10px; }
.u-fs-72rem-fw-700-clr-muted-2 { font-size:.72rem; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:1px; margin-bottom:8px; }
.u-fs-72rem-mt-3px { font-size:.72rem; margin-top:3px; }
.u-fs-72rem-pad-4px6px-w-100 { font-size:.72rem; padding:4px 6px; width:100%; margin-top:4px; }
.u-fs-73rem-pad-4px6px-w-100 { font-size:.73rem; padding:4px 6px; width:100%; }
.u-fs-74rem { font-size:.74rem; }
.u-fs-74rem-clr-muted-mb-8px { font-size:.74rem; color:var(--muted); margin-bottom:8px; }
.u-fs-75rem-clr-muted-ta-center { font-size:.75rem; color:var(--muted); text-align:center; }
.u-fs-75rem-pad-4px8px { font-size:.75rem; padding:4px 8px; }
.u-fs-76rem { font-size:.76rem; }
.u-fs-76rem-clr-muted { font-size:.76rem; color:var(--muted); }
.u-fs-76rem-clr-muted-mb-10px { font-size:.76rem; color:var(--muted); margin-bottom:10px; }
.u-fs-76rem-clr-muted-pad-10px { font-size:.76rem; color:var(--muted); padding:10px; background:var(--surface-2); border-radius:var(--r); border:1px solid var(--border); }
.u-fs-78rem-clr-muted { font-size:.78rem; color:var(--muted); }
.u-fs-78rem-clr-muted-mt-10px { font-size:.78rem; color:var(--muted); margin-top:10px; font-weight:400; }
.u-fs-78rem-pad-5px7px { font-size:.78rem; padding:5px 7px; }
.u-fs-78rem-pad-5px8px { font-size:.78rem; padding:5px 8px; }
.u-fs-7rem-fw-700-clr-gold { font-size:.7rem; font-weight:700; color:var(--gold); text-transform:uppercase; letter-spacing:1px; }
.u-fs-7rem-fw-700-clr-muted { font-size:.7rem; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:1px; margin-bottom:10px; }
.u-fs-82rem { font-size:.82rem; }
.u-fs-82rem-clr-text2-mt-8px { font-size:.82rem; color:var(--text-2); margin-top:8px; }
.u-fs-82rem-fw-600-clr-gold { font-size:.82rem; font-weight:600; color:var(--gold); }
.u-fs-82rem-fw-700 { font-size:.82rem; font-weight:700; }
.u-fs-82rem-pad-7px10p { font-size:.82rem; padding:7px 10px; }
.u-fs-85rem-clr-muted { font-size:.85rem; color:var(--muted); }
.u-fs-85rem-d-flex-fd-column { font-size:.85rem; display:flex; flex-direction:column; gap:9px; }
.u-fs-86rem-mb-5px { font-size:.86rem; margin-bottom:5px; }
.u-fs-88rem-clr-text2-lh-17 { font-size:.88rem; color:var(--text-2); line-height:1.7; background:var(--surface-2); border:1px solid var(--border); border-radius:var(--r); padding:12px 14px; }
.u-fs-88rem-clr-text2-lh-17-2 { font-size:.88rem; color:var(--text-2); line-height:1.7; }
.u-fs-8rem { font-size:.8rem; }
.u-fw-400 { font-weight:400; }
.u-fw-700-clr-gold { font-weight:700; color:var(--gold); }
.u-fw-700-fs-102rem { font-weight:700; font-size:1.02rem; }
.u-fw-700-mb-10px-fs-1rem { font-weight:700; margin-bottom:10px; font-size:1rem; }
.u-fw-700-mt-2px { font-weight:700; margin-top:2px; }
.u-fw-700-tt-upperc-ls-3px { font-weight:700; text-transform:uppercase; letter-spacing:.3px; }
.u-fw-800-fs-1rem-mb-4px { font-weight:800; font-size:1rem; margin-bottom:4px; }
.u-gtc-repeat { grid-template-columns:repeat(4,1fr); }
.u-jc-flexst-gap-10px-ta-left { justify-content:flex-start; gap:10px; text-align:left; }
.u-m-0auto1-w-46px-h-46px { margin: 0 auto 14px; width: 46px; height: 46px; font-size: 1.2rem; }
.u-m-0auto1-w-48px-h-48px { margin: 0 auto 14px; width: 48px; height: 48px; font-size: 1.2rem; }
.u-m-6px010 { margin:6px 0 10px; }
.u-m-6px020 { margin:6px 0 20px; }
.u-maxh-160px-ov-auto-bd-1pxsol { max-height: 160px; overflow: auto; border: 1px solid var(--border); border-radius: var(--r); padding: 12px; }
.u-maxh-170px-ov-auto-bd-1pxsol { max-height: 170px; overflow: auto; border: 1px solid var(--border); border-radius: var(--r); padding: 12px; }
.u-maxh-180px-ov-auto-bd-1pxsol { max-height: 180px; overflow: auto; border: 1px solid var(--border); border-radius: var(--r); padding: 12px; }
.u-mb-10px { margin-bottom:10px; }
.u-mb-16px { margin-bottom: 16px; }
.u-mb-16px-fs-1rem { margin-bottom:16px; font-size:1rem; }
.u-mb-20px { margin-bottom:20px; }
.u-mb-24px { margin-bottom:24px; }
.u-mb-26px { margin-bottom:26px; }
.u-minw-170px-fw-600-fs-86rem { min-width:170px; font-weight:600; font-size:.86rem; }
.u-minw-185px { min-width:185px; }
.u-minw-220px { min-width:220px; }
.u-minw-900px { min-width:900px; }
.u-ml-6px { margin-left:6px; }
.u-ml-8px { margin-left:8px; }
.u-ml-auto-bg-none-bd-none { margin-left:auto; background:none; border:none; cursor:pointer; color:var(--muted); font-size:1.1rem; }
.u-ml-auto-d-flex-gap-6px { margin-left:auto; display:flex; gap:6px; }
.u-ml-auto-d-flex-gap-6px-2 { margin-left:auto; display:flex; gap:6px; flex-wrap:wrap; }
.u-ml-auto-d-flex-gap-8px { margin-left:auto; display:flex; gap:8px; }
.u-ml-auto-pad-6px { margin-left: auto; padding: 6px; }
.u-mt-10px { margin-top:10px; }
.u-mt-10px-d-flex-ai-center { margin-top: 10px; display: flex; align-items: center; gap: 10px; }
.u-mt-12px-bg-surfac-bd-1pxsol { margin-top:12px; background:var(--surface-2); border:1px solid var(--border); border-radius:var(--r); padding:12px 14px; }
.u-mt-12px-fs-88rem-clr-text2 { margin-top:12px; font-size:.88rem; color:var(--text-2); line-height:1.8; }
.u-mt-14px { margin-top:14px; }
.u-mt-14px-fs-082rem-clr-muted { margin-top: 14px; font-size: 0.82rem; color: var(--muted); }
.u-mt-14px-fs-76rem-clr-muted { margin-top:14px; font-size:.76rem; color:var(--muted); }
.u-mt-14px-fs-78rem-clr-muted { margin-top:14px; font-size:.78rem; color:var(--muted); }
.u-mt-14px-pad-14px-bg-surfac { margin-top:14px; padding:14px; background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg); }
.u-mt-14px-pad-14px18-bg-golddi { margin-top:14px; padding:14px 18px; background:var(--gold-dim); border:1px solid rgba(244,196,48,.25); border-radius:var(--r); font-size:.86rem; display:flex; align-items:center; gap:10px; }
.u-mt-14px-pad-16px-bg-surfac { margin-top:14px; padding:16px; background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg); }
.u-mt-16px { margin-top: 16px; }
.u-mt-16px-2 { margin-top:16px; }
.u-mt-22px { margin-top:22px; }
.u-mt-6px { margin-top:6px; }
.u-mt-6px-2 { margin-top: 6px; }
.u-mt-8px-fs-082rem-fw-700 { margin-top: 8px; font-size: 0.82rem; font-weight: 700; color: var(--gold); }
.u-mw-120px-fs-82rem { max-width:120px; font-size:.82rem; }
.u-mw-120px-fs-8rem-clr-text2 { max-width:120px; font-size:.8rem; color:var(--text-2); }
.u-mw-140px { max-width: 140px; }
.u-mw-400px { max-width: 400px; }
.u-mw-440px { max-width: 440px; }
.u-mw-440px-2 { max-width:440px; }
.u-mw-460px { max-width:460px; }
.u-mw-520px { max-width: 520px; }
.u-mw-560px { max-width:560px; }
.u-mw-620px { max-width:620px; }
.u-mw-840px { max-width:840px; }
.u-op-6-fs-78rem { opacity:.6; font-size:.78rem; }
.u-over-auto-pb-12px { overflow-x:auto; padding-bottom:12px; }
.u-pad-12px { padding:12px; }
.u-pad-14px { padding: 14px; }
.u-pad-14px18-bg-surfac-bd-1pxsol { padding:14px 18px; background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg); margin-bottom:18px; display:flex; flex-wrap:wrap; gap:14px; font-size:.85rem; }
.u-pos-absolu-bottom-10px-right-10px { position:absolute; bottom:10px; right:10px; z-index:3; background:rgba(0,0,0,.6); color:#fff; border-radius:999px; padding:6px 12px; font-size:.72rem; font-weight:600; display:flex; align-items:center; gap:6px; pointer-events:none; }
.u-pos-absolu-bottom-12px-right-12px { position:absolute; bottom:12px; right:12px; background:rgba(0,0,0,.5); color:#fff; border-radius:999px; padding:5px 11px; font-size:.72rem; font-weight:600; letter-spacing:.5px; }
.u-pos-absolu-bottom-12px-right-12px-2 { position:absolute; bottom:12px; right:12px; background:rgba(0,0,0,.55); color:#fff; border-radius:999px; padding:5px 11px; font-size:.7rem; font-weight:600; letter-spacing:.5px; opacity:0; transition:opacity .2s; }
.u-pos-absolu-inse-0-bg-rgba00 { position:absolute; inset:0; background:rgba(0,0,0,0); transition:background .2s; }
.u-pos-absolu-top-6px-right-6px { position:absolute; top:-6px; right:-6px; width:20px; height:20px; border-radius:50%; border:none; background:var(--red); color:#fff; cursor:pointer; font-size:.8rem; line-height:1; }
.u-pos-relati { position:relative; }
.u-pos-relati-br-rlg-ov-hidden { position:relative; border-radius:var(--r-lg); overflow:hidden; cursor:zoom-in; box-shadow:var(--shadow-sm); }
.u-pos-relati-cur-zoomin { position:relative; cursor:zoom-in; }
.u-pt-30px-pb-60px { padding-top: 30px; padding-bottom: 60px; }
.u-ta-center-fs-78rem-clr-muted { text-align:center; font-size:.78rem; color:var(--muted); margin-top:10px; font-weight:400; }
.u-ta-center-mb-24px { text-align: center; margin-bottom: 24px; }
.u-ta-center-pad-30px-clr-muted { text-align:center; padding:30px; color:var(--muted); }
.u-ta-center-pad-32px20-clr-muted { text-align:center; padding:32px 20px; color:var(--muted); }
.u-ta-center-pad-36px-clr-muted { text-align:center; padding:36px; color:var(--muted); }
.u-ta-center-pad-60px0-clr-muted { text-align: center; padding: 60px 0; color: var(--muted); }
.u-ta-center-pad-80px0-clr-muted { text-align: center; padding: 80px 0; color: var(--muted); }
.u-ta-left-jc-flexst-gap-10px { text-align:left; justify-content:flex-start; gap:10px; }
.u-ta-left-jc-flexst-gap-12px { text-align:left; justify-content:flex-start; gap:12px; }
.u-ta-right-mt-7px { text-align: right; margin-top: 7px; }
.u-w-100-ar-34-of-cover { width:100%; aspect-ratio:3/4; object-fit:cover; }
.u-w-100-h-100-of-cover { width:100%; height:100%; object-fit:cover; }
.u-w-46px-h-34px-of-cover { width:46px; height:34px; object-fit:cover; border-radius:6px; }
.u-w-80px-br-r-mt-10px { width: 80px; border-radius: var(--r); margin-top: 10px; display: none; }
.u-w-96px-h-60px-of-cover { width:96px; height:60px; object-fit:cover; border-radius:var(--r); }
.u-w-96px-h-60px-of-cover-2 { width:96px; height:60px; object-fit:cover; border-radius:var(--r); opacity:.7; }
.u-w-auto-m-0 { width: auto; margin: 0; }
