/* =============================================
   CP 002 - Visual Journey Theme
   Dark Luxury Wedding Invitation
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --vj-bg-dark: #1a1410;
  --vj-bg-card: #2d2218;
  --vj-bg-medium: #3a2e22;
  --vj-primary: #c4a265;
  --vj-primary-light: #d4b87a;
  --vj-primary-dark: #785d32;
  --vj-text-white: #ffffff;
  --vj-text-light: #f5f0e8;
  --vj-text-muted: rgba(255,255,255,0.7);
  --vj-text-dim: rgba(255,255,255,0.5);
  --vj-blur-bg: rgba(30, 23, 15, 0.65);
  --vj-border: rgba(255,255,255,0.15);
  --vj-font-title: 'Meow Script', cursive;
  --vj-font-body: 'Montserrat', sans-serif;
  --vj-radius: 8px;
  --vj-nav-height: 56px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.vj-theme {
  font-family: var(--vj-font-body);
  font-size: 14px;
  color: var(--vj-text-white);
  background: var(--vj-bg-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.vj-theme img { max-width: 100%; height: auto; }
body.vj-theme a { color: var(--vj-primary); text-decoration: none; }
[v-cloak] { display: none !important; }

/* ---------- Preloader ---------- */
.vj-preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--vj-bg-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease;
}
.vj-preloader.hidden { opacity: 0; pointer-events: none; }
.vj-preloader .spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--vj-primary-dark);
  border-top-color: var(--vj-primary);
  border-radius: 50%;
  animation: vj-spin 0.8s linear infinite;
}
@keyframes vj-spin { to { transform: rotate(360deg); } }

/* ---------- Desktop Split Layout ---------- */
.vj-desktop-left {
  display: none;
  position: fixed; top: 0; left: 0; bottom: 0;
  background: var(--vj-bg-dark);
  z-index: 10;
  overflow: hidden;
}
.vj-desktop-left .left-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.4);
}
.vj-desktop-left .left-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 40px;
}
.vj-desktop-left .left-label {
  font-family: var(--vj-font-body);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vj-text-muted);
  margin-bottom: 12px;
}
.vj-desktop-left .left-names {
  font-family: var(--vj-font-title);
  font-size: 3rem;
  color: var(--vj-text-white);
  line-height: 1.1;
}

/* Firefly particles in left panel */
.vj-fireflies {
  position: absolute; inset: 0; z-index: 1;
  overflow: hidden; pointer-events: none;
}
.vj-firefly {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--vj-primary);
  box-shadow: 0 0 8px 2px var(--vj-primary-light), 0 0 20px 4px rgba(196,162,101,0.3);
  opacity: 0;
  animation: vj-firefly-float 6s ease-in-out infinite;
}
.vj-firefly:nth-child(1)  { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 7s; }
.vj-firefly:nth-child(2)  { left: 30%; top: 60%; animation-delay: 1.2s; animation-duration: 5s; }
.vj-firefly:nth-child(3)  { left: 50%; top: 35%; animation-delay: 2.5s; animation-duration: 8s; }
.vj-firefly:nth-child(4)  { left: 70%; top: 70%; animation-delay: 0.8s; animation-duration: 6s; }
.vj-firefly:nth-child(5)  { left: 85%; top: 15%; animation-delay: 3.5s; animation-duration: 9s; }
.vj-firefly:nth-child(6)  { left: 20%; top: 80%; animation-delay: 4.2s; animation-duration: 7s; }
.vj-firefly:nth-child(7)  { left: 60%; top: 45%; animation-delay: 1.8s; animation-duration: 5.5s; }
.vj-firefly:nth-child(8)  { left: 40%; top: 90%; animation-delay: 5s; animation-duration: 6.5s; }
.vj-firefly:nth-child(9)  { left: 75%; top: 50%; animation-delay: 2s; animation-duration: 8.5s; }
.vj-firefly:nth-child(10) { left: 15%; top: 40%; animation-delay: 3s; animation-duration: 7.5s; }
.vj-firefly:nth-child(11) { left: 90%; top: 85%; animation-delay: 0.5s; animation-duration: 6s; }
.vj-firefly:nth-child(12) { left: 45%; top: 10%; animation-delay: 4s; animation-duration: 9.5s; }

