/* VibeCoast Miami player — Avada-proof, no build step
   By Remo Mangré-Etwaroe • Moods Online Media https://moodsonlinemedia.com/ */

#vcm-app {
  --vcm-bg: #070d12;
  --vcm-elev: #0e181f;
  --vcm-subtle: #152229;
  --vcm-fg: #f3eee6;
  --vcm-muted: #9aa6ab;
  --vcm-dim: #6e7a80;
  --vcm-accent: #ff6a00;
  --vcm-accent-fg: #1a0a00;
  --vcm-accent-soft: #ff8a00;
  --vcm-aqua: #2eb8c8;
  --vcm-sand: #e4d2bc;
  --vcm-border: rgba(243, 238, 230, 0.12);
  --vcm-font: "Figtree", ui-sans-serif, system-ui, sans-serif;
  --vcm-display: "Syne", ui-sans-serif, system-ui, sans-serif;
  --vcm-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --vcm-r-sm: 0.5rem;
  --vcm-r-md: 0.75rem;
  --vcm-r-lg: 1.25rem;
  --vcm-r-xl: 1.75rem;
  --vcm-max: 72rem;

  display: block;
  isolation: isolate;
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  color: var(--vcm-fg);
  background: var(--vcm-bg);
  font-family: var(--vcm-font);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color-scheme: dark;
}

#vcm-app.vcm-is-page {
  min-height: 100svh;
}

#vcm-app *,
#vcm-app *::before,
#vcm-app *::after {
  box-sizing: border-box;
}

#vcm-app h1,
#vcm-app h2,
#vcm-app h3,
#vcm-app p,
#vcm-app ul,
#vcm-app ol,
#vcm-app li,
#vcm-app figure,
#vcm-app header,
#vcm-app footer,
#vcm-app section,
#vcm-app nav,
#vcm-app article {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: none;
}

#vcm-app ul {
  list-style: none;
}

#vcm-app a {
  color: inherit;
  text-decoration: none;
}

#vcm-app img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}

#vcm-app button {
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  margin: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  box-shadow: none;
  text-transform: none;
  letter-spacing: inherit;
}

#vcm-app button:disabled {
  cursor: default;
  opacity: 0.4;
}

#vcm-app ::selection {
  background: var(--vcm-accent);
  color: var(--vcm-accent-fg);
}

.vcm-grain {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 30;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

#vcm-app.vcm-is-page .vcm-grain {
  position: fixed;
}

.vcm-wrap {
  width: min(var(--vcm-max), calc(100% - 2.5rem));
  margin-inline: auto;
}

@media (min-width: 640px) {
  .vcm-wrap {
    width: min(var(--vcm-max), calc(100% - 4rem));
  }
}

.vcm-display {
  font-family: var(--vcm-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.vcm-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vcm-aqua);
}

.vcm-muted { color: var(--vcm-muted); }
.vcm-sand { color: rgba(228, 210, 188, 0.85); }
.vcm-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Header */
.vcm-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 4rem;
  transition: background-color 200ms var(--vcm-ease), box-shadow 200ms var(--vcm-ease), backdrop-filter 200ms var(--vcm-ease);
}

.vcm-header.is-scrolled {
  background: rgba(7, 13, 18, 0.8);
  box-shadow: 0 1px 0 rgba(243, 238, 230, 0.08);
  backdrop-filter: blur(12px);
}

.vcm-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4rem;
}

.vcm-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--vcm-fg);
}

.vcm-mark {
  width: 2rem;
  height: 2rem;
  color: var(--vcm-accent);
  flex: none;
}

.vcm-brand strong {
  display: block;
  font-family: var(--vcm-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.vcm-brand span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vcm-muted);
}

.vcm-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.875rem;
  color: var(--vcm-muted);
}

.vcm-nav a:hover { color: var(--vcm-fg); }

@media (min-width: 768px) {
  .vcm-nav { display: flex; }
}

.vcm-header-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vcm-clock {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vcm-muted);
  font-variant-numeric: tabular-nums;
}

@media (min-width: 640px) {
  .vcm-clock { display: flex; }
}

/* Buttons */
.vcm-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  white-space: nowrap !important;
  border-radius: 999px !important;
  font-weight: 500 !important;
  border: 0 !important;
  text-decoration: none !important;
  transition: transform 150ms var(--vcm-ease), background-color 150ms var(--vcm-ease), color 150ms var(--vcm-ease), box-shadow 150ms var(--vcm-ease) !important;
}

