   /* ================================================================ */
    /* MP3 DOWNLOAD PAGE STYLES (NEW DESIGN) */
    /* ================================================================ */
    .page-wrapper {
        margin: 12px auto 40px;
        width: calc(100% - 24px);
        max-width: 1000px; /* Expand for two column grid */
        box-sizing: border-box;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0px;
    }
    @media (min-width: 900px) {
        .page-wrapper {
            grid-template-columns: minmax(0, 580px) 380px;
            grid-template-rows: auto;
            justify-content: center;
            align-items: start;
            column-gap: 20px;
        }
        .dl-left-column  { grid-column: 1; display: flex; flex-direction: column; gap: 12px; }
        .dl-right-column { grid-column: 2; }
    }
    /* Mobile: left column is just a transparent passthrough */
    .dl-left-column {
        display: contents; /* renders children as if wrapper doesn't exist on mobile */
    }
    @media (min-width: 900px) {
        .dl-left-column {
            display: flex; /* override back to flex on desktop */
        }
        /* Remove individual margins now handled by the flex gap */
        .dl-left-column .song-download-card  { margin-bottom: 0; }
        .dl-left-column .download-btn-group   { margin-bottom: 0 !important; }
        .dl-left-column .about-song-section   { margin-top: 0; margin-bottom: 0; }
    }
    .song-download-card {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        border-radius: 30px;
        overflow: hidden;
        margin-bottom: 12px;
        background-color: #3060FF;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .song-download-cover {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        object-fit: cover;
    }
    .song-download-gradient {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: linear-gradient(to bottom, rgba(48, 96, 255, 0) 20%, rgba(48, 96, 255, 0.7) 60%, rgba(48, 96, 255, 1) 100%);
    }
    .song-top-stats {
        position: absolute;
        top: 16px; right: 16px;
        display: flex;
        gap: 12px;
        z-index: 2;
    }
    .stat-pill {
        background-color: rgba(0, 0, 0, 0.75);
        color: white;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 6px;
        backdrop-filter: blur(4px);
    }
    .stat-pill svg {
        width: 12px; height: 12px;
    }
    .song-bottom-content {
        position: absolute;
        bottom: 0; left: 0;
        width: 100%;
        padding: 24px;
        box-sizing: border-box;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    .play-btn-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 12px;
    }
    .custom-play-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: #000;
        color: #fff;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: transform 0.2s;
        flex-shrink: 0;
        padding: 0;
    }
    .custom-play-btn:active {
        transform: scale(0.95);
    }
    .custom-play-btn svg {
        width: 20px;
        height: 20px;
        fill: transparent;
        margin-left: 2px; /* play icon optical alignment */
    }
    .custom-play-btn.playing svg {
        margin-left: 0; /* pause icon is symmetrical */
    }
    .time-display {
        background-color: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(8px);
        padding: 4px 10px;
        border-radius: 12px;
        color: white;
        font-size: 11px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 2px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0;
        transform: translateX(10px);
        transition: opacity 0.4s ease, transform 0.4s ease;
        pointer-events: none;
    }
    .song-bottom-content.active .time-display {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
    }
    .progress-bar-container {
        width: 100%;
        max-height: 0;
        opacity: 0;
        margin-bottom: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.3s ease, margin-bottom 0.4s ease;
    }
    .song-bottom-content.active .progress-bar-container {
        max-height: 30px;
        opacity: 1;
        margin-bottom: 16px;
    }
    /* Custom Range Slider */
    .custom-range {
        appearance: none;
        width: 100%;
        height: 4px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
        outline: none;
        padding: 0;
        margin: 0;
        cursor: pointer;
    }
    .custom-range::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #fff;
        cursor: pointer;
        transition: transform 0.1s;
    }
    .custom-range::-webkit-slider-thumb:hover {
        transform: scale(1.3);
    }
    .song-name-display {
        color: white;
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 6px 0;
        line-height: 1.3;
        display: -webkit-box;
        line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .artist-name-display {
        color: rgba(255, 255, 255, 0.9);
        font-size: 14px;
        margin: 0;
        font-weight: 400;
    }
    .artist-name-display a {
        color: white;
        text-decoration: underline;
        text-underline-offset: 3px;
        transition: opacity 0.2s;
    }
    .artist-name-display a:hover {
        opacity: 0.8;
    }
    /* Button Group */
    .download-btn-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 12px;
    }
    .action-btn {
        width: 100%;
        border: none;
        border-radius: 30px;
        padding: 18px 24px;
        font-size: 16px;
        font-weight: 600;
        font-family: 'Google Sans', system-ui, sans-serif;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        position: relative;
        text-decoration: none;
        transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
        box-sizing: border-box;
    }
    .action-btn:active {
        transform: scale(0.98);
    }
    /* Main Download — Geesick Blue */
    .btn-download {
        background-color: var(--nav-btn-bg, #3060FF);
        color: white;
    }
    .btn-download:hover {
        background-color: var(--nav-btn-hover, #224DDB);
    }
    /* Karaoke — Purple/Indigo */
    .btn-karaoke {
        background-color: #7C3AED;
        color: white;
    }
    .btn-karaoke:hover {
        background-color: #6D28D9;
    }
    /* Go to Original — Rose/Red */
    .btn-original {
        background-color: #E11D48;
        color: white;
    }
    .btn-original:hover {
        background-color: #BE123C;
    }
    .action-btn-icon {
        position: absolute;
        right: 24px;
        top: calc(50% - 10px);
        width: 20px;
        height: 20px;
    }
    .action-btn.downloading {
        opacity: 0.8;
        cursor: not-allowed;
    }
    .spin {
        animation: spin 1s linear infinite;
    }
    @keyframes spin {
        100% { transform: rotate(360deg); }
    }
            .content-container {
            margin-top: 140px;
        }
         /* About Section */
        .about-song-section {
            background: #fff;
            border-radius: 30px;
            padding: 20px;
            box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.1);
            margin-bottom: 16px;
        }
        .about-song-section h2 {
            font-size: 16px;
            font-weight: 700;
            color: #222;
            margin: 0 0 10px;
        }
        .about-song-section p {
            font-size: 14px;
            color: #555;
            line-height: 1.7;
            margin: 0;
        }
        .song-info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-top: 16px;
        }
        .song-info-item {
            background: rgb(247 247 247);
            border-radius: 12px;
            padding: 14px 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .song-info-label {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #999;
            display: flex;
            align-items: center;
        }
        .song-info-label i, .song-info-label svg {
            width: 14px;
            height: 14px;
            stroke-width: 2.5px;
        }
        .song-info-value {
            font-size: 14px;
            font-weight: 600;
            color: #222;
        }
        .song-info-value a {
            color: #222;
            text-decoration: none;
        }
    /* ================================================================ */
    /* RIGHT COLUMN (ARTIST SONGS SIDEBAR) LAYOUT */
    /* ================================================================ */
    .dl-right-column {
        display: flex;
        flex-direction: column;
    }
    @media (min-width: 900px) {
        .dl-right-column {
            margin-top: 0;
        }
    }
    /* Simple override to ensure sidebar cards have padding and spacing matching the sidebar look */
    .dl-right-column .songs-wrapper,
    .dl-left-column .songs-wrapper {
        background: #fff;
        border-radius: 30px;
        padding: 10px;
        margin: 0 0 12px 0;
        width: 100%;
        box-sizing: border-box;
        box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.1);
    }
    .dl-right-column .container-header,
    .dl-left-column .songs-wrapper .container-header {
        margin-bottom: 10px;
    }
    .dl-right-column .list2,
    .dl-left-column .songs-wrapper .list2 {
        grid-template-columns: 1fr;
    }
    .dl-right-column .item,
    .dl-left-column .songs-wrapper .item {
        background-color: #f7f7f7; /* Light wash for better contrast */
        min-width: 0;
    }
    .dl-right-column .song-info,
    .dl-left-column .songs-wrapper .song-info {
        min-width: 0;
        flex: 1;
    }
    .dl-right-column .song-info h3,
    .dl-right-column .song-info p,
    .dl-left-column .songs-wrapper .song-info h3,
    .dl-left-column .songs-wrapper .song-info p {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
    }
    .dl-right-column .item:hover,
    .dl-left-column .songs-wrapper .item:hover {
        background-color: #f7f7f7;
    }