/* /Components/Layout/MainLayout.razor.rz.scp.css */
@font-face {
    font-family: 'Soopafre';
    src: url('assets/fonts/soopafre.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.page[b-dvcxo98txr] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-dvcxo98txr] {
    flex: 1;
}

.top-row[b-dvcxo98txr] {
    position: fixed;
    padding: .5rem;
    height: 7rem;
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 3vw;
    color: white;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

    .top-row h1[b-dvcxo98txr] {
        font-family: 'Soopafre', sans-serif;
        transition: color 0.5s ease-in-out;
    }

    .top-row[b-dvcxo98txr]  a, .top-row[b-dvcxo98txr]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-dvcxo98txr]  a:hover, .top-row[b-dvcxo98txr]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-dvcxo98txr]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .top-row img[b-dvcxo98txr] {
        height: 50px;
        width: 50px;
    }

.nav-btn:hover svg[b-dvcxo98txr] {
    color: #111;
    fill: #111;
}

.nav-btn:hover .burger-icon span[b-dvcxo98txr] {
    background: #111;
}

.main-footer[b-dvcxo98txr] {
    position: fixed;
    left: 0;
    bottom: 0;
    padding-left: 3vw;
    background: transparent;
    color: white;
    font-size: 1.2em;
    z-index: 100;
    pointer-events: none;
    user-select: none;
    font-weight: bold;
    margin-bottom: 4vh;
    transition: color 0.5s ease-in-out;
}

@media (max-width: 768px) {
    .top-row[b-dvcxo98txr] {
        width: 100vw;
    }
}

@media (max-width: 480px) {
    .main-footer[b-dvcxo98txr] {
        position: fixed;
        margin-bottom: 1vh;
        font-size: .8em;
        margin-left: 2vw;
    }
}

#blazor-error-ui[b-dvcxo98txr] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-dvcxo98txr] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Pages/AlbumView.razor.rz.scp.css */
.container[b-s58mv2l6wb] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    gap: 1vw;
    background-color: var(--album-bg, #535b59);
    transition: background-color 2s cubic-bezier(.34,1.56,.64,1);
}

.album-view[b-s58mv2l6wb] {
    margin-top: 10%;
    margin-bottom: 5%;
    width: 1000px;
    max-width: 100vw;
}

.album-art[b-s58mv2l6wb] {
    width: 484px;
    height: 484px;
    border-radius: 14px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45),
                0 8px 24px rgba(0, 0, 0, 0.25);
    margin-bottom: 20px;
}

.album-wrapper[b-s58mv2l6wb] {
    display: flex;
    align-items: center;
    gap: 2vw; /* Adjust as needed for desired spacing */
}

.album-details[b-s58mv2l6wb] {
    display: flex;
}

.album-info[b-s58mv2l6wb] {
    width: 50%;
}

.album-info h1[b-s58mv2l6wb], h2[b-s58mv2l6wb] {
    margin: 0;
}

.album-description[b-s58mv2l6wb] {
    width: 1000px;
    max-width: 100vw;
    word-break: break-word;
    margin: 0 auto;
    margin-top: 10%;
    text-align: left;
}

.album-description p[b-s58mv2l6wb] {
    line-height: 1.6;
    padding-bottom: 2em;
    padding-top: 2em;
}

.album-description p:last-child[b-s58mv2l6wb] {
    padding-bottom: 0;
}

.meta-info[b-s58mv2l6wb] {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2vw;
}

.track-list[b-s58mv2l6wb] {
    margin-top: 5%;
    text-align: center;
}

.track-list table[b-s58mv2l6wb] {
    width: 80%;
    border-collapse: collapse;
    margin: 0 auto;
    font-size: .9em;
}

.track-list th[b-s58mv2l6wb], .track-list td[b-s58mv2l6wb] {
    padding: 8px 12px;
    flex: 1;
}

.track-list td[b-s58mv2l6wb] {
    padding-top: 2%;
    padding-bottom: 2%;
}

.track-list tr[b-s58mv2l6wb] {
    display: flex;
    width: 100%;
}

.track-list tr:hover[b-s58mv2l6wb] {
    background-color: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    border-radius: 6px;
}

.track-list tr:last-child[b-s58mv2l6wb] {
    border-bottom: none !important;
}

.track-list th[b-s58mv2l6wb] {
    background-color: rgba(255, 255, 255, 0.1);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.78em;
    font-weight: 600;
    opacity: 0.7;
}

.track-list tbody[b-s58mv2l6wb] {
    display: block;
    max-height: 500px;
    overflow: hidden;
    opacity: 1;
    transition: max-height 0.4s cubic-bezier(.4,0,.2,1), opacity 0.4s cubic-bezier(.4,0,.2,1);
}

.track-list tbody.collapsing[b-s58mv2l6wb] {
    max-height: 0;
    opacity: 0;
}

.track-list tbody.expanding[b-s58mv2l6wb] {
    max-height: 500px;
    opacity: 1;
}