@keyframes vj-firefly-float {
  0%   { opacity: 0; transform: translate(0, 0) scale(0.5); }
  20%  { opacity: 0.9; }
  50%  { opacity: 0.6; transform: translate(30px, -40px) scale(1); }
  80%  { opacity: 0.8; }
  100% { opacity: 0; transform: translate(-20px, -80px) scale(0.3); }
}

/* ---------- Right Pane (scrollable) ---------- */
.vj-right-pane {
  width: 100%;
  min-height: 100vh;
  position: relative;
}

/* ---------- Cover Gate ---------- */
.vj-cover-gate {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.vj-cover-gate.closing {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}
.vj-cover-gate .cover-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.vj-cover-gate .cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(120,93,50,0.85) 100%);
}
.vj-cover-gate .cover-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  height: 100%; width: 100%;
  padding: 40px 30px 60px;
  text-align: center;
}
.vj-cover-gate .cover-label {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vj-text-muted);
  font-weight: 700;
  margin-bottom: auto;
  padding-top: 40px;
}
.vj-cover-gate .cover-names {
  font-family: var(--vj-font-title);
  font-size: 2.5rem;
  color: var(--vj-text-white);
  line-height: 1.1;
  margin-bottom: 8px;
}
.vj-cover-gate .cover-and {
  font-family: var(--vj-font-title);
  font-size: 2.2rem;
  color: var(--vj-text-muted);
}
.vj-cover-gate .cover-date {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--vj-text-white);
  letter-spacing: 0.1em;
  margin: 16px 0;
}
.vj-cover-gate .cover-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--vj-primary);
  color: var(--vj-text-white);
  border: none; border-radius: 4px;
  padding: 10px 32px;
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.15s;
  animation: vj-pulse 2s ease-in-out infinite;
}
.vj-cover-gate .cover-btn:hover { background: var(--vj-primary-light); }
.vj-cover-gate .cover-btn:active { transform: scale(0.96); }
@keyframes vj-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,162,101,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(196,162,101,0); }
}
.vj-cover-gate .cover-guest {
  margin-top: 24px;
  text-align: center;
  color: var(--vj-text-white);
}
.vj-cover-gate .cover-guest .guest-label { font-size: 0.85rem; }
.vj-cover-gate .cover-guest .guest-name { font-weight: 800; font-size: 1rem; }

/* ---------- Sections Common ---------- */
.vj-section {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative;
  padding: 60px 24px;
  overflow: hidden;
}
.vj-section .section-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.vj-section .section-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,20,16,0.6) 0%, rgba(26,20,16,0.85) 100%);
}

/* Glass Card */
.vj-glass {
  background: var(--vj-blur-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--vj-border);
  border-radius: var(--vj-radius);
  padding: 32px 24px;
}

/* Section Titles */
.vj-section-title {
  font-family: var(--vj-font-title);
  font-size: 2rem;
  color: var(--vj-primary);
  text-align: center;
  margin-bottom: 16px;
}

/* ---------- Section: Hero ---------- */
.vj-hero { background: var(--vj-bg-dark); }
.vj-hero .hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.vj-hero .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(120,93,50,0.9) 100%);
}
.vj-hero .hero-content {
  position: relative; z-index: 2;
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  min-height: 95vh; padding-bottom: 60px;
}
.vj-hero .hero-label {
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--vj-text-muted);
}
.vj-hero .hero-names {
  font-family: var(--vj-font-title);
  font-size: 2.5rem;
  color: var(--vj-text-white);
  line-height: 1.1;
  margin: 12px 0;
}
.vj-hero .hero-and {
  font-family: var(--vj-font-title);
  font-size: 2.2rem;
  color: var(--vj-text-muted);
}
.vj-hero .hero-date {
  font-size: 0.75rem; font-weight: 700;
  color: var(--vj-text-white);
  letter-spacing: 0.1em;
  margin-top: 12px;
}

