:root {
	--bg-primary: #121212;
	--bg-secondary: #1a1a1a;
	--bg-card: rgba(255, 255, 255, 0.04);
	--bg-card-hover: rgba(255, 255, 255, 0.08);
	--text-primary: #f8f9fa;
	--text-secondary: #DDDDDD;
	--text-muted: #999999;
	--accent: #87CEFA;
	--accent-hover: #5bb8e8;
	--accent-glow: rgba(135, 206, 250, 0.25);
	--border-light: rgba(255, 255, 255, 0.06);
	--border-glass: rgba(255, 255, 255, 0.1);
}

/* ===== Show Hero ===== */
.show-hero {
    padding: 120px 40px 80px;
    background: rgb(0, 35, 72);
    background: linear-gradient(
        135deg,
        rgba(0, 35, 72, 1) 0%,
        rgba(3, 78, 57, 1) 50%,
        rgba(55, 95, 135, 1) 100%
    );
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.show-hero .container {
    max-width: 900px;
}

/* ===== Show Cover ===== */
.show-cover-wrap {
    max-width: 320px;
    margin: 0 auto;
}

.show-cover {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    display: block;
}

/* ===== Show Title ===== */
.show-title {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .show-title {
        font-size: 2rem;
    }
}

/* ===== Air Times ===== */
.show-airtimes {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-bottom: 24px;
}

.show-airtime-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.show-airtime-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* ===== Expandable Description ===== */
.show-desc-wrap {
    margin-bottom: 24px;
}

.show-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

.show-desc-extra {
    display: none;
    margin-top: 12px;
}

.show-desc-extra.open {
    display: block;
}

.show-desc-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 0 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.show-desc-toggle:hover {
    color: var(--accent-hover);
}

.show-desc-toggle svg {
    transition: transform 0.25s ease;
}

.show-desc-toggle svg.rotated {
    transform: rotate(180deg);
}

/* ===== Share & Connect Buttons ===== */
.show-share,
.show-connect {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 12px;
    margin-bottom: 20px;
}

.show-share-label,
.show-connect-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .show-share,
    .show-connect {
        justify-content: center;
    }
    .show-share-label,
    .show-connect-label {
        flex: 0 0 100%;
        text-align: center;
    }
    .show-share-buttons,
    .show-connect-buttons {
        justify-content: center;
    }
}

.show-share-buttons,
.show-connect-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.show-share-btn,
.show-connect-btn {
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.show-share-btn:hover,
.show-connect-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent);
    color: #fff;
}

.show-share-btn::after,
.show-connect-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: #eee;
    font-size: 0.65rem;
    font-weight: 500;
    padding: 3px 7px;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.show-share-btn:hover::after,
.show-connect-btn:hover::after {
    opacity: 1;
}

/* ===== Transcript ===== */
.transcript-body {
    padding: 1.5rem 2rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-height: 70vh;
}

.transcript-body p {
    margin-bottom: 1rem;
}

/* ===== Episodes Section (Home) ===== */
.episodes {
    padding: 0 0 80px;
    background: var(--bg-primary);
}

.episodes-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.episode-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    margin-bottom: 0.5rem;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.episode-row:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glass);
}

.episode-play {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: var(--accent);
    color: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.episode-play:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(135, 206, 250, 0.3);
}

.episode-date {
    flex-shrink: 0;
    width: 64px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

.episode-title {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
}

.episode-duration {
    flex-shrink: 0;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-family: monospace;
    text-align: right;
}

/* ===== Show Page Header ===== */
.show-header {
    padding: 60px 0 140px;
    background: rgb(0, 35, 72);
    background: linear-gradient(90deg, rgba(0, 35, 72, 1) 0%, rgba(3, 78, 57, 1) 35%, rgba(55, 95, 135, 1) 75%, rgba(0, 35, 72, 1) 100%);
    position: relative;
    overflow: hidden;
}

.show-header .container {
    position: relative;
    z-index: 1;
}

.show-art {
    width: 100%;
    max-width: 100px;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .show-art {
        max-width: 200px;
        margin: 0 auto;
        display: block;
    }
}

.show-title-inline {
    font-size: 1.1rem;
    margin-bottom: 0;
    line-height: 1.2;
}

.show-badge-sm {
    font-size: 0.6rem !important;
    padding: 5px 10px !important;
    margin-bottom: 0.35rem !important;
}

.show-name {
    display: block;
    font-size: 0.85rem;
    color: #f5c842;
    margin-bottom: 0.25rem;
    font-weight: 600;
    text-decoration: none;
}

.show-name:hover {
    color: #f5c842;
    text-decoration: underline;
}

.show-name-sm {
    font-size: 0.75rem;
    margin-bottom: 0.15rem;
}

.show-badge {
    display: inline-block;
    padding: 2px 14px;
    background: linear-gradient(135deg, #ff8c00, #ff4500);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

@media (min-width: 992px) {
    .show-badge {
        padding: 6px 14px;
    }
}

.show-meta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.1rem 1rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 992px) {
    .show-meta {
        justify-content: flex-start;
    }
}

.show-id-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.show-id-row .dot {
    color: var(--text-secondary);
    margin: 0 0.4rem;
}

.episode-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

@media (max-width: 767.98px) {
    .show-id-row,
    .episode-actions {
        justify-content: center;
    }
}

.btn-episode-action {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem .9rem;
    border-radius: 50px!important;
    transition: all 0.2s ease;
}

@media (max-width: 991px) {
    .btn-episode-action {
        font-size: 0.75rem;
        padding: 0.2rem 0.75rem;
    }
    .center-tab{
        justify-content: center;
    }
        .show-share,
    .show-connect {
        justify-content: center;
    }
    .show-share-label,
    .show-connect-label {
        flex: 0 0 100%;
        text-align: center;
    }
    .show-share-buttons,
    .show-connect-buttons {
        justify-content: center;
    }
        .show-id-row,
    .episode-actions {
        justify-content: center;
    }
}

.btn-episode-action:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent);
    color: #fff;
}

