/* ─── BOTTOM SHEET ─── */
.sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 400;
  opacity: 0;
  transition: opacity 250ms ease;
}

.sheet-backdrop.visible {
  opacity: 1;
}

.bottom-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg2);
  border-radius: 24px 24px 0 0;
  z-index: 401;
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 85vh;
  overflow-y: auto;
}

.bottom-sheet.open {
  transform: translateY(0);
}

.sheet-handle {
  width: 40px;
  height: 4px;
  background: var(--muted);
  border-radius: 2px;
  margin: 12px auto;
}

.sheet-hero-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.sheet-content {
  padding: 20px;
}

.sheet-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.sheet-description {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}

.sheet-meta {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 16px;
}

.sheet-play-btn {
  width: 100%;
  height: 52px;
  border-radius: 14px;
  background: var(--accent);
  color: white;
  font-size: 16px;
  font-weight: 500;
}

.sheet-share-btn {
  width: 100%;
  height: 44px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
}

/* ─── MODAL ─── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-card {
  width: 340px;
  max-width: calc(100vw - 40px);
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 24px;
  animation: modalIn 200ms ease;
}

@keyframes modalIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

.modal-body {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
}

.modal-primary-btn {
  width: 100%;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: white;
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
}

.modal-secondary-btn {
  width: 100%;
  height: 44px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
}
