.gpod-wrap {
    max-width: 760px;
    margin: 20px auto;
    background: rgba(12, 10, 10, 0.92);
    border: 1px solid #8b2e2e;
    border-radius: 10px;
    padding: 24px;
    color: #e6e0e0;
    font-family: 'Segoe UI', sans-serif;
}

.gpod-title {
    font-family: 'Cinzel Decorative', serif;
    font-weight: 900;
    font-size: 26px;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9302c;
    text-shadow: 0 0 8px rgba(201, 48, 44, 0.7), 0 0 2px #000;
    margin-bottom: 20px;
    border-bottom: 1px solid #5a1a1a;
    padding-bottom: 12px;
}

.gpod-empty { text-align: center; color: #a08d8d; }

.gpod-show-tagline { color: #a08d8d; font-size: 13px; text-align: center; margin: -10px 0 18px; }

.gpod-shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}
.gpod-show-card {
    display: block;
    text-decoration: none;
    background: rgba(0,0,0,0.35);
    border: 1px solid #5a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.15s, border-color 0.15s;
}
.gpod-show-card:hover { border-color: #c9302c; box-shadow: 0 0 14px rgba(201, 48, 44, 0.5); }
.gpod-show-cover { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.gpod-show-meta { padding: 12px; }
.gpod-show-name { display: block; font-family: 'Cinzel Decorative', serif; color: #c9302c; font-size: 15px; }
.gpod-show-desc { display: block; color: #a08d8d; font-size: 12px; margin-top: 4px; line-height: 1.4; }

.gpod-single-show { font-size: 12px; color: #a08d8d; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }

.gpod-season-title {
    font-weight: bold;
    color: #c9302c;
    margin: 22px 0 10px;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.gpod-season:first-child .gpod-season-title { margin-top: 0; }

.gpod-episode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.gpod-episode-card {
    display: block;
    text-decoration: none;
    background: rgba(0,0,0,0.35);
    border: 1px solid #5a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.15s, border-color 0.15s;
}
.gpod-episode-card:hover {
    border-color: #c9302c;
    box-shadow: 0 0 14px rgba(201, 48, 44, 0.5);
}
.gpod-episode-cover { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.gpod-episode-meta { padding: 10px; }
.gpod-episode-num { display: block; font-size: 11px; color: #c9302c; font-weight: bold; letter-spacing: 0.5px; }
.gpod-episode-name { display: block; color: #e6e0e0; font-size: 14px; margin-top: 2px; }

/* ---------- Single episode ---------- */
.gpod-back { color: #a08d8d; text-decoration: none; font-size: 13px; }
.gpod-back:hover { color: #c9302c; }

.gpod-single-header {
    display: flex;
    gap: 16px;
    margin: 16px 0 20px;
    align-items: flex-start;
}
.gpod-single-cover { width: 100px; height: 100px; object-fit: cover; border-radius: 8px; border: 2px solid #c9302c; flex-shrink: 0; }
.gpod-single-eyebrow { font-size: 12px; color: #c9302c; font-weight: bold; letter-spacing: 0.5px; text-transform: uppercase; }
.gpod-single-title { font-family: 'Cinzel Decorative', serif; font-size: 22px; margin: 4px 0; color: #e6e0e0; }
.gpod-single-guests { color: #a08d8d; font-size: 13px; }
.gpod-single-date { color: #a08d8d; font-size: 12px; margin-top: 2px; }

/* ---------- Audio player ---------- */
.gpod-player {
    background: rgba(0,0,0,0.35);
    border: 1px solid #5a1a1a;
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 16px;
}
.gpod-controls { display: flex; align-items: center; gap: 10px; }
.gpod-btn {
    background: #c9302c;
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    flex-shrink: 0;
}
.gpod-btn:hover { background: #a02622; }
.gpod-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.gpod-progress-wrap { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; }
.gpod-time { font-size: 12px; color: #a08d8d; min-width: 34px; }
.gpod-progress, .gpod-volume {
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 3px;
    background: #5a1a1a;
    outline: none;
    cursor: pointer;
}
.gpod-progress { flex: 1; }
.gpod-volume { width: 70px; }
.gpod-progress::-webkit-slider-thumb, .gpod-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px; height: 14px; border-radius: 50%;
    background: #c9302c; cursor: pointer;
}
.gpod-progress::-moz-range-thumb, .gpod-volume::-moz-range-thumb {
    width: 14px; height: 14px; border-radius: 50%; background: #c9302c; border: none; cursor: pointer;
}
.gpod-progress:disabled, .gpod-volume:disabled { opacity: 0.4; cursor: not-allowed; }

.gpod-ad-banner {
    margin-top: 10px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #ff8080;
    text-transform: uppercase;
}

/* ---------- Video embed ---------- */
.gpod-video-embed { position: relative; width: 100%; padding-top: 56.25%; margin-bottom: 16px; border-radius: 8px; overflow: hidden; border: 1px solid #5a1a1a; }
.gpod-video-embed iframe { position: absolute; top:0; left:0; width: 100%; height: 100%; border: 0; }
.gpod-video-link { margin-bottom: 16px; }
.gpod-video-link a { color: #c9302c; font-weight: bold; text-decoration: none; }
.gpod-video-link a:hover { text-decoration: underline; }

/* ---------- Show notes ---------- */
.gpod-shownotes { line-height: 1.6; color: #e6e0e0; margin-bottom: 20px; }
.gpod-shownotes p { margin: 0 0 12px; }

/* ---------- Live chat ---------- */
.gpod-chat {
    background: rgba(0,0,0,0.35);
    border: 1px solid #5a1a1a;
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 20px;
}
.gpod-chat-title { font-weight: bold; color: #c9302c; font-size: 13px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.gpod-chat-messages { max-height: 220px; overflow-y: auto; margin-bottom: 10px; padding-right: 4px; }
.gpod-chat-msg { font-size: 13px; padding: 4px 0; border-bottom: 1px solid rgba(90,26,26,0.4); }
.gpod-chat-msg-name { color: #c9302c; font-weight: bold; }
.gpod-chat-msg-text { color: #e6e0e0; }
.gpod-chat-msg-time { float: right; color: #a08d8d; font-size: 11px; }
.gpod-chat-form { display: flex; gap: 8px; flex-wrap: wrap; }
.gpod-chat-name { flex: 0 0 120px; }
.gpod-chat-message { flex: 1; min-width: 140px; }
.gpod-chat-name, .gpod-chat-message {
    background: rgba(0,0,0,0.4);
    border: 1px solid #5a1a1a;
    color: #e6e0e0;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 13px;
}
.gpod-btn-send {
    background: #c9302c;
    border: none;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}
.gpod-btn-send:hover { background: #a02622; }

/* ---------- Soundboard ---------- */
.gpod-soundboard {
    max-width: 760px;
    margin: 20px auto;
    background: rgba(12, 10, 10, 0.92);
    border: 1px solid #8b2e2e;
    border-radius: 10px;
    padding: 20px;
}
.gpod-soundboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}
.gpod-sound-btn {
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    padding: 16px 10px;
    cursor: pointer;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.3), 0 2px 6px rgba(0,0,0,0.4);
    transition: transform 0.08s, box-shadow 0.15s;
}
.gpod-sound-btn:hover { box-shadow: 0 0 14px rgba(255,255,255,0.25), 0 2px 6px rgba(0,0,0,0.4); }
.gpod-sound-btn:active,
.gpod-sound-btn.gpod-sound-active { transform: scale(0.95); }

/* ---------- Recorder ---------- */
.gpod-recorder {
    max-width: 760px;
    margin: 20px auto;
    background: rgba(12, 10, 10, 0.92);
    border: 1px solid #8b2e2e;
    border-radius: 10px;
    padding: 24px;
    color: #e6e0e0;
    font-family: 'Segoe UI', sans-serif;
}
.gpod-recorder-hint { color: #a08d8d; font-size: 13px; line-height: 1.5; margin-bottom: 16px; }
.gpod-recorder-controls { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.gpod-record-btn { width: auto; height: auto; border-radius: 6px; padding: 10px 18px; background: #c9302c; }
.gpod-record-btn:hover { background: #a02622; }
.gpod-record-btn:disabled { background: #5a1a1a; opacity: 0.6; cursor: not-allowed; animation: gpod-rec-pulse 1.4s infinite; }
@keyframes gpod-rec-pulse {
    0%, 100% { box-shadow: 0 0 0 rgba(201,48,44,0.6); }
    50% { box-shadow: 0 0 16px rgba(201,48,44,0.9); }
}
.gpod-stop-btn { width: auto; height: auto; border-radius: 6px; padding: 10px 18px; background: #5a1a1a; }
.gpod-stop-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.gpod-record-timer { font-variant-numeric: tabular-nums; font-size: 15px; color: #e6e0e0; }
.gpod-record-status { font-size: 13px; color: #a08d8d; }
.gpod-recorder-soundboard { margin-bottom: 18px; }
.gpod-recorder-preview { border-top: 1px solid #5a1a1a; padding-top: 16px; margin-top: 4px; }
.gpod-recorder-preview-title { font-weight: bold; color: #c9302c; margin-bottom: 8px; text-transform: uppercase; font-size: 13px; letter-spacing: 0.5px; }
.gpod-recorder-audio { width: 100%; margin-bottom: 12px; }
.gpod-recorder-details { border-top: 1px solid #5a1a1a; padding-top: 14px; margin-bottom: 16px; }
.gpod-recorder-form-table { width: 100%; border-collapse: collapse; }
.gpod-recorder-form-table th { text-align: left; color: #a08d8d; font-size: 12px; font-weight: normal; padding: 8px 10px 8px 0; vertical-align: top; width: 130px; }
.gpod-recorder-form-table td { padding: 6px 0; }
.gpod-recorder-form-table input[type="text"],
.gpod-recorder-form-table input[type="url"],
.gpod-recorder-form-table input[type="number"],
.gpod-recorder-form-table input[type="date"],
.gpod-recorder-form-table textarea {
    width: 100%;
    background: rgba(0,0,0,0.4);
    border: 1px solid #5a1a1a;
    color: #e6e0e0;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-family: inherit;
    box-sizing: border-box;
}
.gpod-recorder-form-table input[type="number"] { max-width: 90px; }
.gpod-recorder-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Comments ---------- */
.gpod-comments { border-top: 1px solid #5a1a1a; padding-top: 16px; }
.gpod-comments-title { font-weight: bold; color: #c9302c; margin-bottom: 12px; text-transform: uppercase; font-size: 13px; letter-spacing: 0.5px; }
.gpod-comment-notice { color: #a08d8d; font-size: 13px; margin-bottom: 10px; }
.gpod-comment-error { color: #ff6b6b; }
.gpod-comment { padding: 10px 0; border-bottom: 1px solid rgba(90,26,26,0.4); }
.gpod-comment-author { color: #c9302c; font-weight: bold; font-size: 13px; }
.gpod-comment-date { color: #a08d8d; font-size: 11px; margin-bottom: 4px; }
.gpod-comment-content { color: #e6e0e0; font-size: 14px; line-height: 1.5; }
.gpod-comment-form { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.gpod-comment-input, .gpod-comment-textarea {
    background: rgba(0,0,0,0.4);
    border: 1px solid #5a1a1a;
    color: #e6e0e0;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-family: inherit;
}

/* --- Support Us (Gremlin Wallet-branded, multi-cause) --- */
.gpod-support {
    max-width: 460px;
    margin: 20px auto;
    text-align: center;
}
.gpod-support-btn {
    width: 100%;
    font-family: 'Cinzel Decorative', serif;
    background: linear-gradient(180deg, #c9302c, #8b2e2e);
    border: 1px solid #c9302c;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 0 16px rgba(201, 48, 44, 0.6);
    transition: box-shadow 0.15s, transform 0.1s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.gpod-support-btn:hover { box-shadow: 0 0 24px rgba(255, 77, 77, 0.85); }
.gpod-support-btn:active { transform: scale(0.98); }
.gpod-support-btn-label { font-weight: 700; letter-spacing: 1.5px; font-size: 15px; }
.gpod-support-btn-badge {
    font-family: 'Segoe UI', sans-serif;
    font-weight: normal;
    font-size: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ffd3d3;
    background: rgba(0,0,0,0.25);
    padding: 2px 8px;
    border-radius: 10px;
}
.gpod-support-dropdown {
    margin-top: 10px;
    background: rgba(12, 10, 10, 0.95);
    border: 1px solid #8b2e2e;
    border-radius: 8px;
    padding: 14px;
    text-align: left;
    box-shadow: 0 0 20px rgba(139, 46, 46, 0.4);
}
.gpod-support-empty { color: #e6e0e0; font-size: 13px; text-align: center; margin: 4px 0; }
.gpod-support-cause-title {
    font-family: 'Cinzel Decorative', serif;
    color: #c9302c;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 14px 0 6px;
    padding-bottom: 4px;
    border-bottom: 1px solid #5a1a1a;
}
.gpod-support-cause-title:first-child { margin-top: 0; }
.gpod-support-cause-desc {
    display: block;
    font-family: 'Segoe UI', sans-serif;
    text-transform: none;
    color: #a08d8d;
    font-size: 11px;
    letter-spacing: normal;
    margin-top: 2px;
}
.gpod-support-row { padding: 8px 0; border-bottom: 1px solid #3a1010; }
.gpod-support-row:last-child { border-bottom: none; }
.gpod-support-label { font-weight: bold; color: #c9302c; margin-bottom: 4px; font-size: 13px; letter-spacing: 0.5px; }
.gpod-support-address-row { display: flex; align-items: center; gap: 8px; }
.gpod-support-address {
    flex: 1;
    background: rgba(0,0,0,0.4);
    border: 1px solid #5a1a1a;
    color: #e6e0e0;
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 12px;
    word-break: break-all;
}
.gpod-support-copy {
    background: rgba(0,0,0,0.4);
    border: 1px solid #8b2e2e;
    color: #e6e0e0;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}
.gpod-support-copy:hover { background: #c9302c; }
.gpod-support-copy.gpod-copied { background: #2e7d32; border-color: #2e7d32; }
.gpod-support-footer {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #5a1a1a;
    font-size: 11px;
    color: #a08d8d;
    text-align: center;
}

/* --- Social Links (unrestricted — any label, any URL) --- */
.gpod-social { max-width: 460px; margin: 20px auto; }
.gpod-social-empty { text-align: center; color: #a08d8d; font-size: 13px; }
.gpod-social-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.gpod-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 24px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.3), 0 2px 6px rgba(0,0,0,0.4);
    transition: transform 0.08s, box-shadow 0.15s;
}
.gpod-social-link:hover { box-shadow: 0 0 14px rgba(255,255,255,0.25), 0 2px 6px rgba(0,0,0,0.4); transform: translateY(-1px); }
.gpod-social-link:active { transform: scale(0.96); }
.gpod-social-icon { width: 20px; height: 20px; border-radius: 4px; object-fit: cover; flex-shrink: 0; }

/* --- AI tools (script helper + cover art) inside the recorder --- */
.gpod-recorder-ai-script { margin-bottom: 16px; }
.gpod-ai-script-panel, .gpod-ai-cover-panel {
    margin-top: 10px;
    background: rgba(0,0,0,0.3);
    border: 1px solid #5a1a1a;
    border-radius: 6px;
    padding: 12px;
}
.gpod-ai-script-topic, .gpod-ai-script-output, .gpod-ai-cover-prompt {
    width: 100%;
    background: rgba(0,0,0,0.4);
    border: 1px solid #5a1a1a;
    color: #e6e0e0;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-family: inherit;
    box-sizing: border-box;
    margin-bottom: 8px;
}
.gpod-ai-script-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.gpod-ai-script-status, .gpod-ai-cover-status { font-size: 12px; color: #a08d8d; }
.gpod-ai-cover-box { margin-top: 8px; }
.gpod-ai-cover-preview { max-width: 160px; border-radius: 6px; margin-top: 8px; display: block; }

/* --- Live captions (deaf/hard-of-hearing accessibility) --- */
.gpod-caption-line {
    margin-top: 10px;
    padding: 10px 12px;
    background: rgba(0,0,0,0.4);
    border: 1px solid #5a1a1a;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
    color: #e6e0e0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    min-height: 20px;
}
.gpod-caption-badge {
    flex-shrink: 0;
    background: #c9302c;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border-radius: 3px;
    line-height: 1.6;
}
.gpod-caption-text { flex: 1; }

/* --- Full transcript --- */
.gpod-transcript { margin-bottom: 16px; }
.gpod-transcript-toggle {
    background: rgba(0,0,0,0.35);
    border: 1px solid #5a1a1a;
    color: #e6e0e0;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
}
.gpod-transcript-toggle:hover { border-color: #c9302c; }
.gpod-transcript-body {
    margin-top: 10px;
    padding: 14px;
    background: rgba(0,0,0,0.3);
    border: 1px solid #5a1a1a;
    border-radius: 6px;
    max-height: 400px;
    overflow-y: auto;
    line-height: 1.6;
    color: #e6e0e0;
    font-size: 14px;
}
.gpod-transcript-body p { margin: 0 0 10px; }

/* --- Distribution status column (wp-admin) --- */
.gpod-dist-status-icon { font-size: 15px; margin-right: 6px; }
.gpod-dist-status-select { vertical-align: middle; }

/* --- Playback speed + share ---- */
.gpod-speed {
    background: rgba(0,0,0,0.4);
    border: 1px solid #5a1a1a;
    color: #e6e0e0;
    border-radius: 5px;
    font-size: 12px;
    padding: 4px 4px;
    cursor: pointer;
    flex-shrink: 0;
}
.gpod-share-btn {
    width: 34px; height: 34px; font-size: 14px;
}
.gpod-share-confirm {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: #7fbf7f;
}

/* --- Listener tone EQ panel --- */
.gpod-eq-toggle {
    width: 34px; height: 34px; font-size: 14px;
}
.gpod-eq-panel {
    margin-top: 10px;
    padding: 12px;
    background: #170f0f;
    border: 1px solid #5a1a1a;
    border-radius: 8px;
}
.gpod-eq-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}
.gpod-eq-preset-label {
    font-size: 12px;
    color: #a08d8d;
    display: flex;
    align-items: center;
    gap: 6px;
}
.gpod-eq-preset {
    background: #1a1414;
    border: 1px solid #5a1a1a;
    color: #e6e0e0;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 12px;
}
.gpod-eq-reset {
    background: transparent;
    border: 1px solid #5a1a1a;
    color: #a08d8d;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 12px;
    cursor: pointer;
}
.gpod-eq-reset:hover { color: #e6e0e0; border-color: #c9302c; }
.gpod-eq-bands {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    padding: 6px 0;
}
.gpod-eq-band {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.gpod-eq-slider {
    writing-mode: vertical-lr;
    direction: rtl;
    width: 22px;
    height: 80px;
    accent-color: #c9302c;
}
.gpod-eq-band-label {
    font-size: 10px;
    color: #a08d8d;
    text-align: center;
    line-height: 1.3;
}
.gpod-eq-note {
    margin: 10px 0 0;
    font-size: 11px;
    color: #a08d8d;
    text-align: center;
}

/* --- Chapters list under the player --- */
.gpod-chapters { margin-top: 12px; border-top: 1px solid #5a1a1a; padding-top: 10px; }
.gpod-chapters-title { font-size: 12px; color: #c9302c; font-weight: bold; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 6px; }
.gpod-chapters-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.gpod-chapter-jump {
    display: flex;
    gap: 10px;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: #a08d8d;
    padding: 5px 8px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
}
.gpod-chapter-jump:hover { background: rgba(201,48,44,0.15); color: #e6e0e0; }
.gpod-chapter-active { background: rgba(201,48,44,0.25); color: #e6e0e0; }
.gpod-chapter-time { color: #c9302c; font-variant-numeric: tabular-nums; flex-shrink: 0; }

/* --- Guest directory --- */
.gpod-guests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}
.gpod-guest-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    background: rgba(0,0,0,0.35);
    border: 1px solid #5a1a1a;
    border-radius: 8px;
    padding: 12px 14px;
    transition: border-color 0.15s;
}
.gpod-guest-card:hover { border-color: #c9302c; }
.gpod-guest-name { color: #e6e0e0; font-size: 14px; }
.gpod-guest-count { color: #a08d8d; font-size: 11px; }
.gpod-single-guests a { color: #c9302c; text-decoration: none; }
.gpod-single-guests a:hover { text-decoration: underline; }

/* --- Search --- */
.gpod-search-form { display: flex; gap: 8px; }
.gpod-search-input {
    flex: 1;
    background: rgba(0,0,0,0.4);
    border: 1px solid #5a1a1a;
    color: #e6e0e0;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14px;
}
.gpod-search-input:focus { outline: none; border-color: #c9302c; }
.gpod-search-results { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.gpod-search-result {
    display: flex;
    gap: 10px;
    text-decoration: none;
    background: rgba(0,0,0,0.35);
    border: 1px solid #5a1a1a;
    border-radius: 8px;
    padding: 10px;
    align-items: center;
}
.gpod-search-result:hover { border-color: #c9302c; }
.gpod-search-result img { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.gpod-search-result-title { color: #e6e0e0; font-size: 14px; }
.gpod-search-result-snippet { color: #a08d8d; font-size: 12px; margin-top: 2px; }
.gpod-search-loading, .gpod-search-empty { color: #a08d8d; font-size: 13px; }

/* --- Email subscribe --- */
.gpod-subscribe {
    background: rgba(0,0,0,0.35);
    border: 1px solid #5a1a1a;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
}
.gpod-subscribe-title { color: #e6e0e0; font-size: 14px; margin-bottom: 10px; font-weight: bold; }
.gpod-subscribe-form { display: flex; gap: 8px; }
.gpod-subscribe-email {
    flex: 1;
    background: rgba(0,0,0,0.4);
    border: 1px solid #5a1a1a;
    color: #e6e0e0;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14px;
}
.gpod-subscribe-email:focus { outline: none; border-color: #c9302c; }
.gpod-subscribe-status { margin-top: 8px; font-size: 12px; color: #a08d8d; }

/* --- Sign-up --- */
.gpod-signup {
    background: rgba(0,0,0,0.35);
    border: 1px solid #5a1a1a;
    border-radius: 10px;
    padding: 20px;
    max-width: 420px;
}
.gpod-signup-title { font-family: 'Cinzel Decorative', serif; font-size: 20px; color: #e6e0e0; margin-bottom: 6px; }
.gpod-signup-blurb { color: #a08d8d; font-size: 13px; margin-bottom: 14px; }
.gpod-signup-error { color: #ff8a80; font-size: 13px; margin-bottom: 10px; }
.gpod-signup-form { display: flex; flex-direction: column; gap: 10px; }
.gpod-signup-form input {
    background: rgba(0,0,0,0.4);
    border: 1px solid #5a1a1a;
    color: #e6e0e0;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14px;
}
.gpod-signup-form input:focus { outline: none; border-color: #c9302c; }

/* --- Podcaster dashboard --- */
.gpod-dashboard { max-width: 720px; }
.gpod-dashboard-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; flex-wrap: wrap; gap: 6px; }
.gpod-dashboard-level { color: #a08d8d; font-size: 13px; }
.gpod-dash-notice { background: rgba(127,191,127,0.15); border: 1px solid #4a7a4a; color: #cdeecd; padding: 8px 12px; border-radius: 6px; font-size: 13px; margin-bottom: 12px; }
.gpod-dash-notice-error { background: rgba(201,48,44,0.15); border-color: #c9302c; color: #ffd6d4; }

.gpod-quota-bar-wrap { margin-bottom: 20px; }
.gpod-quota-label { color: #e6e0e0; font-size: 13px; margin-bottom: 6px; }
.gpod-quota-bar { height: 10px; background: #5a1a1a; border-radius: 5px; overflow: hidden; }
.gpod-quota-bar-fill { height: 100%; background: #c9302c; }
.gpod-quota-note { color: #a08d8d; font-size: 12px; margin-top: 6px; }

.gpod-dashboard-form, .gpod-dashboard-episodes {
    background: rgba(0,0,0,0.35);
    border: 1px solid #5a1a1a;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 20px;
}
.gpod-dashboard-form h3, .gpod-dashboard-episodes h3 { margin-top: 0; color: #e6e0e0; font-size: 15px; }
.gpod-dash-form-table { width: 100%; }
.gpod-dash-form-table th { text-align: left; color: #a08d8d; font-size: 12px; padding: 8px 10px 8px 0; vertical-align: top; width: 130px; }
.gpod-dash-form-table td { padding: 8px 0; }
.gpod-dash-form-table input[type="text"],
.gpod-dash-form-table input[type="url"],
.gpod-dash-form-table textarea {
    width: 100%;
    background: rgba(0,0,0,0.4);
    border: 1px solid #5a1a1a;
    color: #e6e0e0;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 13px;
    box-sizing: border-box;
}
.gpod-dash-cancel { color: #a08d8d; margin-left: 10px; font-size: 13px; }

.gpod-dash-episode-table { width: 100%; border-collapse: collapse; }
.gpod-dash-episode-table th { text-align: left; color: #c9302c; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; padding: 6px 8px; border-bottom: 1px solid #5a1a1a; }
.gpod-dash-episode-table td { padding: 8px; border-bottom: 1px solid rgba(90,26,26,0.4); color: #e6e0e0; font-size: 13px; }
.gpod-dash-episode-table a { color: #c9302c; text-decoration: none; }
.gpod-dash-episode-table a:hover { text-decoration: underline; }

/* --- Membership upgrade / payments --- */
.gpod-upgrade-section {
    background: rgba(0,0,0,0.35);
    border: 1px solid #5a1a1a;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 20px;
}
.gpod-upgrade-section h3 { margin-top: 0; color: #e6e0e0; font-size: 15px; }
.gpod-upgrade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}
.gpod-upgrade-card {
    background: rgba(0,0,0,0.3);
    border: 1px solid #5a1a1a;
    border-radius: 8px;
    padding: 14px;
}
.gpod-upgrade-name { color: #e6e0e0; font-size: 15px; font-weight: bold; }
.gpod-upgrade-quota { color: #a08d8d; font-size: 12px; margin: 2px 0 10px; }
.gpod-upgrade-buttons { display: flex; flex-direction: column; gap: 6px; }
.gpod-upgrade-buttons form { margin: 0; }
.gpod-pay-btn {
    width: 100%;
    text-align: center;
    font-size: 13px;
    padding: 8px 10px;
}
.gpod-pay-status { margin-top: 8px; font-size: 12px; color: #a08d8d; min-height: 14px; }
.gpod-upgrade-note { color: #a08d8d; font-size: 11px; margin: 10px 0 0; }