.show-id-row-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ===== Show Description ===== */
.show-id {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.show-description {
    max-height: 4.2em;
    overflow: hidden;
    transition: max-height 0.4s ease;
    position: relative;
    -webkit-mask-image: linear-gradient(to bottom, black 2.8em, transparent 4.2em);
    mask-image: linear-gradient(to bottom, black 2.8em, transparent 4.2em);
}

.show-description.expanded {
    max-height: 600px;
    -webkit-mask-image: none;
    mask-image: none;
}

.show-description p {
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.show-description.expanded .show-desc-extra {
    display: block;
}

/* ===== Show Links ===== */
.show-links-section {
    padding: 45px 0px;
    background: var(--bg-primary);
    padding-top: 65px;
}

.show-links-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.show-links-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.show-link-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.show-link-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    color: #fff;
}

/* ===== Episode Details ===== */
.ep-details-section {
    padding: 0 0 60px;
    background: var(--bg-primary);
}

.ep-detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.25rem;
    height: 100%;
}

.ep-detail-heading {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ep-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ep-detail-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    line-height: 1.4;
    display: flex;
    gap: 15px;
    flex-direction: row;
    align-items: center;
}

.ep-detail-list li:last-child {
    border-bottom: none;
}

.ep-detail-list--links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.15s ease;
}

.ep-detail-list--links a:hover {
    color: var(--accent);
}

.ch-time {
    display: inline-block;
    min-width: 2.5rem;
    font-family: monospace;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-right: 0.25rem;
    flex-shrink: 0;
    pointer-events: none;
}

.ch-title {
    pointer-events: none;
}

.chapter-wrap{
    opacity: .9;
    cursor: pointer;
}

.chapter-wrap:hover{
    opacity: 1;
}

/* ===== Listen Elsewhere Bar ===== */
.listen-elsewhere {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 17px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.listen-elsewhere-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.listen-elsewhere-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.listen-elsewhere-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.listen-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 100px!important;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.listen-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent);
    color: #fff;
}

