/* ── Base Ticker ────────────────────────────────────────────── */
.audio-ticker-isolated {
    margin: 20px auto;
    max-width: 450px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --at-primary:   #73a15b;
    --at-secondary: #4c726c;
    --at-accent:    #e8f4f8;
    --at-text:      #2c3e50;
    --at-meta:      #7f8c8d;
    --at-border:    #eee;
    --at-hover:     #f8fafd;
}
.audio-ticker-isolated * { box-sizing: border-box; }

.audio-ticker-box {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,104,137,0.15);
    overflow: hidden;
    border: 1px solid rgba(0,104,137,0.1);
}
.audio-ticker-head {
    background: linear-gradient(to right, var(--at-primary), var(--at-secondary));
    color: white;
    padding: 20px 25px;
}
.audio-head-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.audio-ticker-head h2 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.audio-view-all-link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}
.audio-view-all-link:hover { color: white; text-decoration: underline; }

/* LATEST UPLOADS — green (site colour scheme) */
.audio-live-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: whitesmoke;
    font-weight: 600;
    font-size: 14px;
}
.audio-live-dot {
    width: 10px;
    height: 10px;
    background: #73a15b;
    border-radius: 50%;
    animation: audio-pulse 1.5s infinite;
}

/* Ticker content area */
.audio-ticker-content {
    height: 420px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #ffffff, #fafafa);
}
/* IMPROVEMENT #3: Bottom fade — hints at more items below */
.audio-ticker-content::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 72px;
    background: linear-gradient(to bottom, transparent, rgba(250,250,250,0.97));
    pointer-events: none;
    z-index: 2;
}
.audio-scroll-wrapper { height: 100%; position: relative; overflow: hidden; }

/* IMPROVEMENT #3: Smooth scroll transition */
.audio-items-container {
    position: relative;
    width: 100%;
    transition: transform 0.75s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}
.audio-item-card {
    padding: 22px 25px;
    background: white;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid var(--at-border);
    transition: all 0.3s ease;
}
.audio-item-card:hover               { background: var(--at-hover); transform: translateX(5px); }
/* IMPROVEMENT #4: Visual cue for posts without a file */
.audio-item-card.no-audio            { opacity: 0.55; cursor: default; }
.audio-item-card.no-audio:hover      { background: white; transform: none; }

