:root {
    --bg: #f5f5f7;
    --card-bg: #fff;
    --text: #1d1d1f;
    --text-secondary: #888;
    --text-muted: #aaa;
    --border: #e0e0e0;
    --border-light: #eee;
    --accent: #007aff;
    --accent-light: #e8f0fe;
    --bubble-a: #e8f0fe;
    --bubble-b: #fff3e0;
    --bubble-host: #f5f5f7;
    --nav-bg: rgba(255,255,255,0.95);
    --badge-bg: #e8e8ed;
    --bar-bg: #1d1d1f;
    --bar-text: #fff;
    --tag-bg: #eee;
    --prog-bg: #f0f0f0;
    --plan-day-bg: #fafafa;
    --ep-border-idle: #ddd;
    --warn-bg: #fff8e1;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #1a1a1d;
        --card-bg: #252528;
        --text: #e5e5e7;
        --text-secondary: #999;
        --text-muted: #777;
        --border: #3a3a3d;
        --border-light: #2a2a2d;
        --accent: #4da6ff;
        --accent-light: #1a3a5c;
        --bubble-a: #1a3550;
        --bubble-b: #3d2e1a;
        --bubble-host: #2a2a2d;
        --nav-bg: rgba(26,26,29,0.95);
        --badge-bg: #333;
        --bar-bg: #fff;
        --bar-text: #1d1d1f;
        --tag-bg: #333;
        --prog-bg: #333;
        --plan-day-bg: #1e1e21;
        --ep-border-idle: #3a3a3d;
        --warn-bg: #332e1a;
    }
}

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
    color-scheme: light dark;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    padding-bottom: 70px;
    max-width: 600px;
    margin: 0 auto;
    min-height: 100vh;
    min-height: 100dvh;
    -webkit-font-smoothing: antialiased;
    overscroll-behavior-y: contain;
}

/* ── Safe area for iOS notch ────────────────────────── */
.safe-top {
    height: env(safe-area-inset-top, 0px);
    background: var(--bg);
}

/* Standalone app mode tweaks */
html.standalone .safe-top {
    height: env(safe-area-inset-top, 20px);
}

/* ── Links & interactive ─────────────────────────────── */
a { color: inherit; text-decoration: none; -webkit-touch-callout: none; }
button {
    cursor: pointer; font: inherit; border: none; background: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
input, textarea { font: inherit; }

/* ── Bottom Nav ────────────────────────────────────────── */
.bottom-nav {
    position: fixed; bottom: 0; left: 0; right: 0;
    display: flex; justify-content: space-around;
    background: var(--nav-bg); backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom, 0px));
    z-index: 100;
    max-width: 600px; margin: 0 auto;
}
.nav-item { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 4px 16px; border-radius: 8px; transition: .2s; }
.nav-item.active { color: var(--accent); }
.nav-icon { font-size: 22px; }
.nav-label { font-size: 11px; }

/* ── Content ───────────────────────────────────────────── */
.content { padding: 16px; }

.page-header { margin-bottom: 16px; }
.page-header h1 { font-size: 24px; font-weight: 700; }
.page-header .sub { color: var(--text-secondary); font-size: 14px; margin-top: 2px; }