.show-more-btn[b-s58mv2l6wb] {
    margin-top: 1em;
    padding: 0.5em 1.8em;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9em;
    font-family: inherit;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.show-more-btn:hover[b-s58mv2l6wb] {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
}

.spotify-link[b-s58mv2l6wb] {
    display: inline-flex;
    align-items: right;
    gap: 0.5em;
    background: linear-gradient(90deg, #1db954 0%, #1ed760 100%);
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    padding: 0.7em 1.6em;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(30,185,84,0.15);
    cursor: pointer;
    transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
    text-decoration: none;
    outline: none;
}

.spotify-link:hover[b-s58mv2l6wb], .spotify-link:focus[b-s58mv2l6wb] {
    background: linear-gradient(90deg, #1ed760 0%, #1db954 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px rgba(30,185,84,0.25);
    text-decoration: none;
}

.spotify-link-container[b-s58mv2l6wb] {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.artist-banner[b-s58mv2l6wb] {
    width: 1000px;
    max-width: 100vw;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
    margin-top: 2%;
    background-size: cover;
    background-position: center;
    display: block;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.album-meta-info[b-s58mv2l6wb] {
    margin-top: 4rem;
    display: flex;
    font-size: 1.2rem;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.album-meta-info p:not(:last-child)[b-s58mv2l6wb]::after {
    content: " \2022 ";
    color: var(--layout-text-color, white);
    margin: 0 1rem 0 1rem;
    font-weight: bold;
    transition: color 0.5s ease-in-out;
}

.iframe-loading-silhouette[b-s58mv2l6wb] {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.08);
    z-index: 10;
}

.spinner[b-s58mv2l6wb] {
    width: 48px;
    height: 48px;
    border: 6px solid #ccc;
    border-top: 6px solid #333;
    border-radius: 50%;
    animation: spin-b-s58mv2l6wb 1s linear infinite;
}

@keyframes spin-b-s58mv2l6wb {
    to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════
   TABLET  (≤ 768px)
═══════════════════════════════════════ */
@media (max-width: 768px) {
    .album-view[b-s58mv2l6wb] {
        width: 90vw;
        margin-top: 8vh;
        margin-bottom: 6vh;
    }

    .album-wrapper[b-s58mv2l6wb] {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 5vh;
        margin-bottom: 5vh;
    }

    .album-art[b-s58mv2l6wb] {
        width: min(360px, 80vw);
        height: min(360px, 80vw);
        margin-bottom: 0;
    }

    .album-info[b-s58mv2l6wb] {
        width: 100%;
    }

    .album-details[b-s58mv2l6wb] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .meta-info[b-s58mv2l6wb] {
        width: 100%;
        justify-content: flex-start;
        gap: 1rem;
        margin-top: 0.5rem;
    }

    .spotify-link-container[b-s58mv2l6wb] {
        width: 100%;
        justify-content: flex-start;
        margin-top: 0.5rem;
    }

    .spotify-link[b-s58mv2l6wb] {
        min-height: 44px;
        padding: 0.6em 1.4em;
        font-size: 0.95rem;
    }

    .album-description[b-s58mv2l6wb] {
        width: 90vw;
        margin-top: 2rem;
    }

    .artist-banner[b-s58mv2l6wb] {
        width: 90vw;
        height: 260px;
        border-radius: 12px;
    }

    .album-meta-info[b-s58mv2l6wb] {
        font-size: 0.95em;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .track-list table[b-s58mv2l6wb] {
        width: 100%;
        margin-bottom: 5vh;
    }
}

/* ═══════════════════════════════════════
   SMALL PHONES  (≤ 480px)
═══════════════════════════════════════ */
@media (max-width: 480px) {
    .album-view[b-s58mv2l6wb] {
        width: 92vw;
        margin-top: 7vh;
        margin-bottom: 8vh;
    }

    .album-art[b-s58mv2l6wb] {
        width: min(280px, 80vw);
        height: min(280px, 80vw);
    }

    .album-details[b-s58mv2l6wb] {
        flex-direction: column;
        align-items: flex-start;
    }

    .meta-info[b-s58mv2l6wb] {
        margin-top: 1vh;
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .spotify-link-container[b-s58mv2l6wb] {
        width: 100%;
        justify-content: flex-start;
    }

    .spotify-link[b-s58mv2l6wb] {
        min-height: 46px;
        width: 100%;
        justify-content: center;
        padding: 0.7em 1em;
        font-size: 1rem;
        border-radius: 12px;
    }

    .album-description[b-s58mv2l6wb] {
        width: 92vw;
        margin-top: 1.5rem;
    }

    .artist-banner[b-s58mv2l6wb] {
        width: 92vw;
        height: 180px;
        border-radius: 10px;
    }

    .album-meta-info[b-s58mv2l6wb] {
        font-size: 0.88em;
        gap: 2rem;
        margin-top: 2rem;
        align-items: flex-start;
    }

    .album-meta-info p:not(:last-child)[b-s58mv2l6wb]::after {
        display: none;
    }

    .track-list table[b-s58mv2l6wb] {
        width: 100%;
        margin-bottom: 5vh;
    }

    .track-list th[b-s58mv2l6wb], .track-list td[b-s58mv2l6wb] {
        font-size: 0.78em;
        padding: 16px 6px;
    }

    .track-list td:first-child[b-s58mv2l6wb] {
        text-align: left;
        padding-left: 4%;
    }
}
/* /Components/Pages/Help.razor.rz.scp.css */
.help-scene[b-hyra955qhj] {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

/* ─── Card ─── */
.help-card[b-hyra955qhj] {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    padding: 2.4rem 2.8rem;
    width: 100%;
    max-width: 520px;
    color: #fff;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ─── Header ─── */
.help-header[b-hyra955qhj] {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.1rem;
}

.help-vinyl-icon[b-hyra955qhj] {
    width: 36px;
    height: 36px;
    opacity: 0.9;
    flex-shrink: 0;
}

.help-header h1[b-hyra955qhj] {
    font-size: 1.85rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
}

/* ─── Description ─── */
.help-desc[b-hyra955qhj] {
    font-size: 0.97rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 1.4rem;
}

/* ─── Divider ─── */
.help-divider[b-hyra955qhj] {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 1.2rem 0;
}

/* ─── Feature list ─── */
.help-features[b-hyra955qhj] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.help-features li[b-hyra955qhj] {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
}

.help-features li svg[b-hyra955qhj] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.6;
}

/* ─── Site link ─── */
.help-site-link[b-hyra955qhj] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.55em 1.3em;
    transition: background 0.2s ease, transform 0.2s cubic-bezier(.34, 1.56, .64, 1),
                box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.help-site-link:hover[b-hyra955qhj] {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ─── Mobile ─── */
@media (max-width: 480px) {
    .help-scene[b-hyra955qhj] {
        padding: 5rem 1rem 2rem;
        align-items: flex-start;
    }

    .help-card[b-hyra955qhj] {
        padding: 1.8rem 1.4rem;
        border-radius: 18px;
    }

    .help-header h1[b-hyra955qhj] {
        font-size: 1.55rem;
    }

    .help-desc[b-hyra955qhj] {
        font-size: 0.9rem;
    }

    .help-features li[b-hyra955qhj] {
        font-size: 0.85rem;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* Prevent text selection and image dragging */
.container[b-4ajzbewum0], .info-container[b-4ajzbewum0], .info-container *[b-4ajzbewum0] {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
}

.container[b-4ajzbewum0] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    padding: 0;
    margin: 0;
    gap: 5vw;
    background-color: var(--album-bg, #2a2a2a);
    transition: background-color 1.5s cubic-bezier(.34, 1.56, .64, 1);
    overflow: hidden;
    position: relative;
}

/* ─── Glass info panel ─── */
.info-container[b-4ajzbewum0] {
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.8rem 2rem;
    width: 35vw;
    min-width: 260px;
    height: auto;
    min-height: 15rem;
    z-index: 1;
    position: relative;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.4rem;
    overflow: hidden;
}

.info-container > h1[b-4ajzbewum0] {
    font-size: 2.2rem;
    margin: 0;
    cursor: pointer;
    line-height: 1.15;
    /* Desktop: single-line with ellipsis */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: opacity 0.2s ease;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.info-container > h1:hover[b-4ajzbewum0] {
    opacity: 0.72;
}

.info-container > h2[b-4ajzbewum0] {
    margin: 0;
    font-weight: 500;
    font-size: 1.05rem;
    opacity: 0.85;
    letter-spacing: 0.02em;
}

.meta-info[b-4ajzbewum0] {
    display: flex;
    font-size: 0.9rem;
    gap: 0;
    border-bottom: 1px solid var(--layout-text-color, rgba(255, 255, 255, 0.35));
    padding-bottom: 0.5rem;
    margin: 0.1rem 0;
    transition: border-bottom-color 0.5s ease-in-out;
    opacity: 0.85;
}

.meta-info p[b-4ajzbewum0] {
    margin-right: 10px;
}

.meta-info p:not(:last-child)[b-4ajzbewum0]::after {
    content: " \2022 ";
    color: var(--layout-text-color, white);
    margin: 0 0 0 0.5rem;
    font-weight: bold;
    transition: color 0.5s ease-in-out;
}

.star-rating[b-4ajzbewum0] {
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
    font-size: 1.8rem;
    color: gold;
    letter-spacing: .2em;
}

/* ─── Action buttons ─── */
.spotify-link-container[b-4ajzbewum0] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    margin-top: 0.25rem;
    flex-wrap: wrap;
}

.spotify-link[b-4ajzbewum0] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4em;
    background: linear-gradient(135deg, #1db954 0%, #1ed760 100%);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: 0.55em 1.3em;
    min-height: 40px;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 16px rgba(30, 185, 84, 0.35);
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(.34, 1.56, .64, 1),
                box-shadow 0.2s ease;
    text-decoration: none;
    outline: none;
    font-family: inherit;
}

.spotify-link:hover[b-4ajzbewum0], .spotify-link:focus[b-4ajzbewum0] {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 24px rgba(30, 185, 84, 0.52);
}

.view-link[b-4ajzbewum0] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4em;
    background: rgba(0, 0, 0, 0.42);
    color: #fff;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50px;
    padding: 0.55em 1.3em;
    min-height: 40px;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(.34, 1.56, .64, 1),
                background 0.2s ease,
                box-shadow 0.2s ease;
    text-decoration: none;
    outline: none;
    backdrop-filter: blur(8px);
    font-family: inherit;
}

.view-link[b-4ajzbewum0]::after {
    display: none;
}

.view-link:hover[b-4ajzbewum0], .view-link:focus[b-4ajzbewum0] {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.38);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

/* ─── Vinyl column (cover + flip hint) ─── */
.vinyl-col[b-4ajzbewum0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.album-carousel[b-4ajzbewum0] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    gap: 5vw;
}

.album-slide-in-right[b-4ajzbewum0] {
    animation: slideInRight-b-4ajzbewum0 0.85s cubic-bezier(.34, 1.56, .64, 1);
}

/* ─── Dot indicators ─── */
.album-indicator[b-4ajzbewum0] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6rem;
    z-index: 10;
}

.dot[b-4ajzbewum0] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--layout-text-color, rgba(255, 255, 255, 0.4));
    opacity: 0.35;
    transition: background 0.3s ease, width 0.3s ease,
                border-radius 0.3s ease, opacity 0.3s ease;
    display: inline-block;
    cursor: pointer;
    /* Invisible padding for larger tap area */
    padding: 6px;
    background-clip: content-box;
    -webkit-background-clip: content-box;
    box-sizing: content-box;
}

.dot.active[b-4ajzbewum0] {
    opacity: 1;
    width: 22px;
    border-radius: 4px;
}

.dot:hover:not(.active)[b-4ajzbewum0] {
    opacity: 0.65;
    outline: 1px solid var(--layout-text-color, #fff);
    outline-offset: 2px;
}

/* ─── Vinyl images ─── */
.album-img[b-4ajzbewum0] {
    position: relative;
    z-index: 2;
    width: 450px;
    height: 450px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s cubic-bezier(.34, 1.56, .64, 1);
    will-change: transform;
    border-radius: 12px;
}

.vinyl-box-img[b-4ajzbewum0] {
    width: 425px;
    height: 425px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.45),
        0 8px 24px rgba(0, 0, 0, 0.25),
        0 2px 0 rgba(255, 255, 255, 0.06);
    background: #111;
    transition: box-shadow 0.3s;
    will-change: transform;
}

/* ─── 3D Flip ─── */
.vinyl-box-flip-container[b-4ajzbewum0] {
    width: 450px;
    height: 450px;
    perspective: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.vinyl-box-flip[b-4ajzbewum0] {
    width: 425px;
    height: 425px;
    position: relative;
    transition: transform 0.7s cubic-bezier(.34, 1.56, .64, 1);
    transform-style: preserve-3d;
    cursor: pointer;
}

.vinyl-box-img.front[b-4ajzbewum0],
.vinyl-box-img.back[b-4ajzbewum0] {
    position: absolute;
    width: 425px;
    height: 425px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.45),
        0 8px 24px rgba(0, 0, 0, 0.25),
        0 2px 0 rgba(255, 255, 255, 0.06);
    background: #111;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: box-shadow 0.3s;
    will-change: transform;
}

.vinyl-box-img.back[b-4ajzbewum0] {
    transform: rotateY(180deg);
}

/* ─── Flip hint ─── */
.flip-hint[b-4ajzbewum0] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    opacity: 0.5;
    letter-spacing: 0.06em;
    font-weight: 500;
    pointer-events: none;
    text-transform: uppercase;
}

/* ─── Animations ─── */
@keyframes slideInRight-b-4ajzbewum0 {
    from { opacity: 0; transform: translateX(50px) scale(0.97); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .album-slide-in-right[b-4ajzbewum0] { animation: none; }
    .vinyl-box-flip[b-4ajzbewum0] { transition: none; }
    .container[b-4ajzbewum0] { transition: none; }
    .dot[b-4ajzbewum0] { transition: none; }
    .spotify-link[b-4ajzbewum0], .view-link[b-4ajzbewum0] { transition: none; }
}

/* ═══════════════════════════════════════════
   TABLET  (≤ 768px)
═══════════════════════════════════════════ */
@media (max-width: 768px) {
    .container[b-4ajzbewum0] {
        flex-direction: column;
        gap: 0;
        padding-bottom: 5rem; /* clear dot indicator area */
        overflow: hidden;
        height: 100vh;
        min-height: 100vh;
        justify-content: center;
    }

    .album-carousel[b-4ajzbewum0] {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        padding: 0 1rem;
        width: 100%;
    }

    /* Vinyl */
    .vinyl-box-flip-container[b-4ajzbewum0] {
        width: 340px;
        height: 340px;
        perspective: 900px;
    }

    .vinyl-box-flip[b-4ajzbewum0] {
        width: 320px;
        height: 320px;
    }

    .vinyl-box-img[b-4ajzbewum0],
    .vinyl-box-img.front[b-4ajzbewum0],
    .vinyl-box-img.back[b-4ajzbewum0] {
        width: 320px;
        height: 320px;
    }

    .album-img[b-4ajzbewum0] {
        width: 320px;
        height: 320px;
    }

    /* Info panel — full width, auto height */
    .info-container[b-4ajzbewum0] {
        width: 88vw;
        max-width: 500px;
        padding: 1.2rem 1.4rem;
        min-height: auto;
        border-radius: 16px;
        gap: 0.5rem;
    }

    .info-container > h1[b-4ajzbewum0] {
        font-size: 1.9rem;
        /* Allow wrap on tablet so long names don't truncate */
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.2;
    }

    .info-container > h2[b-4ajzbewum0] {
        font-size: 1.05rem;
    }

    .meta-info[b-4ajzbewum0] {
        font-size: 0.85rem;
        flex-wrap: wrap;
        margin: 0.2rem 0;
    }

    .star-rating[b-4ajzbewum0] {
        font-size: 1.3rem;
        margin: 0.3rem 0;
    }

    /* Buttons — equal width, centered */
    .spotify-link-container[b-4ajzbewum0] {
        justify-content: center;
        gap: 0.7rem;
        margin-top: 0.4rem;
    }

    .spotify-link[b-4ajzbewum0],
    .view-link[b-4ajzbewum0] {
        flex: 1;
        min-height: 44px;
        font-size: 0.9rem;
        justify-content: center;
    }

    /* Dots — fixed so overflow:hidden on container never clips them */
    .album-indicator[b-4ajzbewum0] {
        position: fixed;
        bottom: 1.8rem;
        gap: 0.3rem;
    }

    .dot[b-4ajzbewum0] {
        width: 8px;
        height: 8px;
        padding: 8px;
    }

    .dot.active[b-4ajzbewum0] {
        width: 20px;
    }
}

/* ═══════════════════════════════════════════
   SMALL PHONES  (≤ 480px)
═══════════════════════════════════════════ */
@media (max-width: 480px) {
    .container[b-4ajzbewum0] {
        padding-bottom: 4.5rem;
        gap: 0;
    }

    .album-carousel[b-4ajzbewum0] {
        gap: 1rem;
        padding: 0 0.75rem;
    }

    /* Smaller vinyl so info panel has room */
    .vinyl-box-flip-container[b-4ajzbewum0] {
        width: 270px;
        height: 270px;
        perspective: 700px;
    }

    .vinyl-box-flip[b-4ajzbewum0] {
        width: 255px;
        height: 255px;
    }

    .vinyl-box-img[b-4ajzbewum0],
    .vinyl-box-img.front[b-4ajzbewum0],
    .vinyl-box-img.back[b-4ajzbewum0] {
        width: 255px;
        height: 255px;
    }

    .album-img[b-4ajzbewum0] {
        width: 255px;
        height: 255px;
    }

    .vinyl-col[b-4ajzbewum0] {
        gap: 0.5rem;
    }

    /* Info panel */
    .info-container[b-4ajzbewum0] {
        width: 92vw;
        padding: 1rem 1.1rem;
        gap: 0.35rem;
    }

    .info-container > h1[b-4ajzbewum0] {
        font-size: 1.55rem;
        -webkit-line-clamp: 2;
    }

    .info-container > h2[b-4ajzbewum0] {
        font-size: 0.95rem;
        opacity: 0.8;
    }

    .meta-info[b-4ajzbewum0] {
        font-size: 0.78rem;
        margin: 0.15rem 0;
    }

    .star-rating[b-4ajzbewum0] {
        font-size: 1.1rem;
        margin: 0.15rem 0;
    }

    /* Full-width stacked buttons on very small screens */
    .spotify-link-container[b-4ajzbewum0] {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
        margin-top: 0.3rem;
    }

    .spotify-link[b-4ajzbewum0],
    .view-link[b-4ajzbewum0] {
        flex: none;
        width: 100%;
        min-height: 46px;
        font-size: 0.92rem;
        border-radius: 12px;
        padding: 0.7em 1em;
    }

    /* Flip hint */
    .flip-hint[b-4ajzbewum0] {
        font-size: 0.68rem;
        gap: 0.25rem;
    }

    /* Dots */
    .album-indicator[b-4ajzbewum0] {
        position: fixed;
        bottom: 4rem;
        gap: 0.2rem;
    }

    .dot[b-4ajzbewum0] {
        width: 7px;
        height: 7px;
        padding: 7px;
    }

    .dot.active[b-4ajzbewum0] {
        width: 16px;
    }
}

/* ═══════════════════════════════════════════
   VERY SMALL PHONES  (≤ 360px)
═══════════════════════════════════════════ */
@media (max-width: 360px) {
    .container[b-4ajzbewum0] {
        padding-bottom: 4rem;
    }

    .vinyl-box-flip-container[b-4ajzbewum0] {
        width: 200px;
        height: 200px;
    }

    .vinyl-box-flip[b-4ajzbewum0] {
        width: 185px;
        height: 185px;
    }

    .vinyl-box-img[b-4ajzbewum0],
    .vinyl-box-img.front[b-4ajzbewum0],
    .vinyl-box-img.back[b-4ajzbewum0] {
        width: 185px;
        height: 185px;
    }

    .album-img[b-4ajzbewum0] {
        width: 185px;
        height: 185px;
    }

    .info-container[b-4ajzbewum0] {
        width: 92vw;
        padding: 0.8rem 0.9rem;
    }

    .info-container > h1[b-4ajzbewum0] {
        font-size: 1.3rem;
        -webkit-line-clamp: 2;
    }

    .info-container > h2[b-4ajzbewum0] { font-size: 0.85rem; }
    .meta-info[b-4ajzbewum0] { font-size: 0.72rem; }
    .star-rating[b-4ajzbewum0] { font-size: 0.95rem; }

    .spotify-link[b-4ajzbewum0],
    .view-link[b-4ajzbewum0] {
        min-height: 42px;
        font-size: 0.85rem;
    }
}
/* /Components/Pages/Ranking.razor.rz.scp.css */
/* ─── Base scene ──────────────────────────────────────── */
.rank-scene[b-26lm918ctc] {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #0d0d0d;
    outline: none;
    user-select: none;
    -webkit-user-select: none;
}

/* ─── Blurred background art ──────────────────────────── */
.rank-bg[b-26lm918ctc] {
    position: absolute;
    inset: -60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(70px) saturate(1.6) brightness(0.7);
    transform: scale(1.15);
    opacity: 0.55;
    transition: background-image 0.6s ease, opacity 0.6s ease;
    will-change: transform;
}

/* ─── Dark cinematic overlay ──────────────────────────── */
.rank-bg-overlay[b-26lm918ctc] {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.60) 0%,
            rgba(0, 0, 0, 0.25) 45%,
            rgba(0, 0, 0, 0.75) 100%);
    pointer-events: none;
}

/* ─── Hero: art centred + info ───────────────────────── */
.rank-hero[b-26lm918ctc] {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* art always in centre column */
    align-items: center;
    width: 100%;
    max-width: 1100px;
    padding: 0 3rem;
    padding-bottom: 6rem; /* clear nav bar */
    animation: heroIn-b-26lm918ctc 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroIn-b-26lm918ctc {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ─── Giant ghost rank numeral (inside art-col, in front of art) */
.rank-numeral[b-26lm918ctc] {
    position: absolute;
    font-size: clamp(7rem, 18vw, 16rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.55);
    text-shadow: 0 2px 32px rgba(0, 0, 0, 0.8), 0 0 60px rgba(0, 0, 0, 0.6);
    left: 0;
    bottom: -0.75rem;
    transform: translateX(-100%) translateX(3.5rem);
    z-index: 3; /* in front of .rank-art */
    pointer-events: none;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

/* Medal numeral treatments */
.rank-numeral.medal-gold[b-26lm918ctc] {
    background: linear-gradient(160deg, #7a4f1e 0%, #c9853d 25%, #f2c96e 50%, #f7e5a2 62%, #f2c96e 75%, #c9853d 90%, #7a4f1e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    opacity: 1;
}

.rank-numeral.medal-silver[b-26lm918ctc] {
    background: linear-gradient(160deg, #555 0%, #a8a8a8 25%, #e8e8e8 50%, #fff 62%, #e8e8e8 75%, #a8a8a8 90%, #555 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    opacity: 1;
}

.rank-numeral.medal-bronze[b-26lm918ctc] {
    background: linear-gradient(160deg, #4a2208 0%, #a0551a 25%, #d4863c 50%, #eba96e 62%, #d4863c 75%, #a0551a 90%, #4a2208 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    opacity: 1;
}


/* ─── Art column (grid centre) ───────────────────────── */
.rank-art-col[b-26lm918ctc] {
    grid-column: 2;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.rank-art[b-26lm918ctc] {
    position: relative;
    z-index: 2; /* in front of .rank-numeral */
    width: clamp(240px, 28vw, 380px);
    height: clamp(240px, 28vw, 380px);
    object-fit: cover;
    border-radius: 18px;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.65),
        0 12px 32px rgba(0, 0, 0, 0.45);
    cursor: pointer;
    display: block;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.3s ease;
    -webkit-user-drag: none;
}

.rank-art:hover[b-26lm918ctc] {
    transform: scale(1.035) translateY(-4px);
    box-shadow:
        0 52px 120px rgba(0, 0, 0, 0.75),
        0 16px 40px rgba(0, 0, 0, 0.5);
}


/* ─── Info column (grid right) ───────────────────────── */
.rank-info-col[b-26lm918ctc] {
    grid-column: 3;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-left: 2.8rem;
    max-width: 340px;
    z-index: 2;
}

.rank-label[b-26lm918ctc] {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 0.3rem;
}

.rank-album-name[b-26lm918ctc] {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.rank-album-name:hover[b-26lm918ctc] {
    opacity: 0.75;
}

.rank-artist[b-26lm918ctc] {
    font-size: clamp(0.9rem, 1.4vw, 1.1rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.58);
    margin: 0 0 0.5rem;
    letter-spacing: 0.01em;
}

.rank-best-track[b-26lm918ctc] {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.rank-rating[b-26lm918ctc] {
    width: 100%;
    margin-top: 0.6rem;
}

.rank-rating[b-26lm918ctc]  .rating-wrapper {
    width: 100%;
}

/* ─── Bottom navigation ──────────────────────────────── */
.rank-nav[b-26lm918ctc] {
    position: absolute;
    bottom: 2.2rem;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
}

.rank-nav-btn[b-26lm918ctc] {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.55em 1.35em;
    min-height: 44px;
    cursor: pointer;
    letter-spacing: 0.05em;
    font-family: inherit;
    transition: background 0.2s ease, transform 0.18s ease, box-shadow 0.2s ease,
                opacity 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.rank-nav-btn:hover:not(:disabled)[b-26lm918ctc] {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.32);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.rank-nav-btn:active:not(:disabled)[b-26lm918ctc] {
    transform: translateY(0) scale(0.97);
}

.rank-nav-btn:disabled[b-26lm918ctc] {
    opacity: 0.25;
    cursor: not-allowed;
    pointer-events: none;
}

.rank-counter[b-26lm918ctc] {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.06em;
    min-width: 56px;
    text-align: center;
}

.rank-sep[b-26lm918ctc] {
    opacity: 0.35;
    margin: 0 3px;
}

/* ─── Reduced motion ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .rank-hero[b-26lm918ctc] { animation: none; }
    .rank-bg[b-26lm918ctc] { transition: none; }
    .rank-art[b-26lm918ctc] { transition: none; }
}

/* ═══════════════════════════════════════════════════════
   TABLET  (≤ 900px)
   Switch to stacked: numeral above art, info below
═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .rank-hero[b-26lm918ctc] {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 4rem 1rem 7rem;
        text-align: center;
        width: 100%;
        max-width: none;
    }

    /* On tablet/mobile the numeral peeks above the art */
    .rank-numeral[b-26lm918ctc] {
        font-size: clamp(5rem, 22vw, 9rem);
        left: 50%;
        bottom: auto;
        top: -6rem;
        transform: translateX(-50%);
        z-index: 3;
        white-space: nowrap;
    }

    .rank-art-col[b-26lm918ctc] {
        z-index: 2;
    }

    .rank-art[b-26lm918ctc] {
        width: clamp(200px, 55vw, 300px);
        height: clamp(200px, 55vw, 300px);
        border-radius: 14px;
    }

    .rank-info-col[b-26lm918ctc] {
        display: grid;
        grid-template-rows: 1.2rem 3.5rem 1.4rem 1.2rem 2.4rem;
        gap: 0.3rem;
        justify-items: center;
        align-items: center;
        grid-column: auto;
        padding-left: 0;
        max-width: 80vw;
        margin-top: 1.4rem;
    }

    .rank-rating[b-26lm918ctc] {
        margin-top: 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .rank-rating[b-26lm918ctc]  .rating-wrapper {
        width: 180px;
    }

    .rank-album-name[b-26lm918ctc] {
        font-size: clamp(1.4rem, 5vw, 1.9rem);
        text-align: center;
        overflow: hidden;
        align-self: center;
        width: 100%;
    }

    .rank-artist[b-26lm918ctc] {
        text-align: center;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        align-self: center;
        width: 100%;
    }

    .rank-nav[b-26lm918ctc] {
        gap: 1.2rem;
        bottom: 3.5rem; /* clear the samkey.uk footer */
    }

    /* Hide scroll hint on mobile */
    .rank-scene[b-26lm918ctc]::after {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════
   SMALL PHONES  (≤ 480px)
═══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .rank-hero[b-26lm918ctc] {
        padding: 10rem 1rem 6rem;
        gap: 0;
    }

    .rank-numeral[b-26lm918ctc] {
        font-size: clamp(4.5rem, 28vw, 7rem);
        top: -4.5rem;
    }

    .rank-art[b-26lm918ctc] {
        width: clamp(170px, 58vw, 240px);
        height: clamp(170px, 58vw, 240px);
        border-radius: 12px;
    }

    .rank-info-col[b-26lm918ctc] {
        max-width: 88vw;
        margin-top: 1.1rem;
    }

    .rank-album-name[b-26lm918ctc] {
        font-size: clamp(1.2rem, 5.5vw, 1.6rem);
    }

    .rank-artist[b-26lm918ctc] {
        font-size: 0.88rem;
    }

    .rank-nav[b-26lm918ctc] {
        gap: 0.9rem;
        bottom: 1.4rem;
    }

    .rank-nav-btn[b-26lm918ctc] {
        min-height: 46px;
        font-size: 0.8rem;
        padding: 0.6em 1.1em;
    }

    .rank-counter[b-26lm918ctc] {
        font-size: 0.78rem;
        min-width: 46px;
    }
}
/* /Components/Shared/Rating.razor.rz.scp.css */
.rating-wrapper[b-zwj29g7lya] {
    width: 55%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rating-bar[b-zwj29g7lya] {
    flex: 1;
    height: 6px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background-color: rgba(255, 255, 255, 0.2);
}

.rating-value[b-zwj29g7lya] {
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0;
    min-width: 2.2rem;
}

.rating-bar-fill[b-zwj29g7lya] {
    height: 100%;
    transition: width 0.4s cubic-bezier(.34, 1.56, .64, 1), background-color 0.3s ease;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .rating-wrapper[b-zwj29g7lya] {
        width: 100%; /* Full width on mobile — bar stretches properly */
        gap: 0.6rem;
    }
}

@media (max-width: 480px) {
    .rating-bar[b-zwj29g7lya] {
        height: 5px;
    }

    .rating-value[b-zwj29g7lya] {
        font-size: 0.9rem;
        min-width: 2rem;
    }
}
/* /Components/Shared/Search.razor.rz.scp.css */
.nav-btn[b-9iwn282vxq] {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    outline: none;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 44px;
    min-width: 44px;
    height: 44px;
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.nav-btn:hover[b-9iwn282vxq] {
    background: rgba(255, 255, 255, 0.26);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    transform: translateY(-1px);
}

.nav-btn:active[b-9iwn282vxq] {
    transform: translateY(0) scale(0.96);
}

.search-anim-row[b-9iwn282vxq] {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 2147483647;
    width: auto;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-start;
}

.search-bar-container[b-9iwn282vxq] {
    position: relative;
    overflow: hidden;
    width: 0;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    background: rgba(18, 18, 18, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    height: 44px;
    margin-left: 8px;
    margin-right: 0;
}

.search-bar-container.expanded[b-9iwn282vxq] {
    width: min(40vw, 500px);
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.search-bar-container.shrinking[b-9iwn282vxq] {
    width: 0;
    transition: width 0.35s cubic-bezier(0.4,0,0.2,1);
}

.search-bar[b-9iwn282vxq] {
    width: 100%;
    min-width: 120px;
    height: 100%;
    padding: 0 1.2rem;
    border-radius: 12px;
    border: none;
    font-size: 1rem;
    outline: none;
    background: transparent;
    color: #fff;
    font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    letter-spacing: 0.01em;
}

.search-bar[b-9iwn282vxq]::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.shrinking[b-9iwn282vxq] {
    animation: search-bar-shrink-b-9iwn282vxq 0.35s cubic-bezier(0.4,0,0.2,1) forwards !important;
}

@keyframes search-bar-expand-b-9iwn282vxq {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes search-bar-shrink-b-9iwn282vxq {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

@keyframes autocomplete-fade-slide-b-9iwn282vxq {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes autocomplete-li-in-b-9iwn282vxq {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes autocomplete-li-out-b-9iwn282vxq {
    from {
        opacity: 1;
        transform: translateX(0);
        height: 4vh;
    }
    to {
        opacity: 0;
        transform: translateX(20px);
        height: 0;
        margin: 0;
        padding: 0;
    }
}

@keyframes autocomplete-fade-slide-out-b-9iwn282vxq {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.autocomplete-list[b-9iwn282vxq] {
    position: absolute;
    width: 100%;
    top: 100%;
    max-height: 440px;
    z-index: 2147483647;
    overflow-y: auto;
    background: rgba(18, 18, 18, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: 14px;
    margin-top: 8px;
    animation: autocomplete-fade-slide-b-9iwn282vxq 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.autocomplete-list li[b-9iwn282vxq] {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.6rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: transparent;
    transition: background 0.15s ease;
    cursor: pointer;
    min-height: 58px;
}

.autocomplete-list li:last-child[b-9iwn282vxq] {
    border-bottom: none;
}

.autocomplete-list li:hover[b-9iwn282vxq] {
    background: rgba(255, 255, 255, 0.08);
}

.autocomplete-list li img[b-9iwn282vxq] {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    background: #222;
    flex-shrink: 0;
}

.autocomplete-list li .album-info[b-9iwn282vxq] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.autocomplete-list li .album-title[b-9iwn282vxq] {
    font-weight: bold;
    color: #fff;
    font-size: 1.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete-list li .album-artist[b-9iwn282vxq] {
    color: #bbb;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete-list li.removing[b-9iwn282vxq] {
    animation: autocomplete-li-out-b-9iwn282vxq 0.2s cubic-bezier(0.4,0,0.2,1) forwards;
}

.autocomplete-list.closing[b-9iwn282vxq] {
    animation: autocomplete-fade-slide-out-b-9iwn282vxq 0.25s cubic-bezier(0.4,0,0.2,1) forwards;
}

.clear-search-btn[b-9iwn282vxq] {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.5rem;
    height: 2rem;
    width: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    margin: 0;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.clear-search-btn span[b-9iwn282vxq] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    line-height: 2rem;
}

.clear-search-btn:hover[b-9iwn282vxq] {
    opacity: 1;
}

.back-btn[b-9iwn282vxq] {
    position: fixed;
    left: 16px;
    top: 16px;
    z-index: 2147483647;
}

@media (max-width: 480px) {
    .search-anim-row[b-9iwn282vxq] {
        top: 14px;
        right: 14px;
        gap: 6px;
        position: fixed;
    }

    /* Break the expanded bar out of the flex row so it can span freely.
       Left edge clears the back button (14px margin + 40px btn + 8px gap = 62px). */
    .search-bar-container.expanded[b-9iwn282vxq] {
        position: fixed;
        left: 62px;
        right: 14px;
        top: 14px;
        width: auto !important;
        max-width: none !important;
        height: 40px;
        margin-left: 0;
        flex: none;
    }

    /* Full-viewport-width autocomplete, anchored below the nav bar */
    .autocomplete-list[b-9iwn282vxq] {
        position: fixed;
        left: 12px;
        right: 12px;
        top: 68px; /* 14px top + 40px bar height + 14px gap */
        width: auto;
        margin-top: 0;
        max-height: 60vh;
    }

    .nav-btn[b-9iwn282vxq] {
        width: 40px;
        min-width: 40px;
        height: 40px;
        margin-left: 6px;
        flex-shrink: 0;
    }

    .nav-btn svg[b-9iwn282vxq] {
        width: 20px;
        height: 20px;
    }

    .back-btn[b-9iwn282vxq] {
        position: fixed;
        left: 14px;
        top: 14px;
    }
}