.vcm-btn:hover { filter: brightness(0.97); }
.vcm-btn:active { transform: scale(0.96) !important; }
.vcm-btn:focus-visible {
  outline: 2px solid rgba(255, 106, 0, 0.7);
  outline-offset: 2px;
}

.vcm-btn svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
  flex: none;
  pointer-events: none;
}

.vcm-btn-accent {
  background: var(--vcm-accent) !important;
  color: var(--vcm-accent-fg) !important;
  box-shadow: 0 10px 24px rgba(255, 106, 0, 0.28) !important;
}

.vcm-btn-sand {
  background: var(--vcm-fg) !important;
  color: var(--vcm-bg) !important;
}

.vcm-btn-sand:hover { background: var(--vcm-sand) !important; }

.vcm-btn-outline {
  background: transparent !important;
  color: var(--vcm-fg) !important;
  box-shadow: inset 0 0 0 1px rgba(243, 238, 230, 0.15) !important;
}

.vcm-btn-sm { height: 2.25rem !important; padding: 0 0.9rem !important; font-size: 0.875rem !important; }
.vcm-btn-md { height: 2.75rem !important; padding: 0 1.25rem !important; font-size: 0.875rem !important; }
.vcm-btn-lg { height: 3.5rem !important; padding: 0 1.75rem !important; font-size: 1rem !important; }
.vcm-btn-icon {
  width: 2.875rem !important;
  height: 2.875rem !important;
  padding: 0 !important;
}

/* EQ + live dot */
.vcm-eq {
  display: inline-flex;
  height: 0.875rem;
  align-items: flex-end;
  gap: 2px;
}

.vcm-eq i {
  display: block;
  width: 2px;
  height: 100%;
  transform-origin: bottom;
  border-radius: 999px;
  background: currentColor;
  transform: scaleY(0.35);
}

.vcm-eq.is-on i { animation: vcm-eq 0.9s ease-in-out infinite; }
.vcm-eq.is-on i:nth-child(2) { animation-delay: 0.12s; }
.vcm-eq.is-on i:nth-child(3) { animation-delay: 0.24s; }
.vcm-eq.is-on i:nth-child(4) { animation-delay: 0.08s; }
.vcm-eq.is-on i:nth-child(5) { animation-delay: 0.2s; }

@keyframes vcm-eq {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

.vcm-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 0 currentColor;
  animation: vcm-pulse 1.8s ease-out infinite;
}

@keyframes vcm-pulse {
  0% { box-shadow: 0 0 0 0 rgba(26, 10, 0, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(26, 10, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(26, 10, 0, 0); }
}

/* Hero */
.vcm-hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
}

.vcm-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--vcm-bg) center / cover no-repeat;
  transform: scale(1.1);
  filter: blur(2px);
}

.vcm-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 13, 18, 0.42) 0%, rgba(7, 13, 18, 0.38) 24%, rgba(7, 13, 18, 0.78) 58%, rgba(7, 13, 18, 0.94) 82%, var(--vcm-bg) 100%),
    linear-gradient(90deg, rgba(7, 13, 18, 0.5) 0%, transparent 48%);
}

.vcm-hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 88svh;
  padding: 6rem 0 8rem;
}

@media (min-width: 640px) {
  .vcm-hero-inner { padding-bottom: 11rem; }
}

.vcm-hero-copy { max-width: 48rem; }

.vcm-onair-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.vcm-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: var(--vcm-accent);
  color: var(--vcm-accent-fg);
  padding: 0.25rem 0.75rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vcm-hero-when {
  margin-bottom: 0.5rem;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(228, 210, 188, 0.7);
}

.vcm-hero h1 {
  font-family: var(--vcm-display);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.92;
  font-size: clamp(2.6rem, 8vw, 6.2rem);
  text-wrap: balance;
}

.vcm-hero-blurb {
  margin-top: 1.25rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(228, 210, 188, 0.85);
  text-wrap: pretty;
}

@media (min-width: 640px) {
  .vcm-hero-blurb { font-size: 1.125rem; }
}

.vcm-hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.vcm-icon-swap {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
}