@media (max-width: 575.98px) {
    .listen-btn {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
}

/* ===== Episodes List ===== */
.episodes-section {
    padding: 60px 0 80px;
    background: var(--bg-primary);
}

.episodes-heading {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.episodes-count {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.ep-row-play {
    flex-shrink: 0;
    padding: 0.35rem 1.2rem;
    border-radius: 50px;
    border: none;
    background: var(--accent);
    color: #121212;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.ep-row-play:hover {
    background: #aee0ff;
    transform: scale(1.05);
}

.ep-row-date {
    flex-shrink: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    width: 150px;
    flex-shrink: 0;
}

.ep-row-title {
    flex: 1;
    min-width: 0;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ep-row-duration {
    flex-shrink: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.ep-row-icon {
    flex-shrink: 0;
    vertical-align: middle;
    margin-right: 0.25rem;
}

.ep-row-break {
    display: none;
}

.ep-row-save,
.ep-row-more {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ep-row-save:hover,
.ep-row-more:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-secondary);
}

.ep-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.ep-page-btn {
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.ep-page-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
}

.ep-page-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #121212;
}

.ep-page-dots {
    color: var(--text-muted);
    padding: 0 0.2rem;
}

.ep-page-next {
    background: transparent;
    border: none;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0 0.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
    text-decoration: none;
}

.ep-page-next:hover {
    color: #aee0ff;
}

.ep-page-prev {
    background: transparent;
    border: none;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0 0.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
    text-decoration: none;
}

.ep-page-prev:hover {
    color: #aee0ff;
}

@media (max-width: 767.98px) {
    .ep-row-date {
        width: auto;
    }

    .ep-row-title {
        white-space: normal;
        line-height: 1.3;
    }

    .ep-row-save {
        display: none;
    }

    .ep-pagination {
        gap: 0.3rem;
    }

    .ep-page-btn {
        min-width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .ep-page-next {
        font-size: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .episode-row {
        flex-wrap: wrap;
        gap: 0.4rem;
        padding: 1rem 4.5rem 1rem 1rem;
        position: relative;
    }

    .ep-row-play {
        order: 1;
    }

    .ep-row-title {
        order: 2;
        flex: 1;
        min-width: 0;
        font-size: 0.9rem;
        white-space: normal;
        line-height: 1.3;
    }

    .ep-row-break {
        order: 3;
        flex-basis: 100%;
        height: 0;
        display: block;
    }

    .ep-row-date {
        order: 4;
        font-size: 0.75rem;
        margin-left: 5rem;
        width: auto;
    }

    .ep-row-duration {
        order: 5;
        font-size: 0.75rem;
        margin-left: 0.75rem;
    }

    .ep-row-save {
        order: 6;
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 2.5rem;
    }

    .ep-row-more {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0.5rem;
    }
}

/* ===== Audio Player ===== */
.audio-player-section {
    padding: 0px!important;
    position: relative;
    z-index: 2;
    height: 1px!important;
    background: transparent!important;
}

.audio-player {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    position: relative;
    margin-top: -40px;
}

.ap-top {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.ap-scrubber-wrap {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.ap-scrubber {
    margin: 0 0.75rem;
    cursor: pointer;
}

.ap-time-row {
    display: flex;
    justify-content: space-between;
    padding: 0 0.75rem;
}

.ap-time-row .ap-time:first-child {
    color: var(--text-secondary);
    margin-left: -1px;
}

.ap-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
}

.ap-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ap-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.ap-skip {
    width: 36px;
    height: 36px;
    position: relative;
}

.ap-track {
    height: 4px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    position: relative;
}

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

.ap-thumb {
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.ap-track:hover .ap-thumb {
    opacity: 1;
}

.ap-ch-marker {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    z-index: 2;
}

.ap-ch-marker.break {
    background: #2A83BA;
}

.ap-ch-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    white-space: normal;
    width: max-content;
    max-width: min(325px, 90vw);
    overflow-wrap: break-word;
    background: #1a1a1a;
    color: #f8f9fa;
    font-size: 0.65rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.ap-ch-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1a1a1a;
}

.ap-ch-marker:hover .ap-ch-tooltip {
    opacity: 1;
}

.ap-ch-marker:hover {
    transform: translate(-50%, -50%) scale(1.3);
}

.ap-volume-wrap {
    position: relative;
    flex-shrink: 0;
}

.ap-volume-slider {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 0;
    padding: 18px 6px 8px;
    background: transparent;
    border: none;
    border-radius: 8px;
    overflow: visible;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.ap-volume-wrap:hover .ap-volume-slider,
.ap-volume-slider:hover {
    height: 120px;
    opacity: 1;
    pointer-events: auto;
}

.ap-volume-inner {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 8px 6px;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.ap-volume-track {
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    position: relative;
    margin: 0 auto;
    cursor: pointer;
}

.ap-volume-fill {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: var(--accent);
    border-radius: 4px;
}

.ap-volume-thumb {
    position: absolute;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    transform: translate(-50%, 50%);
}

.ap-download {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ap-download:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}


.ap-share-popup {
    display: none;
    position: absolute;
    bottom: calc(100% + 12px);
    right: 0;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 200px;
    z-index: 10;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.ap-share-popup.open {
    display: block;
}

.ap-share-popup-arrow {
    position: absolute;
    top: 100%;
    right: 16px;
    border: 8px solid transparent;
    border-top-color: #1a1a1a;
}

.ap-share-popup-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.5rem 0.5rem;
}

.ap-share-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.5rem 0.75rem;
    background: none;
    border: none;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: left;
}

.ap-share-option:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.ap-share-option svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.ap-share-option:hover svg {
    opacity: 1;
}


@media (max-width: 575.98px) {
    .audio-player-section {
        margin-top: -20px;
        padding-bottom: 20px;
    }

    .audio-player {
        padding: 0.75rem;
    }

    .ap-top {
        flex-wrap: wrap;
        gap: 0.4rem;
    }

    .ap-scrubber-wrap {
        order: -1;
        flex-basis: 100%;
        margin-bottom: 0.25rem;
    }

    .ap-scrubber {
        margin: 0 0.25rem;
    }

    .ap-time-row {
        padding: 0 0.25rem;
    }

    .ap-btn {
        width: 36px;
        height: 36px;
    }

    .ap-skip {
        width: 32px;
        height: 32px;
    }

    .ap-volume-wrap {
        margin-left: auto;
    }
}

.chapter-wrap.break{
    display: none;
}