/* Countdown */
.vj-countdown {
  display: flex; gap: 16px;
  justify-content: center;
  margin: 16px 0;
}
.vj-countdown .cd-item {
  display: flex; flex-direction: column;
  align-items: center; min-width: 50px;
}
.vj-countdown .cd-num {
  font-size: 1.5rem; font-weight: 600;
  color: var(--vj-text-white);
  background: var(--vj-blur-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--vj-border);
  border-radius: 6px;
  padding: 8px 12px;
  min-width: 48px; text-align: center;
}
.vj-countdown .cd-label {
  font-size: 0.65rem; font-weight: 600;
  color: var(--vj-text-muted);
  margin-top: 6px; text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Section: Quote ---------- */
.vj-quote { background: var(--vj-bg-dark); padding: 60px 24px; }
.vj-quote .quote-icon {
  width: 28px; height: auto;
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(10deg);
  opacity: 0.5;
}
.vj-quote .quote-text {
  font-style: italic;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--vj-text-light);
  text-align: left;
}
.vj-quote .quote-source {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--vj-text-white);
  text-align: left;
  margin-top: 16px;
}

/* ---------- Section: Mempelai ---------- */
.vj-mempelai {
  min-height: 90vh;
  background-size: cover; background-position: center;
  position: relative;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 0 24px 60px;
}
.vj-mempelai .mempelai-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,20,16,0.8) 0%, rgba(26,20,16,0.1) 50%);
}
.vj-mempelai .mempelai-opening {
  position: relative; z-index: 2;
  text-align: center;
  font-size: 0.85rem;
  color: var(--vj-text-muted);
  padding: 40px 24px 20px;
}
.vj-mempelai .mempelai-card {
  position: relative; z-index: 2;
}
.vj-mempelai .mempelai-name {
  font-family: var(--vj-font-title);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--vj-text-white);
}
.vj-mempelai .mempelai-parents {
  font-size: 0.75rem;
  color: var(--vj-text-muted);
  margin-top: 4px;
}
.vj-mempelai .mempelai-ig {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--vj-primary);
  color: var(--vj-text-white);
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 0.8rem; font-weight: 600;
  margin-top: 10px;
  transition: background 0.3s;
}
.vj-mempelai .mempelai-ig:hover { background: var(--vj-primary-light); }

/* ---------- Section: Schedule ---------- */
.vj-schedule {
  background: var(--vj-bg-dark);
  padding: 60px 24px;
}
.vj-schedule .schedule-item {
  text-align: center;
  padding: 20px 0;
}
.vj-schedule .schedule-name {
  font-family: var(--vj-font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vj-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.vj-schedule .schedule-datetime {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap;
  font-size: 0.75rem; font-weight: 700;
  color: var(--vj-text-muted);
  margin: 8px 0;
}
.vj-schedule .schedule-venue {
  font-size: 0.9rem; font-weight: 700;
  color: var(--vj-text-white);
}
.vj-schedule .schedule-address {
  font-size: 0.75rem; font-weight: 300;
  color: var(--vj-text-muted);
  margin-top: 4px;
}
.vj-schedule .schedule-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--vj-primary);
  color: var(--vj-text-white);
  border: none; border-radius: 4px;
  padding: 8px 16px;
  font-size: 0.8rem; font-weight: 600;
  cursor: pointer; margin-top: 12px;
  transition: background 0.3s;
}
.vj-schedule .schedule-btn:hover { background: var(--vj-primary-light); }
.vj-schedule .schedule-divider {
  width: 2px; height: 40px;
  background: var(--vj-primary);
  margin: 0 auto;
}