.vcm-icon-swap svg {
  position: absolute;
  inset: 0;
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
  transition: opacity 300ms var(--vcm-ease), transform 300ms var(--vcm-ease), filter 300ms var(--vcm-ease);
}

.vcm-icon-swap .vcm-i-pause,
.is-playing .vcm-icon-swap .vcm-i-play {
  opacity: 0;
  transform: scale(0.25);
  filter: blur(4px);
}

.is-playing .vcm-icon-swap .vcm-i-pause {
  opacity: 1;
  transform: scale(1);
  filter: none;
}

.vcm-now-meta { min-width: 0; }

.vcm-now-meta p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.vcm-progress {
  margin-top: 2.5rem;
  height: 2px;
  width: 100%;
  max-width: 28rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(243, 238, 230, 0.15);
}

.vcm-progress > i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--vcm-accent);
  width: 2%;
  transition: width 700ms var(--vcm-ease);
}

/* Player card */
.vcm-listen {
  position: relative;
  z-index: 10;
  margin-top: -2rem;
}

@media (min-width: 640px) {
  .vcm-listen { margin-top: -5rem; }
}

.vcm-card-ring {
  border-radius: var(--vcm-r-xl);
  padding: 1px;
  background: linear-gradient(90deg, var(--vcm-accent), var(--vcm-accent-soft), var(--vcm-aqua));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.vcm-card {
  position: relative;
  overflow: visible;
  border-radius: calc(var(--vcm-r-xl) - 1px);
  background: var(--vcm-elev);
  padding: 1.5rem 1.25rem 1.25rem;
}

@media (min-width: 640px) {
  .vcm-card { padding: 1.75rem 1.75rem 1.25rem; }
}

.vcm-cover-3d {
  width: 92px;
  height: 92px;
  margin: 0 auto 1.25rem;
  border-radius: 14px;
  background: #fff center / cover no-repeat;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34), 0 6px 14px rgba(0, 0, 0, 0.18);
  transform: perspective(900px) rotateX(8deg) rotateZ(-6deg);
  transition: transform 250ms var(--vcm-ease);
}

.vcm-cover-3d:hover {
  transform: perspective(900px) rotateX(5deg) rotateZ(-3deg);
}

@media (min-width: 640px) {
  .vcm-cover-3d {
    position: absolute;
    top: -38px;
    left: 1.75rem;
    margin: 0;
  }
}

.vcm-card-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .vcm-card-row {
    flex-direction: row;
    align-items: center;
  }
}

.vcm-card-copy {
  min-width: 0;
  flex: 1;
}

@media (min-width: 640px) {
  .vcm-card-copy { padding-left: 110px; }
}

.vcm-card-copy .vcm-song { margin-top: 0.75rem; font-size: 0.875rem; }
.vcm-offline-note {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--vcm-accent-soft);
}

.vcm-recent { margin-top: 1rem; }
.vcm-recent-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vcm-muted);
}
.vcm-recent li {
  font-size: 12px;
  color: rgba(228, 210, 188, 0.8);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vcm-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .vcm-controls { justify-content: flex-end; }
}

.vcm-vol {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vcm-vol svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.vcm-vol input[type="range"] {
  width: 140px;
  height: 4px;
  accent-color: var(--vcm-accent);
  cursor: pointer;
}

.vcm-is-ios .vcm-vol { display: none; }

/* Schedule */
.vcm-schedule {
  margin-top: 5rem;
}

.vcm-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.vcm-section-head h2,
.vcm-hosts h2,
.vcm-about h2 {
  font-family: var(--vcm-display);
  font-size: clamp(1.85rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 0.25rem;
}

.vcm-board {
  overflow: hidden;
  border-radius: var(--vcm-r-xl);
  background: var(--vcm-elev);
  box-shadow: inset 0 0 0 1px rgba(243, 238, 230, 0.1);
}

.vcm-board-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--vcm-border);
}

.vcm-day-btn {
  display: flex !important;
  width: 2.5rem !important;
  height: 2.5rem !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: var(--vcm-fg) !important;
  color: var(--vcm-bg) !important;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25) !important;
}

.vcm-day-btn:hover { background: var(--vcm-sand) !important; }
.vcm-day-btn svg { width: 1.25rem; height: 1.25rem; fill: currentColor; }

