/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-subtle);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  max-width: 480px;
  margin: 0 auto;
}
.logo {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-gold-primary);
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}
.btn-premium {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-gold-dim), var(--color-gold-primary));
  color: #0A0A0A;
  letter-spacing: 0.03em;
  transition: opacity var(--transition);
}
.btn-premium:hover { opacity: 0.85; }
.btn-back {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  padding: 6px 0;
  transition: color var(--transition);
}
.btn-back:hover { color: var(--color-gold-primary); }

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 36px 20px 20px;
  max-width: 480px;
  margin: 0 auto;
}
.hero-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-gold-primary);
  line-height: 1.2;
  margin-bottom: 8px;
}
.hero-sub {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ===== SEARCH ===== */
.search-wrap {
  padding: 0 16px 12px;
  max-width: 480px;
  margin: 0 auto;
}
.search-input {
  width: 100%;
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-full);
  padding: 11px 18px;
  color: var(--color-text-primary);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.search-input:focus {
  border-color: var(--color-gold-dim);
}
.search-input::placeholder { color: var(--color-text-muted); }

/* ===== CATEGORIES ===== */
.categories-wrap {
  overflow-x: auto;
  padding: 0 16px 16px;
  scrollbar-width: none;
  max-width: 480px;
  margin: 0 auto;
}
.categories-wrap::-webkit-scrollbar { display: none; }
.categories {
  display: flex;
  gap: 8px;
  width: max-content;
}
.cat-pill {
  padding: 7px 16px;
  border-radius: var(--radius-full);
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  font-size: 0.82rem;
  color: var(--color-text-secondary);
  white-space: nowrap;
  transition: all var(--transition);
}
.cat-pill.active,
.cat-pill:hover {
  background: var(--color-gold-primary);
  border-color: var(--color-gold-primary);
  color: #0A0A0A;
  font-weight: 600;
}

/* ===== MAIN CONTENT ===== */
.main-content {
  padding: 4px 16px 120px;
  max-width: 480px;
  margin: 0 auto;
}

/* ===== CARD GRID ===== */
/* ===== SKELETON LOADER ===== */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}
.skeleton {
  background: linear-gradient(90deg,
    var(--color-bg-surface) 25%,
    var(--color-bg-elevated) 50%,
    var(--color-bg-surface) 75%);
  background-size: 800px 100%;
  animation: shimmer 1.4s infinite linear;
  border-radius: var(--radius-sm);
}
.skeleton-card {
  display: flex;
  gap: 14px;
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
  pointer-events: none;
}
.skeleton-cover {
  width: 74px; height: 74px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.skeleton-body { flex: 1; display: flex; flex-direction: column; gap: 8px; justify-content: center; }
.skeleton-line { height: 12px; }
.skeleton-line.w-40 { width: 40%; }
.skeleton-line.w-70 { width: 70%; }
.skeleton-line.w-55 { width: 55%; }

/* Fade-in for real cards */
.story-card { opacity: 0; animation: fadeIn 0.25s ease forwards; }
@keyframes fadeIn { to { opacity: 1; } }

/* ===== CARD GRID ===== */
.card-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  contain: layout style;
}

.story-card {
  display: flex;
  gap: 14px;
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.story-card:hover {
  border-color: var(--color-gold-dim);
  box-shadow: var(--shadow-card);
}
.card-cover {
  width: 74px;
  height: 74px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--color-bg-elevated);
}
.card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.card-category {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.card-title {
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--color-text-primary);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-subtitle {
  font-size: 0.78rem;
  color: var(--color-text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.card-duration {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}
.badge-premium {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-gold-dim), var(--color-gold-primary));
  color: #0A0A0A;
  letter-spacing: 0.04em;
}
.card-lock {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1rem;
  opacity: 0.7;
}

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}
.hidden { display: none !important; }

/* ===== MINI PLAYER ===== */
.mini-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border-gold);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}
.mini-cover {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--color-bg-surface);
}
.mini-info {
  flex: 1;
  min-width: 0;
}
.mini-title {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--color-text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 6px;
}
.mini-progress-wrap { width: 100%; }
.mini-progress-bar {
  height: 3px;
  background: var(--color-player-track);
  border-radius: 2px;
  overflow: hidden;
}
.mini-progress-fill {
  height: 100%;
  background: var(--color-gold-primary);
  border-radius: 2px;
  width: 0%;
  transition: width 0.5s linear;
}
.mini-play-btn {
  font-size: 1.2rem;
  color: var(--color-gold-primary);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mini-close-btn {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== PREMIUM MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-sheet {
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border-gold);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 28px 24px 36px;
  width: 100%;
  max-width: 480px;
  text-align: center;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1.1rem;
  color: var(--color-text-muted);
}
.modal-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}
.modal-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-gold-primary);
  margin-bottom: 10px;
}
.modal-text {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 22px;
}
.btn-unlock {
  display: inline-block;
  padding: 13px 32px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-gold-dim), var(--color-gold-primary));
  color: #0A0A0A;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: opacity var(--transition);
}
.btn-unlock:hover { opacity: 0.85; }