/* ---------- Section: Love Story ---------- */
.vj-story { background: var(--vj-bg-dark); padding: 60px 24px; }
.vj-story .story-timeline {
  position: relative;
  padding-left: 0;
}
.vj-story .story-heart {
  text-align: center;
  color: var(--vj-primary);
  font-size: 1.2rem;
  margin: 12px 0;
}
.vj-story .story-item {
  margin-bottom: 20px;
}
.vj-story .story-item .story-photo {
  width: 100%; height: 150px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 12px;
}
.vj-story .story-item-title {
  font-size: 0.95rem; font-weight: 700;
  color: var(--vj-text-white);
  margin-bottom: 6px;
}
.vj-story .story-item-desc {
  font-size: 0.8rem; font-weight: 400;
  color: var(--vj-text-muted);
  line-height: 1.6;
}

/* ---------- Section: Gallery ---------- */
.vj-gallery { padding: 60px 0; background: var(--vj-bg-dark); }
.vj-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  padding: 0;
}
.vj-gallery .gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.vj-gallery .gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.vj-gallery .gallery-item:hover img { transform: scale(1.08); }

/* Lightbox */
.vj-lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
  padding: 20px;
}
.vj-lightbox.active { display: flex; }
.vj-lightbox img {
  max-width: 90%; max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  animation: vj-zoom-in 0.3s ease;
}
.vj-lightbox .lb-close {
  position: absolute; top: 20px; right: 24px;
  color: #fff; font-size: 2rem;
  cursor: pointer; background: none; border: none;
  z-index: 10;
}
@keyframes vj-zoom-in {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ---------- Section: Amplop / Gift ---------- */
.vj-gift { background: var(--vj-bg-dark); padding: 60px 24px; }
.vj-gift .gift-card {
  background: #fff;
  color: #333;
  border-radius: var(--vj-radius);
  padding: 20px;
  text-align: center;
  margin-bottom: 12px;
}
.vj-gift .gift-card .bank-logo {
  height: 20px; margin-bottom: 8px;
}
.vj-gift .gift-card .bank-name {
  font-weight: 800; font-size: 0.95rem;
}
.vj-gift .gift-card .bank-label {
  font-size: 0.7rem; color: #888; font-weight: 300;
}
.vj-gift .gift-card .bank-value {
  font-size: 0.8rem; font-weight: 600;
}
.vj-gift .gift-card .copy-btn {
  background: none; border: none;
  color: #555; cursor: pointer;
  font-size: 0.9rem; padding: 4px 8px;
  transition: color 0.2s;
}
.vj-gift .gift-card .copy-btn:hover { color: var(--vj-primary); }

/* ---------- Section: RSVP ---------- */
.vj-rsvp { background: var(--vj-bg-dark); padding: 60px 24px; }
.vj-rsvp .rsvp-btn {
  display: block; width: 100%;
  background: var(--vj-primary);
  color: var(--vj-text-white);
  border: none; border-radius: 4px;
  padding: 14px; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; text-align: center;
  transition: background 0.3s;
}
.vj-rsvp .rsvp-btn:hover { background: var(--vj-primary-light); }

/* ---------- Section: Guest Book ---------- */
.vj-guestbook { background: var(--vj-bg-dark); padding: 60px 24px; }
.vj-guestbook .gb-form { width: 100%; }
.vj-guestbook .gb-input {
  width: 100%;
  background: transparent;
  border: 1px solid var(--vj-border);
  border-radius: 4px;
  color: var(--vj-text-white);
  padding: 10px 14px;
  font-size: 0.85rem;
  font-family: var(--vj-font-body);
  margin-bottom: 10px;
  outline: none;
  transition: border-color 0.3s;
}
.vj-guestbook .gb-input:focus { border-color: var(--vj-primary); }
.vj-guestbook .gb-input::placeholder { color: var(--vj-text-dim); }
.vj-guestbook textarea.gb-input { min-height: 120px; resize: none; }
.vj-guestbook .gb-submit {
  width: 100%;
  background: var(--vj-primary);
  color: var(--vj-text-white);
  border: none; border-radius: 4px;
  padding: 12px; font-size: 0.85rem; font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background 0.3s;
}
.vj-guestbook .gb-submit:hover { background: var(--vj-primary-light); }
.vj-guestbook .gb-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.vj-guestbook .gb-list {
  max-height: 400px;
  overflow-y: auto;
  margin-top: 20px;
}
.vj-guestbook .gb-list::-webkit-scrollbar { width: 4px; }
.vj-guestbook .gb-list::-webkit-scrollbar-thumb { background: var(--vj-primary-dark); border-radius: 2px; }
.vj-guestbook .gb-item {
  background: rgba(45,34,24,0.6);
  border: 1px solid var(--vj-border);
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 8px;
}
.vj-guestbook .gb-item .gb-name { font-weight: 700; font-size: 0.9rem; }
.vj-guestbook .gb-item .gb-time {
  font-size: 0.65rem; color: var(--vj-text-dim);
  margin: 2px 0 6px;
}
.vj-guestbook .gb-item .gb-msg { font-size: 0.8rem; color: var(--vj-text-light); line-height: 1.5; }

/* ---------- Section: Closing ---------- */
.vj-closing {
  background: var(--vj-bg-dark);
  padding: 60px 24px;
  text-align: center;
}
.vj-closing .closing-msg {
  font-size: 0.9rem; color: var(--vj-text-light);
  line-height: 1.7; margin-bottom: 20px;
}
.vj-closing .closing-regards {
  font-size: 0.85rem; color: var(--vj-text-muted);
}
.vj-closing .closing-names {
  font-family: var(--vj-font-title);
  font-size: 1.8rem;
  color: var(--vj-text-white);
  margin-top: 8px;
}

/* ---------- Footer ---------- */
.vj-footer {
  background: var(--vj-bg-dark);
  padding: 30px 24px 100px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--vj-text-dim);
}
.vj-footer .footer-names {
  font-weight: 700; color: var(--vj-text-light);
  margin-bottom: 6px;
}