.vcm-day-label { text-align: center; }
.vcm-day-label small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vcm-muted);
}
.vcm-day-label strong {
  display: block;
  font-family: var(--vcm-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--vcm-aqua);
}

.vcm-tabs {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding: 0.75rem 1.25rem 0;
  scrollbar-width: none;
}
.vcm-tabs::-webkit-scrollbar { display: none; }

.vcm-tab {
  flex: none;
  border-radius: 999px !important;
  padding: 0.5rem 0.75rem !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  background: rgba(243, 238, 230, 0.08) !important;
  color: var(--vcm-fg) !important;
}

.vcm-tab:hover { background: rgba(243, 238, 230, 0.14) !important; }
.vcm-tab.is-on {
  background: var(--vcm-accent) !important;
  color: var(--vcm-accent-fg) !important;
}

.vcm-slots { padding: 0.75rem 1.25rem 1.25rem; }

.vcm-slot {
  margin-top: 0.4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  border-radius: var(--vcm-r-md);
  padding: 0.65rem 0.75rem;
  background: rgba(243, 238, 230, 0.05);
}

@media (min-width: 640px) {
  .vcm-slot {
    grid-template-columns: max-content 1fr;
    gap: 0.75rem;
    align-items: center;
  }
}

.vcm-slot-time {
  font-size: 0.875rem;
  font-variant-numeric: tabular-nums;
  color: var(--vcm-muted);
}

.vcm-slot-name {
  font-weight: 600;
  min-width: 0;
}

@media (min-width: 640px) {
  .vcm-slot-name { text-align: right; }
}

.vcm-slot-name em {
  font-style: normal;
  font-weight: 400;
  margin-left: 0.5rem;
  color: var(--vcm-muted);
}

.vcm-slot.is-now {
  background: var(--vcm-accent);
  color: var(--vcm-accent-fg);
}
.vcm-slot.is-now .vcm-slot-time,
.vcm-slot.is-now .vcm-slot-name em {
  color: rgba(26, 10, 0, 0.8);
  font-weight: 600;
}

.vcm-cta {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

/* Hosts / about / footer */
.vcm-hosts,
.vcm-about { margin-top: 6rem; }
.vcm-lede {
  margin-top: 0.75rem;
  max-width: 36rem;
  color: var(--vcm-muted);
  text-wrap: pretty;
}

.vcm-host-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .vcm-host-grid { grid-template-columns: repeat(3, 1fr); }
}

.vcm-host {
  overflow: hidden;
  border-radius: var(--vcm-r-lg);
  background: var(--vcm-elev);
  box-shadow: inset 0 0 0 1px rgba(243, 238, 230, 0.1);
}

.vcm-host-art {
  height: 12rem;
  background: center / cover no-repeat;
}

.vcm-host-body { padding: 1.25rem; }
.vcm-host-body .vcm-kicker { color: var(--vcm-accent); letter-spacing: 0.16em; }
.vcm-host-body h3 {
  font-family: var(--vcm-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

.vcm-about-grid {
  display: grid;
  overflow: hidden;
  border-radius: var(--vcm-r-xl);
  background: var(--vcm-elev);
  box-shadow: inset 0 0 0 1px rgba(243, 238, 230, 0.1);
}

@media (min-width: 1024px) {
  .vcm-about-grid { grid-template-columns: 1fr 1fr; }
}

.vcm-about-art {
  min-height: 280px;
  background: center / cover no-repeat;
}

.vcm-about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.75rem;
}

@media (min-width: 640px) {
  .vcm-about-copy { padding: 2.5rem; }
}

.vcm-footer {
  margin-top: 6rem;
  border-top: 1px solid var(--vcm-border);
}

.vcm-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2.5rem 0;
}

@media (min-width: 640px) {
  .vcm-footer-inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

/* Sticky mini player */
.vcm-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  padding: 0 0.75rem max(0.75rem, env(safe-area-inset-bottom));
  pointer-events: none;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 300ms var(--vcm-ease), transform 300ms var(--vcm-ease);
}

.vcm-sticky.is-on {
  pointer-events: auto;
  opacity: 1;
  transform: none;
}