/* ===== PLAYER PAGE ===== */
.player-page {
  max-width: 480px;
  margin: 0 auto;
  padding: 20px 16px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.player-left { display: flex; flex-direction: column; gap: 20px; }
.player-right { display: flex; flex-direction: column; gap: 0; }

.story-text-header-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-gold-primary);
  padding: 14px 18px 10px;
  border-bottom: 1px solid var(--color-border-subtle);
}

/* ===== RELATED STORIES ===== */
.related-section {
  background: var(--color-bg-surface);
  border-top: 1px solid var(--color-border-subtle);
  padding: 24px 16px 100px;
  margin-top: 8px;
}
.related-inner {
  max-width: 480px;
  margin: 0 auto;
}
.related-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-gold-primary);
  margin-bottom: 16px;
  font-weight: 600;
}
.related-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.related-card {
  display: flex;
  gap: 12px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 12px;
  cursor: pointer;
  position: relative;
  transition: border-color var(--transition);
}
.related-card:hover { border-color: var(--color-gold-dim); }
.related-cover {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--color-bg-surface);
}
.related-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}
.related-cat {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.related-title-text {
  font-size: 0.85rem;
  color: var(--color-text-primary);
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.related-duration {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}
.related-lock {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Cover + waveform */
.player-cover-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}
.player-cover {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-glow);
}

/* Waveform animation */
.waveform-anim {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 28px;
  opacity: 0;
  transition: opacity 0.3s;
}
.waveform-anim.playing { opacity: 1; }
.waveform-anim span {
  display: block;
  width: 4px;
  background: var(--color-gold-primary);
  border-radius: 2px;
  animation: wave 1s ease-in-out infinite alternate;
}
.waveform-anim span:nth-child(1) { animation-delay: 0s; }
.waveform-anim span:nth-child(2) { animation-delay: 0.15s; }
.waveform-anim span:nth-child(3) { animation-delay: 0.3s; }
.waveform-anim span:nth-child(4) { animation-delay: 0.15s; }
.waveform-anim span:nth-child(5) { animation-delay: 0s; }
@keyframes wave {
  from { height: 6px; }
  to   { height: 24px; }
}

/* Meta */
.player-meta {
  text-align: center;
  margin-top: 16px;
}
.player-category {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.player-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 6px 0 4px;
  line-height: 1.3;
}
.player-subtitle {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

/* Controls */
.player-controls-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Progress */
.progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.progress-slider {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  height: 44px;              /* large hit target */
  background: transparent;
  outline: none;
  cursor: pointer;
  margin: 0;
  padding: 0;
}
.progress-slider::-webkit-slider-runnable-track {
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(
    to right,
    var(--color-gold-primary) var(--pct, 0%),
    var(--color-player-track) var(--pct, 0%)
  );
}
.progress-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-gold-primary);
  cursor: pointer;
  margin-top: -6.5px;
  box-shadow: 0 0 8px rgba(201,168,76,0.6);
}
.progress-slider::-moz-range-track {
  height: 5px;
  border-radius: 3px;
  background: var(--color-player-track);
}
.progress-slider::-moz-range-progress {
  height: 5px;
  border-radius: 3px;
  background: var(--color-gold-primary);
}
.progress-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-gold-primary);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 8px rgba(201,168,76,0.6);
}
.time-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* Controls row */
.controls-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.ctrl-btn {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-surface);
  transition: color var(--transition), background var(--transition);
}
.ctrl-btn:hover { color: var(--color-gold-primary); }
.ctrl-play {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold-dim), var(--color-gold-primary));
  color: #0A0A0A;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: var(--shadow-glow);
}
.ctrl-play:hover { opacity: 0.9; transform: scale(1.05); }
.ctrl-play:active { transform: scale(0.97); }
.ctrl-play:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

/* Speed */
.speed-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.speed-label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}
.speed-btn {
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  color: var(--color-text-secondary);
  transition: all var(--transition);
}
.speed-btn.active,
.speed-btn:hover {
  background: var(--color-gold-primary);
  border-color: var(--color-gold-primary);
  color: #0A0A0A;
  font-weight: 600;
}