/* ---------- Bottom Navigation ---------- */
.vj-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 900;
  display: flex; justify-content: center;
  padding: 8px 0;
  transition: opacity 0.3s;
}
.vj-bottom-nav .nav-inner {
  display: flex;
  background: var(--vj-blur-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 28px;
  padding: 6px 12px;
  gap: 4px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  border: 1px solid var(--vj-border);
}
.vj-bottom-nav .nav-item {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  color: var(--vj-text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.3s, background 0.3s;
  text-decoration: none;
}
.vj-bottom-nav .nav-item:hover,
.vj-bottom-nav .nav-item.active {
  color: var(--vj-primary);
  background: rgba(196,162,101,0.15);
}

/* ---------- Music Button ---------- */
.vj-music-btn {
  position: fixed;
  bottom: 76px; right: 16px;
  z-index: 910;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--vj-blur-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--vj-border);
  color: var(--vj-text-white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.85rem;
  transition: background 0.3s, opacity 0.3s, visibility 0.3s;
  opacity: 0; visibility: hidden;
}
.vj-music-btn.visible { opacity: 1; visibility: visible; }
.vj-music-btn:hover { background: rgba(196,162,101,0.3); }

/* ---------- Scroll Reveal Animation ---------- */
.vj-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.vj-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive / Desktop ---------- */
@media (min-width: 768px) {
  .vj-desktop-left {
    display: block;
    width: 60%;
  }
  .vj-right-pane {
    width: 40%;
    margin-left: 60%;
  }
  .vj-cover-gate {
    /* Only right side on desktop */
  }
  .vj-bottom-nav {
    width: 40%;
    left: auto; right: 0;
    justify-content: center;
  }
  .vj-music-btn {
    right: calc(40% - 56px);
  }
}

/* ---------- Utility ---------- */
.vj-text-primary { color: var(--vj-primary) !important; }
.vj-text-center { text-align: center; }
.vj-mb-0 { margin-bottom: 0 !important; }
.vj-mt-20 { margin-top: 20px; }
.vj-w-full { width: 100%; }
.vj-flex-center { display: flex; align-items: center; justify-content: center; }