.header-stats { display: flex; gap: 8px; margin-top: 4px; }
.badge { font-size: 12px; background: var(--badge-bg); padding: 2px 10px; border-radius: 12px; color: #666; }

/* ── Episode Cards ─────────────────────────────────────── */
.ep-list { display: flex; flex-direction: column; gap: 10px; }
.ep-card {
    background: var(--card-bg); border-radius: 12px; padding: 14px 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06); cursor: pointer;
    transition: transform .15s, box-shadow .15s;
    border-left: 4px solid var(--ep-border-idle);
}
.ep-card:active { transform: scale(0.98); }
.ep-card.status-listened { border-left-color: #f0ad4e; }
.ep-card.status-shadowed { border-left-color: #5bc0de; }
.ep-card.status-mastered { border-left-color: #27ae60; background: var(--bg); }

.ep-card-header { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.ep-code { font-size: 12px; font-weight: 600; color: var(--accent); background: var(--accent-light); padding: 2px 8px; border-radius: 4px; }
.ep-category { font-size: 12px; color: var(--text-secondary); }
.ep-status { font-size: 11px; margin-left: auto; padding: 2px 8px; border-radius: 10px; }
.ep-status.status-pending { background: var(--tag-bg); color: var(--text-secondary); }
.ep-status.status-listened { background: #fff3cd; color: #856404; }
.ep-status.status-shadowed { background: #d1ecf1; color: #0c5460; }
.ep-status.status-mastered { background: #d4edda; color: #155724; }
.ep-card-title { font-size: 16px; font-weight: 500; }
.ep-card-footer { font-size: 11px; color: var(--text-muted); margin-top: 6px; }

/* ── Episode Detail ────────────────────────────────────── */
.header-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; flex-wrap: wrap; gap: 6px; }
.back-btn { font-size: 14px; color: var(--accent); }
.ep-nav-btns { display: flex; gap: 6px; }
.nav-ep-btn {
    font-size: 13px; padding: 5px 12px; border-radius: 8px;
    background: var(--badge-bg); color: var(--text-secondary); border: none; cursor: pointer;
}
.nav-ep-btn:disabled { opacity: 0.35; }
.nav-ep-btn:not(:disabled):active { background: var(--accent); color: var(--bar-text); }

.bottom-ep-nav {
    display: flex; gap: 8px; margin-top: 20px; padding-top: 16px;
    border-top: 1px solid var(--border);
}
.bottom-ep-nav .nav-ep-btn { flex: 1; text-align: center; padding: 10px; }

.ep-meta { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.tag { font-size: 12px; background: var(--tag-bg); padding: 2px 10px; border-radius: 10px; color: #666; }
.tag-warn { background: #fff3cd; color: #856404; }

.progress-actions { display: flex; gap: 8px; margin-bottom: 12px; }
.prog-btn {
    flex: 1; padding: 10px 8px; border-radius: 8px; font-size: 13px;
    background: var(--prog-bg); color: #666; border: 2px solid transparent; transition: .2s;
}
.prog-btn.done { background: #e8f5e9; color: #27ae60; border-color: #27ae60; font-weight: 600; }

.notes-section { margin-bottom: 16px; }
.notes-section textarea {
    width: 100%; min-height: 60px; padding: 10px; border-radius: 8px;
    border: 1px solid var(--border); background: var(--card-bg); color: var(--text);
    font-size: 14px; resize: vertical;
}

/* ── Sections (dialog text, host text) ─────────────────── */
.section { margin-bottom: 12px; }
.section-title {
    font-size: 16px; font-weight: 600; padding: 12px 16px;
    background: var(--card-bg); border-radius: 8px; cursor: pointer;
    user-select: none; display: flex; justify-content: space-between;
}
.section-title.collapsed { opacity: 0.7; }
.section-body {
    background: var(--card-bg); border-radius: 0 0 8px 8px; padding: 8px 16px 16px;
    font-size: 15px; line-height: 1.7;
}
/* ── Host chat (主持人讲解) ─────────────────────────── */
.host-chat { display: flex; flex-direction: column; gap: 2px; }
.host-marker {
    text-align: center; font-size: 13px; font-weight: 600; color: var(--accent);
    padding: 10px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    margin: 10px 0; background: var(--accent-light);
}
/* M/A as chat bubbles (like dialog, different colors) */
.host-left, .host-right {
    display: flex; align-items: flex-start; gap: 8px; max-width: 92%; margin: 2px 0;
}
.host-left  { flex-direction: row; margin-right: auto; }
.host-right { flex-direction: row-reverse; margin-left: auto; }
.host-role-m, .host-role-a {
    font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 8px;
    min-width: 24px; text-align: center; flex-shrink: 0; color: #fff;
}
.host-role-m { background: #1976d2; }
.host-role-a { background: #c62828; }
.host-bubble-m, .host-bubble-a {
    padding: 10px 14px; border-radius: 12px; font-size: 14px; line-height: 1.6; max-width: 85%;
}
.host-bubble-m { background: #e3f2fd; border-radius: 12px 12px 12px 4px; }
.host-bubble-a { background: #fce4ec; border-radius: 12px 12px 4px 12px; }
@media (prefers-color-scheme: dark) {
    .host-bubble-m { background: #1a3550; }
    .host-bubble-a { background: #3d2e1a; }
    .host-role-m { background: #4da6ff; }
    .host-role-a { background: #ef5350; }
}
.host-example {
    font-size: 13px; color: var(--text-secondary); padding: 4px 0 2px 12px;
    border-left: 3px solid var(--border); margin: 6px 0;
}
.host-plain { font-size: 14px; color: #888; padding: 2px 0; }

/* ── Chat bubbles (对话) ─────────────────────────────── */
.dialog-chat { display: flex; flex-direction: column; gap: 2px; }
.chat-msg { display: flex; align-items: flex-start; gap: 8px; max-width: 92%; margin: 2px 0; }
.chat-left { flex-direction: row; }
.chat-right { flex-direction: row-reverse; align-self: flex-end; }
.chat-host { flex-direction: row; align-self: center; max-width: 95%; }
.chat-role {
    font-size: 11px; font-weight: 700; width: 20px; height: 20px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 2px;
}
.chat-left .chat-role { background: var(--accent); color: var(--bar-text); }
.chat-right .chat-role { background: #e67e22; color: var(--bar-text); }
.chat-host .chat-role { background: #888; color: var(--bar-text); }
.chat-bubble {
    background: #f0f0f5; border-radius: 14px; padding: 8px 14px;
    font-size: 15px; line-height: 1.55; color: var(--text);
}
.chat-left .chat-bubble { background: var(--accent-light); }
.chat-right .chat-bubble { background: #fff3e0; }
.chat-host .chat-bubble { background: var(--bg); font-size: 13px; color: #555; }
.chat-plain { font-size: 14px; color: #666; padding: 4px 0; }
.chat-spacer { height: 8px; }

/* ── Audio Bars ────────────────────────────────────────── */
.audio-bar {
    position: sticky; z-index: 49;
    display: flex; flex-direction: column; gap: 10px;
    background: #1a1a1e; color: #f0f0f0;
    padding: 14px 16px; border-radius: 16px; margin-bottom: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.audio-bar .audio-row { display: flex; align-items: center; gap: 12px; }
.audio-bar .audio-meta { display: flex; align-items: center; gap: 8px; }

/* Full podcast bar — lighter, compact */
.full-bar {
    background: var(--card-bg); color: var(--text);
    border: 1px solid var(--border); box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    padding: 10px 14px;
}
.full-bar .play-btn { background: var(--accent); width: 36px; height: 36px; font-size: 16px; }
.full-bar .audio-label { color: var(--text-secondary); }

/* Play button */
.play-btn {
    width: 48px; height: 48px; min-width: 48px; font-size: 22px;
    display: flex; align-items: center; justify-content: center;
    background: var(--accent); color: #fff; border: none;
    border-radius: 50%; cursor: pointer; transition: transform .15s, box-shadow .15s;
    box-shadow: 0 2px 8px rgba(0,122,255,0.35);
    flex-shrink: 0;
}
.play-btn:active { transform: scale(0.93); }
.play-btn.playing { box-shadow: 0 0 0 6px rgba(0,122,255,0.18); animation: pulse-play 1.8s ease-in-out infinite; }
@keyframes pulse-play {
    0%,100% { box-shadow: 0 0 0 4px rgba(0,122,255,0.18); }
    50% { box-shadow: 0 0 0 10px rgba(0,122,255,0.05); }
}

.audio-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.audio-label { font-size: 14px; font-weight: 600; }
.audio-time { font-size: 12px; opacity: 0.6; }

/* Progress bar — custom styled */
.audio-progress {
    -webkit-appearance: none; appearance: none;
    width: 100%; height: 6px;
    background: rgba(255,255,255,0.15); border-radius: 3px; outline: none;
    cursor: pointer;
}
.full-bar .audio-progress { background: rgba(0,0,0,0.08); }
.audio-progress::-webkit-slider-runnable-track {
    height: 6px; border-radius: 3px;
}
.audio-progress::-webkit-slider-thumb {
    -webkit-appearance: none; width: 18px; height: 18px;
    background: #fff; border: 2px solid var(--accent);
    border-radius: 50%; margin-top: -6px; box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.full-bar .audio-progress::-webkit-slider-thumb { background: var(--accent); border-color: var(--accent); }

/* Speed pills */
.speed-select { display: flex; gap: 3px; flex-shrink: 0; }
.speed-pill {
    font-size: 11px; padding: 3px 7px; border-radius: 6px;
    background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.55);
    border: none; cursor: pointer; font-weight: 500; transition: .15s;
}
.speed-pill.active { background: rgba(255,255,255,0.25); color: #fff; }
.full-bar .speed-pill { background: rgba(0,0,0,0.05); color: var(--text-secondary); }
.full-bar .speed-pill.active { background: var(--accent); color: #fff; }

/* ── Plan View ─────────────────────────────────────────── */
.week-selector { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.week-selector button { padding: 8px 16px; background: var(--badge-bg); border-radius: 8px; font-size: 14px; }
#week-select-label { font-size: 16px; font-weight: 600; min-width: 80px; text-align: center; }
.btn-sm { padding: 6px 14px; border-radius: 8px; font-size: 13px; background: var(--accent); color: var(--bar-text); }

.plan-week-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; }
.plan-week-header { padding: 14px 16px; border-bottom: 1px solid var(--border-light); }
.plan-week-header h3 { font-size: 16px; margin-top: 4px; }

.plan-day { padding: 12px 16px; border-bottom: 1px solid var(--border-light); }
.plan-day:last-child { border-bottom: none; }
.plan-weekend { background: var(--plan-day-bg); }
.plan-day-label { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.plan-day-prac { font-size: 12px; color: var(--text-secondary); margin-bottom: 8px; }
.plan-day-eps { display: flex; flex-direction: column; gap: 6px; }
.plan-ep-link { display: flex; align-items: center; gap: 8px; padding: 8px 12px; background: var(--bg); border-radius: 8px; font-size: 14px; }
.plan-ep-link:active { background: var(--badge-bg); }
.plan-ep-code { font-size: 12px; font-weight: 600; color: var(--accent); min-width: 40px; }
.plan-ep-title { flex: 1; }
.plan-ep-stat { font-size: 14px; }
.no-ep { font-size: 13px; color: var(--text-muted); font-style: italic; }

.weeks-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.week-dot {
    width: 36px; height: 36px; border-radius: 8px; background: var(--badge-bg);
    font-size: 13px; display: flex; align-items: center; justify-content: center;
}
.week-dot.active { background: var(--accent); color: var(--bar-text); font-weight: 600; }

/* ── Forms & Buttons ──────────────────────────────────── */
.input { padding: 10px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; background: var(--card-bg); color: var(--text); }
.btn { padding: 12px 20px; background: var(--accent); color: var(--bar-text); border-radius: 8px; font-size: 14px; font-weight: 500; text-align: center; }

/* ── Progress ──────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.stat-card { background: var(--card-bg); border-radius: 12px; padding: 16px; text-align: center; }
.stat-value { font-size: 28px; font-weight: 700; color: var(--accent); }
.stat-label { font-size: 13px; color: var(--text-secondary); margin-top: 4px; }
.stat-detail { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.progress-bar-container { background: var(--badge-bg); border-radius: 8px; height: 12px; overflow: hidden; }
.progress-bar { background: linear-gradient(90deg, #007aff, #34c759); height: 100%; border-radius: 8px; transition: width .3s; }

.settings-form { background: var(--card-bg); border-radius: 12px; padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.settings-form label { font-size: 13px; color: var(--text-secondary); }
.settings-form .input { background: var(--bg); }

/* ── Utilities ─────────────────────────────────────────── */
.loading { text-align: center; color: var(--text-muted); padding: 40px; }
.empty-state { text-align: center; padding: 40px 20px; color: var(--text-secondary); }
.empty-state .sub { font-size: 13px; color: var(--text-muted); margin-top: 8px; }
.phase-badge { font-size: 12px; background: var(--accent); color: var(--bar-text); padding: 2px 10px; border-radius: 10px; }
.week-badge { font-size: 12px; background: var(--badge-bg); padding: 2px 10px; border-radius: 10px; color: #666; }
.plan-tag { display: flex; gap: 6px; margin-bottom: 8px; }
.week-theme { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.day-practice { font-size: 13px; color: #555; background: var(--warn-bg); padding: 8px 12px; border-radius: 8px; margin-top: 8px; }

/* ── Current day highlight in plan ──────────────────────── */
.plan-today {
    border-left: 4px solid var(--accent) !important;
    background: var(--accent-light) !important;
    border-radius: 0 8px 8px 0 !important;
}
.position-badge {
    background: var(--accent-light);
    color: var(--accent);
    font-weight: 500;
}

/* ── Today progress bar ────────────────────────────────── */
.today-progress {
    background: var(--badge-bg); border-radius: 6px; height: 6px;
    margin: 0 16px 4px; overflow: hidden;
}
.today-progress-inner {
    background: linear-gradient(90deg, #007aff, #34c759);
    height: 100%; border-radius: 6px; transition: width .5s ease;
    width: 0%;
}
.today-progress-text {
    text-align: center; font-size: 12px; color: var(--text-secondary); margin-bottom: 12px;
}

/* ── Celebration overlay ────────────────────────────────── */
.celebration {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    animation: fadeIn .3s;
}
.celebration-content {
    background: var(--card-bg); border-radius: 20px; padding: 32px 24px;
    text-align: center; max-width: 300px; animation: popIn .4s cubic-bezier(.17,.67,.35,1.53);
}
.celebration-emoji { font-size: 64px; margin-bottom: 12px; }
.celebration-content h2 { font-size: 20px; margin-bottom: 8px; color: var(--text); }
.celebration-content p { font-size: 14px; color: var(--text-secondary); margin-bottom: 16px; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn {
    from { transform: scale(.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ── SWE Practice checklist ────────────────────────────── */
.swe-practice {
    background: var(--card-bg); border-radius: 12px; margin: 0 16px 16px; overflow: hidden;
    border-left: 3px solid var(--accent);
}
.swe-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 16px; font-size: 14px; font-weight: 600; cursor: pointer;
    color: var(--text);
}
.swe-body { padding: 0 16px 16px; }
.swe-body p { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; line-height: 1.6; }
.swe-check {
    display: flex; align-items: center; gap: 8px; font-size: 14px;
    color: var(--text); cursor: pointer; padding: 8px 12px;
    background: var(--bg); border-radius: 8px;
}
.swe-check input[type=checkbox] {
    width: 20px; height: 20px; accent-color: var(--accent); cursor: pointer;
}
.plan-swe-check {
    margin-top: 8px; padding: 6px 10px; font-size: 13px;
    background: var(--bg); border-radius: 6px;
    display: flex; align-items: center; gap: 6px; cursor: pointer;
}
.plan-swe-check input[type=checkbox] {
    width: 18px; height: 18px; accent-color: var(--accent); cursor: pointer;
}

/* ── Today dot indicator ──────────────────────────────── */
.today-dot { color: var(--accent); font-size: 10px; vertical-align: middle; }

/* ── Next episode bar ───────────────────────────────────── */
.next-ep-bar {
    position: fixed; bottom: 64px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #fff; border-radius: 24px;
    padding: 10px 20px; display: flex; align-items: center; gap: 12px;
    box-shadow: 0 4px 16px rgba(0,122,255,0.3); z-index: 100;
    animation: slideUp .3s ease; max-width: 90%;
}
.next-ep-msg { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.next-ep-bar .btn {
    background: #fff; color: var(--accent); padding: 6px 16px; border-radius: 16px;
    font-size: 13px; font-weight: 600; white-space: nowrap;
}

/* ── Quick search on today page ────────────────────────── */
.quick-search { margin: 0 16px 12px; }
.quick-search .input {
    width: 100%; text-align: center; font-size: 14px;
    padding: 10px; border-radius: 10px; border: 1px solid var(--border);
    background: var(--card-bg); color: var(--text);
}

/* ── Recording / shadowing ─────────────────────────────── */
.record-bar {
    margin: 0 16px 12px; padding: 12px 16px;
    background: var(--card-bg); border-radius: 12px;
    border: 1px solid var(--border);
}
.rec-btn {
    width: 100%; padding: 12px; border-radius: 10px;
    background: var(--accent); color: #fff; font-size: 15px; font-weight: 600;
    transition: background .2s;
}
.rec-btn.recording {
    background: #e53935; animation: pulse 1.2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}
.record-status {
    display: block; font-size: 13px; color: var(--text-secondary); margin-top: 6px;
    text-align: center;
}

/* ── Review section ─────────────────────────────────────── */
.review-section {
    margin: 0 16px 16px; padding: 12px 16px;
    background: #fff8e1; border-radius: 12px; border-left: 3px solid #f57c00;
}
.review-title { font-size: 14px; font-weight: 600; color: #e65100; margin-bottom: 8px; }
.review-item {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.review-item:last-child { border-bottom: none; }
.review-link {
    flex: 1; display: flex; align-items: center; gap: 8px;
    color: var(--text); text-decoration: none; font-size: 14px;
}
.review-code { font-weight: 600; color: #e65100; font-size: 12px; }
.review-title { flex: 1; }
.review-stage { font-size: 11px; color: var(--text-muted); }
.review-done {
    background: #e8f5e9; color: #2e7d32; border-radius: 50%;
    width: 32px; height: 32px; font-size: 16px;
    display: flex; align-items: center; justify-content: center;
}
@media (prefers-color-scheme: dark) {
    .review-section { background: #332e1a; border-left-color: #f57c00; }
    .review-title { color: #ffb74d; }
    .review-code { color: #ffb74d; }
}