/* Story description */
.story-desc-wrap {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
}
.story-desc-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--color-gold-primary);
  margin-bottom: 10px;
  font-weight: 600;
}
.story-desc {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ===== PREMIUM PAGE ===== */
.premium-page {
  max-width: 480px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}
.premium-hero {
  text-align: center;
  margin-bottom: 32px;
}
.premium-icon { font-size: 3rem; margin-bottom: 12px; }
.premium-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-gold-primary);
  margin-bottom: 8px;
}
.premium-sub {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}
.plan-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.plan-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  position: relative;
  transition: border-color var(--transition);
}
.plan-card.featured {
  border-color: var(--color-gold-primary);
  box-shadow: var(--shadow-glow);
}
.plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold-primary);
  color: #0A0A0A;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.plan-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}
.plan-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-gold-primary);
  margin-bottom: 10px;
}
.plan-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-muted);
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.plan-features li {
  font-size: 0.83rem;
  color: var(--color-text-secondary);
}
.plan-features li::before {
  content: "✓ ";
  color: var(--color-gold-primary);
  font-weight: 700;
}
.btn-plan {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-gold-dim), var(--color-gold-primary));
  color: #0A0A0A;
  font-weight: 700;
  font-size: 0.9rem;
  transition: opacity var(--transition);
}
.btn-plan:hover { opacity: 0.85; }
.premium-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-bg-surface);
  border-top: 1px solid var(--color-border-subtle);
  padding: 32px 20px 100px;
  margin-top: 24px;
}
.footer-inner {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-logo {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-gold-primary);
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-style: italic;
}
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
}
.footer-links a {
  color: var(--color-text-secondary);
}
.footer-links a:hover { color: var(--color-gold-primary); }
.footer-links span { color: var(--color-text-muted); }
.footer-disclaimer {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-top: 4px;
}

/* ===== READ ALONG ===== */
.story-text-wrap {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.story-text-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  cursor: pointer;
  transition: background var(--transition);
}
.story-text-header:hover { background: var(--color-bg-elevated); }
.story-text-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-gold-primary);
}
.story-text-toggle {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  transition: transform 0.25s;
}
.story-text-toggle.open { transform: rotate(180deg); }
.story-text-body {
  padding: 0 18px 20px;
  border-top: 1px solid var(--color-border-subtle);
}
.story-text-content {
  font-size: 0.93rem;
  color: var(--color-text-secondary);
  line-height: 2;
  white-space: pre-wrap;
  font-family: var(--font-display);
  padding-top: 16px;
}
#panelPadho {
  max-height: 60vh;
  overflow-y: auto;
  padding: 0 18px 16px;
}
#panelPadho::-webkit-scrollbar { width: 3px; }
#panelPadho::-webkit-scrollbar-thumb { background: var(--color-gold-dim); border-radius: 2px; }

/* ===== DESKTOP / TABLET (≥768px) ===== */
@media (min-width: 768px) {

  /* Wider header */
  .header-inner,
  .search-wrap,
  .categories-wrap {
    max-width: 1100px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero {
    max-width: 1100px;
    padding: 52px 32px 24px;
  }
  .hero-title { font-size: 2.8rem; }

  /* 2-column card grid */
  .main-content {
    max-width: 1100px;
    padding: 8px 32px 80px;
  }
  .card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .story-card {
    flex-direction: column;
    gap: 12px;
  }
  .card-cover {
    width: 100%;
    height: 180px;
    border-radius: var(--radius-md);
  }
  .card-title { font-size: 1rem; white-space: normal; }
  .card-subtitle { white-space: normal; }

  /* Mini player wider */
  .mini-player {
    max-width: 1100px;
    padding: 12px 32px;
  }

  /* ---- Story player: 2-col layout ---- */
  .player-page {
    max-width: 1100px;
    padding: 40px 32px 40px;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
    align-items: start;
  }
  .player-left { gap: 20px; }
  .player-right {
    position: sticky;
    top: 80px;
  }
  .player-title { font-size: 1.6rem; }
  .player-cover-wrap { width: 100%; height: 300px; margin: 0; }
  .player-cover { width: 100%; height: 100%; }
  .player-meta { text-align: left; }
  #panelPadho { max-height: 480px; }
  .related-inner { max-width: 1100px; }
  .related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  /* Premium page: 2-col plans */
  .premium-page {
    max-width: 860px;
    padding: 52px 32px 80px;
  }
  .plan-cards {
    flex-direction: row;
    gap: 20px;
  }
  .plan-card { flex: 1; }

  /* Modal wider */
  .modal-sheet {
    border-radius: var(--radius-lg);
    max-width: 480px;
    margin: auto;
    margin-bottom: auto;
  }
  .modal-overlay { align-items: center; }
}