.vcm-sticky-inner {
  width: min(48rem, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 999px;
  background: rgba(14, 24, 31, 0.95);
  padding: 0.5rem;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(243, 238, 230, 0.12);
  backdrop-filter: blur(12px);
}

.vcm-sticky-art {
  width: 2.75rem;
  height: 2.75rem;
  flex: none;
  border-radius: 999px;
  background: center / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(243, 238, 230, 0.1);
}

.vcm-sticky-copy { min-width: 0; flex: 1; }
.vcm-sticky-copy p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.vcm-sticky-copy small {
  display: block;
  font-size: 0.75rem;
  color: var(--vcm-muted);
}

/* Modal — lives on document.body (outside #vcm-app), so fully self-contained vs Avada */
body.vcm-modal-open {
  overflow: hidden !important;
}

.vcm-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483000 !important;
  display: none;
  font-family: "Figtree", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.vcm-modal.is-open {
  display: block !important;
}

.vcm-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(7, 13, 18, 0.55);
  cursor: pointer;
}

.vcm-modal-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  width: min(42rem, calc(100vw - 2rem));
  max-height: min(85vh, 880px);
  overflow: hidden;
  border-radius: 1.25rem;
  background: #ffffff;
  color: #1a1f24;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  font-family: "Figtree", ui-sans-serif, system-ui, sans-serif;
  pointer-events: auto;
}

.vcm-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0.85rem 0.85rem 1.25rem;
  border-bottom: 1px solid #e6e2db;
  font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1f24;
  background: #ffffff;
}

.vcm-modal-head span {
  min-width: 0;
  line-height: 1.3;
}

.vcm-modal-close {
  position: relative !important;
  flex: 0 0 2.75rem !important;
  width: 2.75rem !important;
  height: 2.75rem !important;
  min-width: 2.75rem !important;
  min-height: 2.75rem !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #ff6a00 !important;
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  box-shadow: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  line-height: 1 !important;
  z-index: 2 !important;
}

.vcm-modal-close:hover,
.vcm-modal-close:focus {
  background: #e55f00 !important;
  color: #ffffff !important;
}

.vcm-modal-close span,
.vcm-modal-close svg,
.vcm-modal-close path {
  pointer-events: none !important;
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1;
  color: inherit;
  fill: currentColor;
}

.vcm-modal-body {
  min-height: 0;
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem 1.25rem;
  background: #ffffff;
  color: #1a1f24;
}

.vcm-modal-day { margin-bottom: 1.25rem; }
.vcm-modal-day > p {
  font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #ff6a00;
}

.vcm-modal-body .vcm-slot {
  background: #f4f1ec;
  color: #1a1f24;
}

.vcm-modal-body .vcm-slot-time,
.vcm-modal-body .vcm-slot-name em {
  color: #5c656c;
}

.vcm-modal-body .vcm-slot.is-now {
  background: #ff6a00;
  color: #1a0a00;
}

.vcm-modal-body .vcm-slot.is-now .vcm-slot-time,
.vcm-modal-body .vcm-slot.is-now .vcm-slot-name em {
  color: rgba(26, 10, 0, 0.8);
}

audio.vcm-audio { display: none; }

/* Layout variants */
.vcm-is-player .vcm-hero,
.vcm-is-player .vcm-hosts,
.vcm-is-player .vcm-about,
.vcm-is-player .vcm-footer,
.vcm-is-player .vcm-header,
.vcm-is-player .vcm-schedule,
.vcm-is-player .vcm-cta,
.vcm-is-player .vcm-sticky {
  display: none;
}

.vcm-is-schedule .vcm-hero,
.vcm-is-schedule .vcm-listen,
.vcm-is-schedule .vcm-hosts,
.vcm-is-schedule .vcm-about,
.vcm-is-schedule .vcm-footer,
.vcm-is-schedule .vcm-header,
.vcm-is-schedule .vcm-cta,
.vcm-is-schedule .vcm-sticky {
  display: none;
}

.vcm-is-embed .vcm-header,
.vcm-is-embed .vcm-footer {
  display: none;
}

.vcm-is-embed .vcm-hero { min-height: 0; }
.vcm-is-embed .vcm-hero-inner {
  min-height: 0;
  padding: 3rem 0 8rem;
}

@media (max-width: 640px) {
  .vcm-hero-inner { padding-bottom: 8rem; }
}

@media (prefers-reduced-motion: reduce) {
  #vcm-app * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .vcm-cover-3d,
  .vcm-cover-3d:hover { transform: none; }
}