.audio-item-title {
    color: var(--at-text);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 8px;
    font-weight: 500;
}
.audio-item-meta {
    color: var(--at-meta);
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.audio-item-category {
    background: var(--at-accent);
    color: var(--at-primary);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 10px;
}
/* IMPROVEMENT #4: "No audio file" label inside ticker card */
.audio-item-no-file {
    font-size: 11px;
    color: #c0392b;
    margin-top: 5px;
}
.audio-ticker-foot {
    background: var(--at-hover);
    padding: 12px 25px;
    border-top: 1px solid #eef2f7;
    color: #666;
    font-size: 12px;
    text-align: center;
}
.audio-site-brand { color: var(--at-primary); font-weight: 600; }

/* Loading / error states */
.audio-modal-backdrop {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}
.audio-loading-state { text-align: center; padding: 50px 20px; color: var(--at-meta); }
.audio-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--at-primary);
    border-radius: 50%;
    width: 40px; height: 40px;
    animation: audio-spin 1s linear infinite;
    margin: 0 auto 15px;
}
.audio-error-state { text-align: center; padding: 40px 20px; color: #e74c3c; }

/* ── Keyframes ──────────────────────────────────────────────── */
@keyframes audio-pulse   { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
@keyframes audio-spin    { to{transform:rotate(360deg);} }
@keyframes speakerRing   { 0%{transform:scale(0.85);opacity:0.8;} 100%{transform:scale(1.25);opacity:0;} }
@keyframes barBounce1    { 0%,100%{height:4px;}  50%{height:14px;} }
@keyframes barBounce2    { 0%,100%{height:14px;} 50%{height:5px;}  }
@keyframes barBounce3    { 0%,100%{height:7px;}  50%{height:16px;} }
@keyframes vaSlideIn     { from{opacity:0;transform:translateY(24px);} to{opacity:1;transform:translateY(0);} }
@keyframes slideUp       { from{transform:translateY(100%);} to{transform:translateY(0);} }
@keyframes atFadeIn      { from{opacity:0;} to{opacity:1;} }
@keyframes atBounceIn    { 0%{transform:scale(0.65);opacity:0;} 75%{transform:scale(1.06);} 100%{transform:scale(1);opacity:1;} }

/* ── Audio Player Modal ─────────────────────────────────────── */
.audio-modal-panel {
    background: #0f0f0f;
    border-radius: 24px;
    width: 90%; max-width: 420px;
    padding: 0;
    position: relative;
    z-index: 10001;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.7);
}
.audio-modal-close {
    position: absolute;
    top: 14px; right: 14px;
    background: rgba(255,255,255,0.1);
    color: white;
    border: none;
    width: 30px; height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    z-index: 10;
    transition: background 0.2s;
    line-height: 1;
}
.audio-modal-close:hover { background: rgba(255,255,255,0.22); }

.audio-player { display: flex; flex-direction: column; align-items: center; }

.audio-player-cover {
    width: 100%; height: 155px;
    background: linear-gradient(135deg, #1c3d2a 0%, #0e2419 50%, #091610 100%);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.audio-player-cover::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 65% 35%, rgba(115,161,91,0.28), transparent 60%);
}
.audio-player-cover-icon {
    width: 90px; height: 90px;
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 1;
}
.speaker-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(115,161,91,0.5);
    opacity: 0;
}
.speaker-ring-1 { width: 90px;  height: 90px;  }
.speaker-ring-2 { width: 116px; height: 116px; border-color: rgba(115,161,91,0.3); }
.speaker-ring-3 { width: 144px; height: 144px; border-color: rgba(115,161,91,0.15); }
.audio-player-cover-icon.playing .speaker-ring-1 { opacity:1; animation: speakerRing 1.5s ease-out infinite; }
.audio-player-cover-icon.playing .speaker-ring-2 { opacity:1; animation: speakerRing 1.5s ease-out 0.4s infinite; }
.audio-player-cover-icon.playing .speaker-ring-3 { opacity:1; animation: speakerRing 1.5s ease-out 0.8s infinite; }
.speaker-svg {
    position: relative; z-index: 2;
    filter: drop-shadow(0 0 8px rgba(115,161,91,0.4));
    transition: filter 0.3s;
}
.audio-player-cover-icon.playing .speaker-svg {
    filter: drop-shadow(0 0 16px rgba(115,161,91,0.9)) drop-shadow(0 0 32px rgba(115,161,91,0.4));
}
.speaker-bars { display: flex; align-items: center; gap: 2px; margin-left: 4px; }
.speaker-bar   { width: 3px; background: #a8d08d; border-radius: 2px; transition: height 0.2s; }
.speaker-bar-1 { height: 6px; }
.speaker-bar-2 { height: 12px; }
.speaker-bar-3 { height: 8px; }
.audio-player-cover-icon.playing .speaker-bar-1 { animation: barBounce1 0.7s ease-in-out infinite; }
.audio-player-cover-icon.playing .speaker-bar-2 { animation: barBounce2 0.7s ease-in-out 0.15s infinite; }
.audio-player-cover-icon.playing .speaker-bar-3 { animation: barBounce3 0.7s ease-in-out 0.3s infinite; }

/* IMPROVEMENT #1: Buffering overlay */
.at-cover-buffer {
    position: absolute; inset: 0;
    z-index: 4;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
}
.at-cover-buffer.visible { opacity: 1; }
.at-buffer-ring {
    width: 70px; height: 70px;
    border: 3px solid rgba(255,255,255,0.08);
    border-top: 3px solid #73a15b;
    border-radius: 50%;
    animation: audio-spin 0.9s linear infinite;
}

/* IMPROVEMENT #2: Tap-to-play overlay */
.at-tap-overlay {
    position: absolute; inset: 0;
    z-index: 5;
    background: rgba(0,0,0,0.55);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    cursor: pointer;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
}
.at-tap-overlay.visible { opacity: 1; pointer-events: all; }
.at-tap-play-icon {
    width: 52px; height: 52px;
    background: rgba(115,161,91,0.92);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 10px;
    animation: atBounceIn 0.4s ease both;
    box-shadow: 0 4px 22px rgba(115,161,91,0.55);
}
.at-tap-play-icon::after {
    content: '';
    width: 0; height: 0;
    border-style: solid;
    border-width: 9px 0 9px 17px;
    border-color: transparent transparent transparent white;
    margin-left: 4px;
}
.at-tap-text { color: white; font-size: 12px; font-weight: 600; letter-spacing: 0.5px; }

/* Player info */
.audio-player-info {
    width: 100%;
    text-align: center;
    padding: 22px 28px 8px;
    background: #0f0f0f;
}
.audio-player-category {
    display: inline-block;
    font-size: 10px; font-weight: 700;
    letter-spacing: 1.8px; text-transform: uppercase;
    color: #73a15b;
    background: rgba(115,161,91,0.1);
    border: 1px solid rgba(115,161,91,0.28);
    padding: 4px 12px; border-radius: 20px;
    margin-bottom: 12px;
}
.audio-player-title { font-weight: 700; font-size: 16px; color: #fff; margin-bottom: 6px; line-height: 1.45; }
.audio-player-meta  { font-size: 12px; color: rgba(255,255,255,0.35); letter-spacing: 0.4px; }

/* IMPROVEMENT #5: Resume badge */
.at-resume-badge {
    display: inline-flex; align-items: center; gap: 5px;
    margin-top: 9px;
    background: rgba(115,161,91,0.12);
    border: 1px solid rgba(115,161,91,0.32);
    color: #73a15b;
    font-size: 11px; font-weight: 600;
    padding: 4px 10px; border-radius: 20px;
    animation: atFadeIn 0.4s ease;
}
/* IMPROVEMENT #4: No-audio error in player */
.at-no-audio {
    margin-top: 9px;
    background: rgba(231,76,60,0.1);
    border: 1px solid rgba(231,76,60,0.3);
    color: #e74c3c;
    font-size: 12px; font-weight: 600;
    padding: 6px 14px; border-radius: 20px;
    display: inline-block;
}

/* Progress bar */
.audio-player-progress-wrap { width: calc(100% - 56px); margin: 18px 28px 0; }
.audio-player-time-row {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 6px;
}
.audio-player-time-current  { font-size: 11px; font-weight: 600; color: #73a15b; letter-spacing: 0.3px; }
.audio-player-time-remaining { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.3px; }
.audio-player-progress {
    width: 100%; height: 5px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px; overflow: visible;
    position: relative; cursor: pointer;
}
.audio-player-progress-fill {
    width: 0%; height: 100%;
    background: linear-gradient(to right, #73a15b, #a8d08d);
    border-radius: 10px;
    transition: width 0.2s linear;
    position: relative;
}
.audio-player-progress-fill::after {
    content: '';
    position: absolute; right: -5px; top: 50%;
    transform: translateY(-50%);
    width: 11px; height: 11px;
    background: white; border-radius: 50%;
    box-shadow: 0 0 6px rgba(115,161,91,0.8);
    opacity: 0; transition: opacity 0.2s;
}
.audio-player-progress:hover .audio-player-progress-fill::after { opacity: 1; }

/* Speed buttons */
.audio-player-speed-row {
    display: flex; justify-content: center; gap: 6px;
    padding: 12px 28px 4px; width: 100%; background: #0f0f0f;
}
.speed-btn {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.45);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; padding: 4px 10px;
    font-size: 11px; font-weight: 700;
    cursor: pointer; transition: all 0.2s;
    font-family: inherit; letter-spacing: 0.3px;
}
.speed-btn:hover  { background: rgba(115,161,91,0.15); color: #73a15b; border-color: rgba(115,161,91,0.3); }
.speed-btn.active { background: rgba(115,161,91,0.18); color: #73a15b; border-color: #73a15b; }

/* Control buttons */
.audio-player-buttons {
    display: flex; justify-content: center; align-items: center;
    gap: 12px; padding: 14px 28px 26px; width: 100%; background: #0f0f0f;
}
.audio-player-buttons button {
    border: none; cursor: pointer; transition: all 0.2s;
    font-weight: 600; outline: none; font-family: inherit;
}
#playBtn {
    width: 56px; height: 56px; border-radius: 50%;
    background: #73a15b; color: white; font-size: 0;
    display: flex; align-items: center; justify-content: center;
    padding: 0; box-shadow: 0 4px 20px rgba(115,161,91,0.45);
}
#playBtn::after {
    content: '';
    display: block; width: 0; height: 0;
    border-style: solid; border-width: 9px 0 9px 17px;
    border-color: transparent transparent transparent white;
    margin-left: 3px;
}
#playBtn:hover       { transform: scale(1.08); background: #7db362; box-shadow: 0 6px 28px rgba(115,161,91,0.6); }
#playBtn:disabled    { opacity: 0.35; cursor: not-allowed; transform: none; box-shadow: none; }
#pauseBtn {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(255,255,255,0.08); color: white; font-size: 0;
    display: flex; align-items: center; justify-content: center;
    padding: 0; border: 1.5px solid rgba(255,255,255,0.15);
}
#pauseBtn::before, #pauseBtn::after {
    content: ''; display: block;
    width: 4px; height: 16px;
    background: white; border-radius: 2px; margin: 0 2px;
}
#pauseBtn:hover  { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); }
#downloadBtn, #shareBtn {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.6);
    padding: 10px 15px; border-radius: 30px;
    font-size: 12px; border: 1px solid rgba(255,255,255,0.1);
}
#downloadBtn:hover, #shareBtn:hover { background: rgba(255,255,255,0.13); color: white; }
#downloadBtn:disabled { opacity: 0.35; cursor: not-allowed; }

/* Hidden native audio element */
#audioElement { display: none; }

/* ── View All Modal ─────────────────────────────────────────── */
.va-backdrop {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.75); backdrop-filter: blur(6px);
    z-index: 10000; justify-content: center; align-items: center;
}
.va-backdrop.active { display: flex; }
.va-panel {
    background: #0f0f0f; border-radius: 24px;
    width: 92%; max-width: 500px; max-height: 88vh;
    display: flex; flex-direction: column; overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.7);
    animation: vaSlideIn 0.3s ease;
}
.va-head {
    background: linear-gradient(to right, #73a15b, #4c726c);
    padding: 18px 22px;
    display: flex; justify-content: space-between; align-items: center;
    flex-shrink: 0;
}
.va-head h3   { color: white; font-size: 17px; font-weight: 700; margin: 0; letter-spacing: 0.4px; }
.va-head-right { display: flex; align-items: center; gap: 10px; }
.va-count { background: rgba(255,255,255,0.2); color: white; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 20px; }
.va-close {
    background: rgba(255,255,255,0.15); color: white;
    border: none; width: 28px; height: 28px; border-radius: 50%;
    cursor: pointer; font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s; line-height: 1;
}
.va-close:hover { background: rgba(255,255,255,0.3); }
.va-search-wrap {
    padding: 14px 16px 10px; background: #0f0f0f;
    flex-shrink: 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.va-search {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; padding: 10px 14px 10px 38px;
    color: white; font-size: 13px; outline: none;
    font-family: inherit; transition: border 0.2s;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.35)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: 12px center;
}
.va-search:focus      { border-color: rgba(115,161,91,0.5); }
.va-search::placeholder { color: rgba(255,255,255,0.3); }
.va-list { overflow-y: auto; flex: 1; padding: 8px 0; }
.va-list::-webkit-scrollbar       { width: 4px; }
.va-list::-webkit-scrollbar-track { background: transparent; }
.va-list::-webkit-scrollbar-thumb { background: rgba(115,161,91,0.3); border-radius: 4px; }
.va-item {
    display: flex; align-items: center; gap: 14px;
    padding: 13px 18px; cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s;
}
.va-item:hover         { background: rgba(115,161,91,0.08); }
.va-item:last-child    { border-bottom: none; }
.va-item.no-audio      { opacity: 0.5; cursor: default; }
.va-item-num {
    width: 28px; height: 28px;
    background: rgba(115,161,91,0.12); border: 1px solid rgba(115,161,91,0.2);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; color: #73a15b; flex-shrink: 0;
}
.va-item-info { flex: 1; min-width: 0; }
.va-item-title {
    color: white; font-size: 13px; font-weight: 600;
    line-height: 1.4; margin-bottom: 4px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.va-item-meta  { display: flex; align-items: center; gap: 8px; }
.va-item-cat   {
    background: rgba(115,161,91,0.1); color: #73a15b;
    border: 1px solid rgba(115,161,91,0.2);
    padding: 2px 8px; border-radius: 10px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
}
.va-item-date  { color: rgba(255,255,255,0.3); font-size: 11px; }
.va-item-play  {
    width: 32px; height: 32px; border-radius: 50%;
    background: linear-gradient(135deg, #73a15b, #4c726c);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: transform 0.2s;
    box-shadow: 0 2px 10px rgba(115,161,91,0.35);
}
.va-item-play:hover              { transform: scale(1.12); }
.va-item-play::after             { content: ''; width: 0; height: 0; border-style: solid; border-width: 5px 0 5px 9px; border-color: transparent transparent transparent white; margin-left: 2px; }
.va-item.no-audio .va-item-play  { opacity: 0.4; cursor: not-allowed; transform: none; }
.va-loading    { text-align: center; padding: 40px 20px; color: rgba(255,255,255,0.4); font-size: 13px; }
.va-spinner    {
    border: 2px solid rgba(255,255,255,0.1);
    border-top: 2px solid #73a15b;
    border-radius: 50%; width: 28px; height: 28px;
    animation: audio-spin 0.8s linear infinite;
    margin: 0 auto 12px;
}
.va-no-results { text-align: center; padding: 40px 20px; color: rgba(255,255,255,0.35); font-size: 13px; }
.va-footer {
    padding: 12px 18px; background: #0f0f0f;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; justify-content: center; flex-shrink: 0;
}
.va-load-more {
    background: rgba(115,161,91,0.1); color: #73a15b;
    border: 1px solid rgba(115,161,91,0.25);
    padding: 9px 24px; border-radius: 20px;
    font-size: 12px; font-weight: 700; cursor: pointer;
    transition: all 0.2s; font-family: inherit; letter-spacing: 0.3px;
}
.va-load-more:hover    { background: rgba(115,161,91,0.2); border-color: #73a15b; }
.va-load-more:disabled { opacity: 0.4; cursor: default; }

/* ── Share Sheet ────────────────────────────────────────────── */
.audio-share-sheet {
    display: none; position: fixed; inset: 0;
    z-index: 10002; justify-content: center; align-items: flex-end;
}
.audio-share-sheet.active { display: flex; }
.audio-share-backdrop     { position: absolute; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); }
.audio-share-panel {
    position: relative; z-index: 1;
    background: #1a1a1a; border-radius: 24px 24px 0 0;
    width: 100%; max-width: 420px;
    padding: 20px 20px 32px;
    animation: slideUp 0.3s ease;
}
.audio-share-handle    { width: 36px; height: 4px; background: rgba(255,255,255,0.2); border-radius: 4px; margin: 0 auto 18px; }
.audio-share-title     { color: rgba(255,255,255,0.5); font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; text-align: center; margin-bottom: 20px; }
.audio-share-platforms { display: flex; justify-content: center; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.audio-share-btn {
    display: flex; flex-direction: column; align-items: center; gap: 7px;
    cursor: pointer; background: none; border: none;
    color: white; font-size: 11px; font-weight: 600; letter-spacing: 0.3px;
    transition: transform 0.2s;
}
.audio-share-btn:hover { transform: translateY(-3px); }
.audio-share-icon { width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.audio-share-copy {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px; padding: 12px 16px; cursor: pointer; width: 100%;
    transition: background 0.2s;
}
.audio-share-copy:hover      { background: rgba(255,255,255,0.12); }
.audio-share-copy-url  { flex: 1; color: rgba(255,255,255,0.5); font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-family: inherit; }
.audio-share-copy-btn  { color: #73a15b; font-size: 12px; font-weight: 700; white-space: nowrap; }
.audio-share-copy-icon { color: rgba(255,255,255,0.4); flex-shrink: 0; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 480px) {
    .audio-ticker-box   { max-width: 100%; border-radius: 12px; }
    .audio-ticker-head  { padding: 16px 20px; }
    .audio-ticker-head h2 { font-size: 20px; }
    .audio-item-card    { padding: 18px 20px; }
    .audio-modal-panel  { width: 100%; max-width: 100%; border-radius: 20px 20px 0 0; position: fixed; bottom: 0; left: 0; margin: 0; }
    .audio-modal-backdrop { align-items: flex-end; }
    .audio-player-cover { height: 130px; }
    .audio-player-cover-icon { width: 76px; height: 76px; }
    .audio-player-info  { padding: 16px 20px 6px; }
    .audio-player-title { font-size: 14px; }
    .audio-player-progress-wrap { width: calc(100% - 40px); margin: 14px 20px 0; }
    .audio-player-speed-row { gap: 5px; padding: 10px 20px 2px; }
    .speed-btn          { padding: 4px 8px; font-size: 10px; }
    .audio-player-buttons { gap: 10px; padding: 12px 20px 24px; }
    #playBtn, #pauseBtn { width: 48px; height: 48px; }
    #downloadBtn, #shareBtn { padding: 8px 12px; font-size: 11px; }
    .va-panel           { width: 100%; max-width: 100%; border-radius: 20px 20px 0 0; max-height: 92vh; position: fixed; bottom: 0; }
    .va-backdrop        { align-items: flex-end; }
}
@media (max-width: 360px) {
    .audio-player-speed-row { gap: 4px; padding: 8px 14px 2px; }
    .speed-btn              { padding: 3px 7px; font-size: 10px; }
    .audio-player-buttons   { gap: 8px; padding: 10px 14px 22px; }
    #downloadBtn, #shareBtn { padding: 7px 10px; font-size: 11px; }
}