    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html, body {
      background: var(--bg, #404655);
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      overflow: hidden;
    }

    html.is-full, html.is-full body {
      overflow-y: auto;
      overflow-x: hidden;
    }

    /* ============================
       SHARED VARIABLES
    ============================ */
    :root {
      --accent: #f15b46;
      --accent-hover: #d94a37;
      --bg: #404655;
      --bg-card: #4a5066;
      --bg-hover: #515773;
      --text: #f0f0f0;
      --text-muted: #b0b4c4;
      --border: #5a6078;
      --progress-bg: #5a6078;
      --accent-text: #ffffff;
      --accent-readable: #f15b46;
    }

    /* ============================
       CLOSE BUTTON
    ============================ */
    .gyvb-close-bar {
      display: flex; justify-content: flex-end; padding: 10px 12px 0;
      background: var(--bg); border-radius: 16px 16px 0 0;
      max-width: 680px; margin: 0 auto;
    }

    .gyvb-close-btn {
      background: none; border: 1px solid var(--border); color: var(--text-muted);
      width: 32px; height: 32px; border-radius: 8px; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.15s; font-size: 18px; line-height: 1; padding: 0;
    }

    .gyvb-close-btn:hover { color: var(--accent-text); border-color: var(--accent); background: var(--accent); }

    /* ============================
       FULL PLAYER STYLES
    ============================ */
    .gyvb-player {
      max-width: 680px;
      margin: 0 auto;
      background: var(--bg);
      border-radius: 0 0 16px 16px;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0,0,0,0.3);
      color: var(--text);
      line-height: 1.5;
    }

    .gyvb-now-playing {
      padding: 18px;
      background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg) 100%);
      border-bottom: 1px solid var(--border);
    }

    .gyvb-np-top { display: flex; gap: 20px; align-items: flex-start; }

    .gyvb-artwork {
      width: 120px; height: 120px; border-radius: 12px;
      object-fit: cover; flex-shrink: 0;
      box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    }

    .gyvb-np-info { flex: 1; min-width: 0; }

    .gyvb-np-label {
      font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px;
      color: var(--accent-readable); font-weight: 600; margin-bottom: 6px;
    }

    .gyvb-np-title {
      font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 4px;
      display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    }

    .gyvb-np-date { font-size: 13px; color: var(--text-muted); }

    .gyvb-description { padding: 12px 20px; border-bottom: 1px solid var(--border); }
    .gyvb-description p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }
    .gyvb-description-full { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 8px 0 0; }
    .gyvb-description-full p { margin: 0 0 8px; }
    .gyvb-description-full a { color: var(--accent-readable); }
    .gyvb-desc-toggle { display: inline; font-size: 13px; color: var(--accent-readable); cursor: pointer; border: none; background: none; padding: 0; font-family: inherit; font-weight: 600; }
    .gyvb-desc-toggle:hover { text-decoration: underline; }

    .gyvb-controls { padding: 12px 20px 0; }

    .gyvb-progress-wrap { width: 100%; cursor: pointer; padding: 4px 0; position: relative; }

    .gyvb-progress-bar {
      width: 100%; height: 5px; background: var(--progress-bg);
      border-radius: 3px; overflow: visible; position: relative;
    }

    .gyvb-progress-fill {
      height: 100%; background: var(--accent); border-radius: 3px;
      width: 0%; transition: width 0.1s linear; position: relative;
    }

    .gyvb-progress-fill::after {
      content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
      width: 13px; height: 13px; background: var(--accent); border-radius: 50%;
      box-shadow: 0 0 4px rgba(0,0,0,0.3); opacity: 0; transition: opacity 0.15s;
    }

    .gyvb-progress-wrap:hover .gyvb-progress-fill::after { opacity: 1; }

    .gyvb-times {
      display: flex; justify-content: space-between; font-size: 12px;
      color: var(--text-muted); margin-top: 6px; font-variant-numeric: tabular-nums;
    }

    .gyvb-buttons { display: flex; align-items: center; justify-content: center; gap: 20px; padding: 8px 0 12px; }

    .gyvb-btn {
      background: none; border: none; color: var(--text); cursor: pointer;
      display: flex; align-items: center; justify-content: center; padding: 0;
      transition: color 0.15s, transform 0.1s;
    }

    .gyvb-btn:hover { color: var(--accent-readable); }
    .gyvb-btn:active { transform: scale(0.93); }
    .gyvb-btn svg { display: block; }

    .gyvb-btn-play {
      width: 52px; height: 52px; background: var(--accent); border-radius: 50%; color: var(--accent-text);
    }

    .gyvb-btn-play:hover { background: var(--accent-hover); color: var(--accent-text); transform: scale(1.05); }
    .gyvb-btn-play:active { transform: scale(0.97); }

    .gyvb-secondary-controls {
      display: flex; align-items: center; justify-content: center; gap: 16px;
      padding: 0 20px 14px; border-bottom: 1px solid var(--border); flex-wrap: wrap;
    }

    .gyvb-speed-btn {
      background: var(--bg-hover); border: 1px solid var(--border); color: var(--text-muted);
      border-radius: 6px; padding: 4px 10px; font-size: 12px; font-weight: 600;
      cursor: pointer; transition: all 0.15s; font-family: inherit;
    }

    .gyvb-speed-btn:hover { color: var(--accent-readable); border-color: var(--accent-readable); }

    .gyvb-download-btn, .gyvb-mini-sub-btn {
      background: none; border: 1px solid var(--border); color: var(--text-muted);
      border-radius: 6px; padding: 4px 10px; font-size: 12px; cursor: pointer;
      display: flex; align-items: center; gap: 5px; transition: all 0.15s;
      text-decoration: none; font-family: inherit;
    }

    .gyvb-download-btn:hover, .gyvb-mini-sub-btn:hover { color: var(--accent-readable); border-color: var(--accent-readable); }

    .gyvb-subscribe-btn {
      background: transparent; border: 1.5px solid var(--accent); color: var(--accent-readable);
      border-radius: 6px; padding: 4px 12px; font-size: 12px; font-weight: 600; cursor: pointer;
      display: flex; align-items: center; gap: 5px; transition: all 0.15s;
      text-decoration: none; font-family: inherit;
    }

    .gyvb-subscribe-btn:hover { background: var(--bg-hover); }

    .gyvb-subscribe-dropdown { position: relative; display: inline-block; }

    .gyvb-subscribe-menu {
      display: none; position: absolute; bottom: calc(100% + 8px); left: 50%;
      transform: translateX(-50%); background: var(--bg-card); border: 1px solid var(--border);
      border-radius: 10px; padding: 6px; min-width: 180px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.3); z-index: 100;
    }

    .gyvb-subscribe-menu.is-open { display: block; }

    .gyvb-subscribe-menu::after {
      content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
      border: 6px solid transparent; border-top-color: var(--border);
    }

    .gyvb-subscribe-link {
      display: flex; align-items: center; gap: 8px; padding: 8px 12px;
      color: var(--text); text-decoration: none; font-size: 13px;
      border-radius: 6px; transition: background 0.15s;
    }

    .gyvb-subscribe-link:hover { background: var(--bg-hover); }
    .gyvb-subscribe-link svg { flex-shrink: 0; }

    .gyvb-cta-btn {
      background: var(--accent); border: none; color: var(--accent-text); border-radius: 6px;
      padding: 4px 12px; font-size: 12px; font-weight: 600; cursor: pointer;
      display: flex; align-items: center; gap: 5px; transition: all 0.15s;
      text-decoration: none; font-family: inherit;
    }
    .gyvb-cta-btn:hover { background: var(--accent-hover); }

    .gyvb-share-btn {
      background: none; border: 1px solid var(--border); color: var(--text-muted);
      border-radius: 6px; padding: 4px 10px; font-size: 12px; cursor: pointer;
      display: flex; align-items: center; gap: 5px; transition: all 0.15s;
      font-family: inherit;
    }
    .gyvb-share-btn:hover { color: var(--accent-readable); border-color: var(--accent-readable); }

    .gyvb-toast {
      position: fixed; bottom: 20px; left: 50%;
      transform: translateX(-50%) translateY(80px);
      background: var(--bg-card); color: var(--text);
      border: 1px solid var(--accent);
      padding: 8px 18px; border-radius: 8px;
      font-size: 13px; font-weight: 600; z-index: 200;
      opacity: 0; transition: transform 0.3s ease, opacity 0.3s ease;
      pointer-events: none;
    }
    .gyvb-toast.is-visible { transform: translateX(-50%) translateY(0); opacity: 1; }

    /* Chapters */
    .gyvb-chapters { padding: 0 20px 8px; max-height: 180px; overflow-y: auto; scroll-behavior: smooth; }
    .gyvb-chapters::-webkit-scrollbar { width: 5px; }
    .gyvb-chapters::-webkit-scrollbar-track { background: transparent; }
    .gyvb-chapters::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
    .gyvb-chapters-label { padding: 10px 20px 4px; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); font-weight: 600; }
    .gyvb-chapter-item {
      display: flex; align-items: center; gap: 10px; padding: 6px 10px;
      border-radius: 6px; cursor: pointer; transition: background 0.15s;
    }
    .gyvb-chapter-item:hover { background: var(--bg-hover); }
    .gyvb-chapter-item.is-active { background: var(--bg-hover); }
    .gyvb-chapter-time {
      font-size: 12px; font-weight: 600; color: var(--accent-readable); font-variant-numeric: tabular-nums;
      min-width: 48px; flex-shrink: 0;
    }
    .gyvb-chapter-title { font-size: 13px; color: var(--text); flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .gyvb-chapter-item.is-active .gyvb-chapter-title { color: var(--accent-readable); font-weight: 600; }

    /* Unified Info Tabs (Show Notes / Transcript / Summary) */
    .gyvb-info-tabs {
      display: flex; align-items: center; gap: 0;
      border-bottom: 1px solid var(--border); padding: 0 16px;
    }
    .gyvb-info-chevron {
      color: var(--text-muted); margin-right: 2px; flex-shrink: 0;
      transition: transform 0.25s ease;
    }
    .gyvb-info-chevron.is-open { transform: rotate(180deg); }
    .gyvb-info-tab {
      background: none; border: none; color: var(--text-muted); font-size: 12px;
      font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
      padding: 10px 14px 8px; cursor: pointer; border-bottom: 2px solid transparent;
      transition: color 0.15s, border-color 0.15s; font-family: inherit;
    }
    .gyvb-info-tab:hover { color: var(--text); }
    .gyvb-info-tab.is-active { color: var(--accent-readable); border-bottom-color: var(--accent-readable); }
    .gyvb-info-body {
      max-height: 0; overflow: hidden; opacity: 0;
      transition: max-height 0.35s ease, opacity 0.25s ease;
    }
    .gyvb-info-body.is-open { max-height: 2000px; opacity: 1; }

    /* Show Notes content (inside unified body) */
    .gyvb-info-notes {
      padding: 10px 20px 14px; font-size: 13px; color: var(--text-muted); line-height: 1.7;
      max-height: 600px; overflow-y: auto;
    }
    .gyvb-info-notes p { margin: 0 0 8px; }
    .gyvb-info-notes a { color: var(--accent-readable); text-decoration: none; }
    .gyvb-info-notes a:hover { text-decoration: underline; }
    .gyvb-info-notes ul, .gyvb-info-notes ol { margin: 4px 0 8px 16px; padding: 0; }
    .gyvb-info-notes li { margin-bottom: 3px; }
    .gyvb-info-notes h1, .gyvb-info-notes h2, .gyvb-info-notes h3,
    .gyvb-info-notes h4, .gyvb-info-notes h5, .gyvb-info-notes h6 {
      color: var(--text); font-size: 14px; margin: 10px 0 4px; line-height: 1.4;
    }
    .gyvb-info-notes blockquote {
      border-left: 3px solid var(--accent); margin: 8px 0; padding: 4px 12px;
      color: var(--text-muted); font-style: italic;
    }

    /* Transcript */
    .gyvb-transcript {
      padding: 8px 20px 8px; max-height: 300px; overflow-y: auto; scroll-behavior: smooth;
    }
    .gyvb-transcript::-webkit-scrollbar { width: 5px; }
    .gyvb-transcript::-webkit-scrollbar-track { background: transparent; }
    .gyvb-transcript::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
    .gyvb-transcript-para {
      display: flex; gap: 10px; padding: 6px 10px; border-radius: 6px;
      cursor: pointer; transition: background 0.15s; border-left: 2px solid transparent;
      align-items: flex-start;
    }
    .gyvb-transcript-para:hover { background: var(--bg-hover); }
    .gyvb-transcript-para.is-active { background: var(--bg-hover); border-left-color: var(--accent-readable); }
    .gyvb-transcript-time {
      font-size: 11px; font-weight: 600; color: var(--accent-readable); font-variant-numeric: tabular-nums;
      min-width: 48px; flex-shrink: 0; padding-top: 2px;
    }
    .gyvb-transcript-text { font-size: 13px; color: var(--text); line-height: 1.6; flex: 1; min-width: 0; }
    .gyvb-transcript-speaker {
      font-size: 11px; font-weight: 700; color: var(--accent-readable);
      text-transform: uppercase; letter-spacing: 0.5px;
      margin: 12px 0 2px; padding: 0 10px;
    }
    .gyvb-transcript-speaker:first-child { margin-top: 0; }
    .gyvb-transcript-para.is-active .gyvb-transcript-text { color: var(--text); }
    .gyvb-transcript-toolbar {
      display: flex; align-items: center; gap: 6px; padding: 8px 20px 4px;
    }
    .gyvb-transcript-search-wrap { position: relative; flex: 1; }
    .gyvb-transcript-search {
      width: 100%; padding: 7px 12px 7px 32px; border: 1px solid var(--border);
      border-radius: 6px; background: var(--bg-hover); color: var(--text);
      font-size: 12px; font-family: inherit; outline: none; transition: border-color 0.15s;
    }
    .gyvb-transcript-search::placeholder { color: var(--text-muted); opacity: 0.7; }
    .gyvb-transcript-search:focus { border-color: var(--accent-readable); }
    .gyvb-transcript-search-icon {
      position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
      color: var(--text-muted); pointer-events: none;
    }
    .gyvb-transcript-copy {
      background: none; border: 1px solid var(--border); border-radius: 6px;
      color: var(--text-muted); cursor: pointer; padding: 6px 8px;
      transition: color 0.15s, border-color 0.15s; display: flex; align-items: center; gap: 4px;
      font-size: 11px; font-family: inherit; flex-shrink: 0;
    }
    .gyvb-transcript-copy:hover { color: var(--accent-readable); border-color: var(--accent-readable); }
    .gyvb-transcript-copy.is-copied { color: var(--accent-readable); border-color: var(--accent-readable); }

    /* Summary */
    .gyvb-summary {
      padding: 12px 20px 16px; font-size: 13px; color: var(--text-muted); line-height: 1.7;
    }
    .gyvb-summary p { margin: 0 0 10px; }
    .gyvb-summary p:last-child { margin: 0; }

    /* Ask AI Chat */
    .gyvb-askai { display: flex; flex-direction: column; max-height: 360px; }
    .gyvb-askai-messages {
      flex: 1; overflow-y: auto; padding: 12px 16px; scroll-behavior: smooth;
      min-height: 80px; max-height: 280px;
    }
    .gyvb-askai-messages::-webkit-scrollbar { width: 5px; }
    .gyvb-askai-messages::-webkit-scrollbar-track { background: transparent; }
    .gyvb-askai-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
    .gyvb-askai-empty {
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center; padding: 24px 16px; font-size: 13px; color: var(--text-muted);
    }
    .gyvb-askai-msg {
      max-width: 85%; padding: 8px 12px; border-radius: 12px; margin-bottom: 8px;
      font-size: 13px; line-height: 1.6; word-wrap: break-word;
    }
    .gyvb-askai-msg-user {
      background: var(--accent-readable); color: #fff; margin-left: auto;
      border-bottom-right-radius: 4px;
    }
    .gyvb-askai-msg-assistant {
      background: var(--bg-hover); color: var(--text);
      border-bottom-left-radius: 4px;
    }
    .gyvb-askai-msg-assistant p { margin: 0 0 8px; }
    .gyvb-askai-msg-assistant p:last-child { margin: 0; }
    .gyvb-askai-ts {
      color: var(--accent-readable); cursor: pointer; font-weight: 600;
      text-decoration: underline; text-decoration-style: dotted;
    }
    .gyvb-askai-ts:hover { text-decoration-style: solid; }
    .gyvb-askai-input-wrap {
      display: flex; gap: 8px; padding: 8px 16px 12px; border-top: 1px solid var(--border);
    }
    .gyvb-askai-input {
      flex: 1; background: var(--bg-hover); border: 1px solid var(--border); border-radius: 20px;
      padding: 8px 14px; font-size: 13px; color: var(--text); outline: none;
      font-family: inherit;
    }
    .gyvb-askai-input:focus { border-color: var(--accent-readable); }
    .gyvb-askai-input::placeholder { color: var(--text-muted); }
    .gyvb-askai-input:disabled { opacity: 0.5; }
    .gyvb-askai-send {
      background: var(--accent-readable); border: none; border-radius: 50%;
      width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
      cursor: pointer; color: #fff; flex-shrink: 0; transition: opacity 0.15s;
    }
    .gyvb-askai-send:hover { opacity: 0.85; }
    .gyvb-askai-send:disabled { opacity: 0.4; cursor: not-allowed; }

    /* Loading */
    .gyvb-ai-loading {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      padding: 24px 20px; font-size: 13px; color: var(--text-muted);
    }
    .gyvb-spinner {
      width: 18px; height: 18px; border: 2px solid var(--border);
      border-top-color: var(--accent-readable); border-radius: 50%;
      animation: gyvb-spin 0.8s linear infinite;
    }
    @keyframes gyvb-spin { to { transform: rotate(360deg); } }

    /* Search */
    .gyvb-search-wrap { padding: 10px 20px 0; display: flex; align-items: center; gap: 0; position: relative; }

    .gyvb-search-icon {
      position: absolute; left: 36px; top: 50%; transform: translateY(-50%);
      color: var(--text-muted); pointer-events: none; margin-top: 6px;
    }

    .gyvb-search {
      width: 100%; padding: 9px 12px 9px 36px; border: 1px solid var(--border);
      border-radius: 8px; background: var(--bg-hover); color: var(--text);
      font-size: 13px; font-family: inherit; outline: none; transition: border-color 0.15s;
    }

    .gyvb-search::placeholder { color: var(--text-muted); opacity: 0.7; }
    .gyvb-search:focus { border-color: var(--accent-readable); }

    .gyvb-search-clear {
      position: absolute; right: 36px; top: 50%; transform: translateY(-50%);
      background: none; border: none; color: var(--text-muted); cursor: pointer;
      padding: 2px; display: none; margin-top: 6px;
    }

    .gyvb-search-clear.is-visible { display: block; }
    .gyvb-search-clear:hover { color: var(--accent-readable); }

    .gyvb-no-results { padding: 24px; text-align: center; color: var(--text-muted); font-size: 13px; }

    .gyvb-episodes-header {
      padding: 12px 20px 6px; font-size: 14px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted);
      display: flex; align-items: center; justify-content: space-between;
    }

    .gyvb-ep-count { font-size: 11px; font-weight: 400; text-transform: none; letter-spacing: 0; }

    .gyvb-episode-list-wrap {
      max-height: 240px; overflow-y: auto; padding: 0 8px 8px; scroll-behavior: smooth;
    }

    .gyvb-episode-list-wrap::-webkit-scrollbar { width: 6px; }
    .gyvb-episode-list-wrap::-webkit-scrollbar-track { background: transparent; }
    .gyvb-episode-list-wrap::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
    .gyvb-episode-list-wrap::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

    .gyvb-episode-list { list-style: none; padding: 0; }

    .gyvb-episode-item {
      display: flex; align-items: center; gap: 14px; padding: 10px;
      border-radius: 10px; cursor: pointer; transition: background 0.15s;
    }

    .gyvb-episode-item:hover { background: var(--bg-hover); }
    .gyvb-episode-item.is-active { background: var(--bg-hover); }

    .gyvb-ep-play-icon {
      width: 36px; height: 36px; border-radius: 50%; background: var(--bg);
      border: 2px solid var(--border); display: flex; align-items: center;
      justify-content: center; flex-shrink: 0; transition: border-color 0.15s, background 0.15s;
      color: var(--text-muted);
    }

    .gyvb-episode-item:hover .gyvb-ep-play-icon,
    .gyvb-episode-item.is-active .gyvb-ep-play-icon { border-color: var(--accent-readable); color: var(--accent-readable); }
    .gyvb-episode-item.is-active .gyvb-ep-play-icon { background: var(--accent); color: var(--accent-text); border-color: var(--accent-readable); }

    .gyvb-ep-info { flex: 1; min-width: 0; }

    .gyvb-ep-title {
      font-size: 14px; font-weight: 600; color: var(--text);
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }

    .gyvb-episode-item.is-active .gyvb-ep-title { color: var(--accent-readable); }
    .gyvb-ep-meta { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

    .gyvb-loading { padding: 60px 24px; text-align: center; color: var(--text-muted); }

    .gyvb-spinner {
      width: 32px; height: 32px; border: 3px solid var(--border);
      border-top-color: var(--accent-readable); border-radius: 50%;
      animation: gyvb-spin 0.8s linear infinite; margin: 0 auto 12px;
    }

    @keyframes gyvb-spin { to { transform: rotate(360deg); } }
    .gyvb-error { padding: 40px 24px; text-align: center; color: var(--accent-readable); font-size: 14px; }

    /* ============================
       WIDE LAYOUT (two-column desktop)
       Opt-in via data-size="wide". Reuses all full-player markup;
       only the arrangement changes. Collapses to the vertical stack
       below the breakpoint (handled at the bottom of this file).
    ============================ */
    .gyvb-player.is-wide { max-width: 1040px; }
    html.is-wide .gyvb-close-bar { max-width: 1040px; }

    .gyvb-wide-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      align-items: stretch;
    }
    .gyvb-wide-col { min-width: 0; }
    .gyvb-wide-left { border-right: 1px solid var(--border); }

    /* The episode list and AI body have their own max-height scroll, so the
       right column stays compact instead of running the page tall. Let the
       list breathe a little more now that it has its own column. */
    .gyvb-player.is-wide .gyvb-episode-list-wrap { max-height: 340px; }
    .gyvb-player.is-wide .gyvb-now-playing { border-radius: 0; }

    /* ============================
       MINI PLAYER STYLES
    ============================ */
    .gyvb-mini {
      max-width: 680px; margin: 0 auto; background: var(--bg);
      border-radius: 14px; overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.25); color: var(--text);
      display: none; /* hidden by default */
    }

    .gyvb-mini-row { display: flex; align-items: center; gap: 14px; padding: 12px 16px; cursor: pointer; }

    .gyvb-mini-art {
      width: 64px; height: 64px; border-radius: 10px; object-fit: cover;
      flex-shrink: 0; box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

    .gyvb-mini-info { flex: 1; min-width: 0; }

    .gyvb-mini-label {
      font-size: 10px; text-transform: uppercase; letter-spacing: 1.2px;
      color: var(--accent-readable); font-weight: 600; margin-bottom: 2px;
    }

    .gyvb-mini-title {
      font-size: 15px; font-weight: 700; color: var(--text);
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }

    .gyvb-mini-date { font-size: 11px; color: var(--text-muted); margin-top: 1px; }

    .gyvb-mini-controls { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

    .gyvb-mini-play {
      width: 40px; height: 40px; background: var(--accent); border: none;
      border-radius: 50%; color: var(--accent-text); cursor: pointer; display: flex;
      align-items: center; justify-content: center; flex-shrink: 0;
      transition: background 0.15s, transform 0.1s; padding: 0;
    }

    .gyvb-mini-play:hover { background: var(--accent-hover); transform: scale(1.06); }
    .gyvb-mini-play:active { transform: scale(0.94); }
    .gyvb-mini-play svg { display: block; }

    .gyvb-mini-speed {
      background: var(--bg-hover); border: 1px solid var(--border); color: var(--text-muted);
      border-radius: 6px; padding: 3px 8px; font-size: 11px; font-weight: 600;
      cursor: pointer; transition: all 0.15s; font-family: inherit; white-space: nowrap;
    }

    .gyvb-mini-speed:hover { color: var(--accent-readable); border-color: var(--accent-readable); }

    .gyvb-mini-sub-wrap { position: relative; }

    .gyvb-mini-sub-menu {
      display: none; position: absolute; bottom: calc(100% + 8px); right: 0;
      background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px;
      padding: 6px; min-width: 170px; box-shadow: 0 8px 24px rgba(0,0,0,0.35); z-index: 100;
    }

    .gyvb-mini-sub-menu.is-open { display: block; }

    .gyvb-mini-sub-menu::after {
      content: ''; position: absolute; top: 100%; right: 16px;
      border: 6px solid transparent; border-top-color: var(--border);
    }

    .gyvb-mini-sub-link {
      display: flex; align-items: center; gap: 8px; padding: 7px 10px;
      color: var(--text); text-decoration: none; font-size: 12px;
      border-radius: 6px; transition: background 0.15s;
    }

    .gyvb-mini-sub-link:hover { background: var(--bg-hover); }
    .gyvb-mini-sub-link svg { flex-shrink: 0; }

    .gyvb-mini-progress { width: 100%; height: 4px; background: rgba(0,0,0,0.2); cursor: pointer; position: relative; }
    .gyvb-mini-progress-fill { height: 100%; background: var(--accent); width: 0%; transition: width 0.15s linear; border-radius: 0 2px 2px 0; }

    /* ============================
       COMPACT CARD STYLES
    ============================ */
    .gyvb-card {
      max-width: 680px; margin: 0 auto; background: var(--bg);
      border-radius: 14px; overflow: hidden; color: var(--text);
      box-shadow: 0 4px 20px rgba(0,0,0,0.25); display: none;
    }
    .gyvb-card-row {
      display: flex; align-items: center; gap: 18px; padding: 16px 20px;
    }
    .gyvb-card-art {
      width: 96px; height: 96px; border-radius: 10px; object-fit: cover;
      flex-shrink: 0; box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    }
    .gyvb-card-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
    .gyvb-card-label {
      font-size: 10px; text-transform: uppercase; letter-spacing: 1.2px;
      color: var(--accent-readable); font-weight: 600;
    }
    .gyvb-card-title {
      font-size: 16px; font-weight: 700; color: var(--text);
      display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    }
    .gyvb-card-meta { font-size: 12px; color: var(--text-muted); }
    .gyvb-card-controls { display: flex; align-items: center; gap: 10px; }
    .gyvb-card-play {
      width: 44px; height: 44px; background: var(--accent); border: none;
      border-radius: 50%; color: var(--accent-text); cursor: pointer; display: flex;
      align-items: center; justify-content: center; flex-shrink: 0;
      transition: background 0.15s, transform 0.1s; padding: 0;
    }
    .gyvb-card-play:hover { background: var(--accent-hover); transform: scale(1.06); }
    .gyvb-card-play:active { transform: scale(0.94); }
    .gyvb-card-play svg { display: block; }
    .gyvb-card-progress-wrap { padding: 0 20px 4px; }
    .gyvb-card-progress {
      width: 100%; height: 4px; background: var(--progress-bg);
      border-radius: 2px; cursor: pointer; position: relative;
    }
    .gyvb-card-progress-fill {
      height: 100%; background: var(--accent); width: 0%;
      transition: width 0.15s linear; border-radius: 2px;
    }
    .gyvb-card-times {
      display: flex; justify-content: space-between;
      font-size: 11px; color: var(--text-muted);
      padding: 2px 20px 12px; font-variant-numeric: tabular-nums;
    }

    /* Card AI drawer */
    .gyvb-card-ai {
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .gyvb-card-ai .gyvb-info-tabs {
      padding: 0 16px;
    }
    .gyvb-card-ai .gyvb-info-body {
      padding: 0 16px 8px;
    }

    /* ============================
       STICKY BAR STYLES
    ============================ */
    .gyvb-bar {
      width: 100%; background: var(--bg); color: var(--text); display: none;
    }
    .gyvb-bar-inner {
      display: flex; align-items: center; gap: 12px;
      padding: 8px 16px; max-width: 1200px; margin: 0 auto;
    }
    .gyvb-bar-art {
      width: 40px; height: 40px; border-radius: 6px; object-fit: cover; flex-shrink: 0;
    }
    .gyvb-bar-info { flex: 0 1 200px; min-width: 0; }
    .gyvb-bar-title {
      font-size: 13px; font-weight: 600; color: var(--text);
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .gyvb-bar-date { font-size: 11px; color: var(--text-muted); white-space: nowrap; }
    .gyvb-bar-play {
      width: 36px; height: 36px; background: var(--accent); border: none;
      border-radius: 50%; color: var(--accent-text); cursor: pointer; display: flex;
      align-items: center; justify-content: center; flex-shrink: 0;
      transition: background 0.15s, transform 0.1s; padding: 0;
    }
    .gyvb-bar-play:hover { background: var(--accent-hover); transform: scale(1.06); }
    .gyvb-bar-play:active { transform: scale(0.94); }
    .gyvb-bar-play svg { display: block; }
    .gyvb-bar-progress-wrap { flex: 1; min-width: 80px; cursor: pointer; padding: 4px 0; }
    .gyvb-bar-progress {
      width: 100%; height: 4px; background: var(--progress-bg);
      border-radius: 2px; position: relative;
    }
    .gyvb-bar-progress-fill {
      height: 100%; background: var(--accent); width: 0%;
      transition: width 0.15s linear; border-radius: 2px;
    }
    .gyvb-bar-time {
      font-size: 11px; color: var(--text-muted); font-variant-numeric: tabular-nums;
      flex-shrink: 0; white-space: nowrap;
    }
    .gyvb-bar-speed {
      background: var(--bg-hover); border: 1px solid var(--border); color: var(--text-muted);
      border-radius: 6px; padding: 2px 8px; font-size: 11px; font-weight: 600;
      cursor: pointer; transition: all 0.15s; font-family: inherit; white-space: nowrap; flex-shrink: 0;
    }
    .gyvb-bar-speed:hover { color: var(--accent-readable); border-color: var(--accent-readable); }

    /* Wide layout collapses back to the vertical stack on narrow widths.
       Keyed on the iframe's own rendered width, so on a phone (where the
       iframe is narrow) it automatically becomes the single-column player. */
    @media (max-width: 720px) {
      .gyvb-player.is-wide { max-width: 680px; }
      html.is-wide .gyvb-close-bar { max-width: 680px; }
      .gyvb-wide-grid { display: block; }
      .gyvb-wide-left { border-right: none; }
      .gyvb-player.is-wide .gyvb-episode-list-wrap { max-height: 240px; }
    }

    /* Responsive */
    @media (max-width: 480px) {
      .gyvb-artwork { width: 80px; height: 80px; }
      .gyvb-np-title { font-size: 16px; }
      .gyvb-buttons { gap: 16px; }
      .gyvb-btn-play { width: 46px; height: 46px; }
      .gyvb-np-top { gap: 14px; }
      .gyvb-now-playing { padding: 14px; }
      .gyvb-episode-list-wrap { max-height: 200px; }
      .gyvb-mini-row { padding: 10px 12px; gap: 10px; }
      .gyvb-mini-art { width: 50px; height: 50px; }
      .gyvb-mini-title { font-size: 13px; }
      .gyvb-mini-play { width: 36px; height: 36px; }
      .gyvb-mini-speed { font-size: 10px; padding: 2px 6px; }
      .gyvb-mini-sub-btn { font-size: 10px; padding: 2px 6px; }
      .gyvb-secondary-controls { gap: 10px; padding: 0 14px 14px; flex-wrap: wrap; }
      /* Card responsive */
      .gyvb-card-art { width: 72px; height: 72px; }
      .gyvb-card-title { font-size: 14px; }
      .gyvb-card-row { gap: 12px; padding: 12px 14px; }
      .gyvb-card-play { width: 38px; height: 38px; }
      /* Bar responsive */
      .gyvb-bar-art { width: 34px; height: 34px; }
      .gyvb-bar-inner { gap: 8px; padding: 6px 10px; }
      .gyvb-bar-info { flex: 0 1 120px; }
      .gyvb-bar-title { font-size: 12px; }
      .gyvb-bar-speed { display: none; }
    }
