/* @font-face {
    font-family: 'ArafatNoyakhali';
    src: url('/static/fonts/FNArafatNoakhali-Regular.ttf') format('truetype');
} */

@font-face {
    font-family: 'Mangalik';
    src: url('/static/fonts/Mangalik Unicode.ttf') format('truetype');
}

html, body {
    margin: 0;
    font-family: sans-serif;
    background: #0a0510;
    color: #fce8f3;
    overflow-x: hidden;
    height: 100%;
}

/* =====================================================
   BACKGROUND
   ===================================================== */

#blue_earth {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
    /* filter: blur(2px);
    transform: scale(1.03); */
}

#star-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2;
    pointer-events: none;
    opacity: 0.60;
}

/* =====================================================
   PLAYER AREA
   ===================================================== */

#player-area {
    position: fixed;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    width: min(760px, 72vw);
    height: 155px;
    z-index: 20;
    pointer-events: none;
    overflow: visible;
}

/* =====================================================
   SOUNDWAVE
   ===================================================== */

#sound-overlay {
    position: absolute;
    left: 0;
    bottom: 120px;
    width: 100%;
    height: 75px;
    display: block;
    z-index: 6;
    pointer-events: none;
    opacity: 0.9;
    overflow: visible;
}

/* =====================================================
   CUSTOM MUSIC PLAYER
   ===================================================== */

#custom-player {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 16px 10px;
    border-radius: 18px;
    background: rgba(8, 18, 32, 0.08);
    border: 1px solid rgba(150, 220, 255, 0.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.38);
    z-index: 5;
    pointer-events: auto;
}

/* =====================================================
   SONG INFORMATION
   ===================================================== */

#player-song-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 0;
    margin-bottom: 6px;
}

#player-cover {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 9px;
    border: 1px solid rgba(180, 225, 255, 0.22);
    box-shadow: 0 0 14px rgba(60, 175, 255, 0.25);
}

#player-song-text {
    min-width: 0;
    text-align: left;
}

#player-song-title {
    color: #f4fbff;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#player-song-artist {
    margin-top: 2px;
    color: rgba(190, 220, 240, 0.70);
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* =====================================================
   PROGRESS
   ===================================================== */

#player-progress-container {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

#current-time, #duration {
    min-width: 34px;
    color: rgba(210, 235, 250, 0.68);
    font-size: 10px;
    text-align: center;
}

#progress-bar {
    flex: 1;
    width: 100%;
    height: 4px;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    cursor: pointer;
}

/* Chrome / Edge */

#progress-bar::-webkit-slider-runnable-track {
    height: 4px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
}

#progress-bar::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 11px;
    height: 11px;
    margin-top: -3.5px;
    border: none;
    border-radius: 50%;
    background: #eaf8ff;
    box-shadow: 0 0 10px rgba(70, 180, 255, 0.90);
    cursor: pointer;
}

/* Firefox */

#progress-bar::-moz-range-track {
    height: 4px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
}

#progress-bar::-moz-range-thumb {
    width: 11px;
    height: 11px;
    border: none;
    border-radius: 50%;
    background: #eaf8ff;
    box-shadow: 0 0 10px rgba(70, 180, 255, 0.90);
    cursor: pointer;
}

/* =====================================================
   PLAYER ICONS
   ===================================================== */

.player-icon {
    width: 18px;
    height: 18px;
    display: block;
    fill: none !important;
    stroke: #eaf8ff !important;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.95;
    pointer-events: none;
}

.icon-control {
    position: relative;
    color: #eaf8ff !important;
}

.icon-control:hover {
    color: #ffffff !important;
}

.icon-control:hover .player-icon {
    stroke: #ffffff !important;
}

/* =====================================================
   REPEAT
   ===================================================== */

#repeat-btn {
    position: relative;
}

#repeat-one {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 8px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    pointer-events: none;
    text-shadow: 0 0 5px rgba(100, 200, 255, 0.8);
}

#repeat-btn.is-repeat #repeat-one {
    display: block;
}

#repeat-btn.is-repeat {
    color: #9edfff !important;
    background: rgba(70, 175, 255, 0.14);
    box-shadow: 0 0 16px rgba(70, 175, 255, 0.22);
}

#repeat-btn.is-repeat .player-icon {
    stroke: #9edfff !important;
}

/* =====================================================
   SHUFFLE
   ===================================================== */

#shuffle-btn {
    position: relative;
}

#shuffle-btn:not(.is-shuffle)::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 22px;
    height: 2px;
    background: rgba(220, 245, 255, 0.85);
    transform: translate(-50%, -50%) rotate(-45deg);
    transform-origin: center;
    border-radius: 2px;
    pointer-events: none;
}

/* =====================================================
   PLAYER CONTROLS
   ===================================================== */

#player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.player-control, .player-option {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(180, 225, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(235, 248, 255, 0.90);
    cursor: pointer;
    transition: transform 0.20s ease, background 0.20s ease, box-shadow 0.20s ease;
}

.player-control:hover, .player-option:hover {
    transform: scale(1.10);
    background: rgba(80, 175, 255, 0.16);
    box-shadow: 0 0 14px rgba(70, 175, 255, 0.28);
}

/* =====================================================
   FAVORITE
   ===================================================== */

.favorite-btn {
    color: rgba(235, 248, 255, 0.82);
    font-size: 18px;
    transition: color 0.25s ease, transform 0.20s ease, background 0.25s ease, text-shadow 0.25s ease;
}

.favorite-btn:hover {
    transform: scale(1.12);
    color: rgba(255, 120, 155, 0.95);
    background: rgba(255, 90, 130, 0.10);
}

.favorite-btn.is-favorite {
    color: #ff3f6f;
    background: rgba(255, 55, 100, 0.12);
    text-shadow: 0 0 8px rgba(255, 55, 100, 0.65), 0 0 18px rgba(255, 55, 100, 0.45);
}

.favorite-btn.is-favorite:hover {
    color: #ff557e;
    background: rgba(255, 55, 100, 0.18);
    box-shadow: 0 0 16px rgba(255, 55, 100, 0.35);
}

/* =====================================================
   MAIN PLAY / PAUSE
   ===================================================== */

.player-play {
    width: 44px;
    height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(210, 245, 255, 0.42);
    background: linear-gradient(145deg, rgba(100, 200, 255, 0.25), rgba(65, 130, 255, 0.10));
    color: white;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 0 18px rgba(60, 175, 255, 0.30);
    transition: transform 0.20s ease, box-shadow 0.20s ease, background 0.20s ease;
}

.player-play:hover {
    transform: scale(1.10);
    box-shadow: 0 0 28px rgba(60, 180, 255, 0.58);
    background: linear-gradient(145deg, rgba(100, 205, 255, 0.36), rgba(65, 140, 255, 0.16));
}

/* =====================================================
   DOWNLOAD
   ===================================================== */

#download-btn {
    text-decoration: none;
}

#download-btn:hover {
    color: #ffffff !important;
    background: rgba(70, 175, 255, 0.16);
    box-shadow: 0 0 14px rgba(70, 175, 255, 0.28);
}

#download-btn:hover .player-icon {
    stroke: #ffffff !important;
}


/* =====================================================
   VOLUME
   ===================================================== */

#volume-control {
    display: flex;
    align-items: center;
    gap: 7px;
}

#volume-slider {
    width: 95px;
    height: 4px;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    background: linear-gradient(to right, #8edcff 0%, #8edcff 100%, rgba(255,255,255,0.14) 100%, rgba(255,255,255,0.14) 100%);
    border-radius: 10px;
    cursor: pointer;
    outline: none;
    box-shadow: 0 0 7px rgba(70,180,255,0.45);
}


#volume-slider::-webkit-slider-runnable-track {
    height: 4px;
    background: transparent;
    border-radius: 10px;
}

#volume-slider::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 11px;
    height: 11px;
    margin-top: -3.5px;
    border: none;
    border-radius: 50%;
    background: #eaf8ff;
    box-shadow: 0 0 6px rgba(130,220,255,0.9), 0 0 12px rgba(70,180,255,0.65);
    cursor: pointer;
}

#volume-slider::-moz-range-track {
    height: 4px;
    background: rgba(255,255,255,0.14);
    border-radius: 10px;
}


#volume-slider::-moz-range-progress {
    height: 4px;
    background: #8edcff;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(70,180,255,0.75);
}


#volume-slider::-moz-range-thumb {
    width: 11px;
    height: 11px;
    border: none;
    border-radius: 50%;
    background: #eaf8ff;
    box-shadow: 0 0 6px rgba(130,220,255,0.9), 0 0 12px rgba(70,180,255,0.65);
    cursor: pointer;
}
/* =====================================================
   TITLE
   ===================================================== */

/* .site-title {
    font-family: 'ArafatNoyakhali', sans-serif;
    text-align: center;
    font-size: 3.5rem;
    margin: 30px 0 10px;
} */

.site-title {
    font-family: 'Mangalik', sans-serif;
    text-align: center;
    font-size: 4rem;
    margin: 30px 0 10px;
}


.title-text {
    font-weight: 100;
    color: #f8a8c8;
    -webkit-text-fill-color: #f8a8c8;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.55), 0 4px 10px rgba(0, 0, 0, 0.35), 0 0 8px rgba(255, 213, 79, 0.55), 0 0 18px rgba(255, 213, 79, 0.35), 0 0 30px rgba(255, 213, 79, 0.20);
}

.title-icon {
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    font-size: 2.5rem;
    background: none;
    -webkit-text-fill-color: initial;
    text-shadow: none;
    filter: none;
}

.site-title {
    position: relative;
    z-index: 5;
}

#category-row {
    position: relative;
    z-index: 10;
}

/* =====================================================
   CATEGORY + GENRE ROW
   ===================================================== */

#category-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

#category-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

#category-filters button {
    margin: 4px;
    padding: 10px 18px;
    cursor: pointer;
    border: 1px solid rgba(255, 213, 79, 0.4);
    background: rgba(20, 25, 40, 0.32);
    color: #ffffff;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22), 0 0 10px rgba(255, 213, 79, 0.10);
    transition: 0.3s;
}

#category-filters button:hover {
    background: rgba(255, 70, 150, 0.32);
}

/* =====================================================
   GENRE DROPDOWN
   ===================================================== */

/* #genre-filter {
    position: relative;
    display: inline-flex;
    margin: 0;
}



#genre-filter {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
} */


#genre-filter {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
}


#genre-dropdown-btn {
    margin: 4px;
    padding: 10px 16px;
    cursor: pointer;
    border: 1px solid rgba(255, 213, 79, 0.4);
    background: rgba(255, 95, 162, 0.15);
    color: #fce8f3;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: 0.3s;
    font-size: 13px;
}

#genre-dropdown-btn:hover {
    background: rgba(255, 70, 150, 0.32);
}

#genre-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    right: 4px;
    min-width: 150px;
    padding: 8px;
    border: 1px solid rgba(255, 213, 79, 0.25);
    border-radius: 14px;
    background: rgba(8, 18, 32, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    z-index: 50;
}

#genre-dropdown {
    pointer-events: auto;
    z-index: 100;
}

#genre-dropdown.show {
    display: block;
}

#genre-dropdown label {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 10px;
    color: #eaf8ff;
    font-size: 13px;
    border-radius: 9px;
    cursor: pointer;
    user-select: none;
    pointer-events: auto;
    transition: background 0.2s ease;
}

#genre-dropdown label:hover {
    background: rgba(80, 175, 255, 0.12);
}

#genre-dropdown input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    margin: 0;
    flex-shrink: 0;
    border: 1px solid rgba(180, 225, 255, 0.55);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    position: relative;
    pointer-events: auto;
    z-index: 2;
}

#genre-dropdown input[type="checkbox"]:hover {
    border-color: rgba(170, 225, 255, 0.85);
}

#genre-dropdown input[type="checkbox"]:checked {
    background: rgba(90, 180, 255, 0.85);
    border-color: rgba(190, 235, 255, 0.95);
    box-shadow: 0 0 8px rgba(70, 180, 255, 0.45);
}

#genre-dropdown input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    left: 2px;
    top: -2px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
}



/* =====================================================
   GENRE FILTER
   ===================================================== */

.genre-label {
    font-size: 12px;
    color: rgba(235, 248, 255, 0.75);
    margin-right: 2px;
}


.song-genres {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 5px;
}

.song-genre-btn {
    border: 1px solid rgba(255, 213, 79, 0.28);
    background: rgba(255, 95, 162, 0.10);
    color: #eaf8ff;
    cursor: pointer;
    transition: 0.2s ease;
    width: 25px;
    height: 20px;
    padding: 0;
    border-radius: 7px;
    font-size: 8px;
    font-weight: 700;
}

.song-genre-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 213, 79, 0.18);
}

.song-genre-btn.active {
    color: #ffffff;
    background: rgba(255, 95, 162, 0.28);
    border-color: rgba(255, 213, 79, 0.65);
    box-shadow: 0 0 8px rgba(255, 213, 79, 0.25);
}

/* =====================================================
   SONG LIST
   ===================================================== */

/* #song-list {
    position: relative;
    z-index: 5;
    width: min(1400px, 94vw);
    margin: 0 auto;
    padding-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
} */

#song-list {
    position: relative;
    z-index: 5;
    width: min(1100px, 72vw);
    margin: 0;
    margin-left: 3vw;
    padding-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

/* =====================================================
   SONG CARD
   ===================================================== */

.song-card {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 10px;
    margin: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 213, 79, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.song-card:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-1px);
    box-shadow: 0 5px 18px rgba(60, 170, 255, 0.12);
}

/* =====================================================
   SONG COVER
   ===================================================== */

.song-cover {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(180, 225, 255, 0.18);
    box-shadow: 0 0 10px rgba(60, 175, 255, 0.16);
}

/* =====================================================
   SONG INFO
   ===================================================== */

.song-info {
    min-width: 0;
    flex: 1;
    text-align: left;
}

.song-title {
    color: #fce8f3;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.song-artist {
    margin-top: 3px;
    color: rgba(220, 230, 240, 0.60);
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* =====================================================
   SONG PLAY BUTTON
   ===================================================== */

.song-play-btn {
    flex-shrink: 0;
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(180, 225, 255, 0.22);
    background: rgba(255, 255, 255, 0.07);
    color: rgba(240, 250, 255, 0.95);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.song-play-btn:hover {
    transform: scale(1.1);
    background: rgba(70, 175, 255, 0.18);
    box-shadow: 0 0 16px rgba(70, 175, 255, 0.42);
}

/* =====================================================
   PAGINATION
   ===================================================== */

#pagination {
    position: relative;
    z-index: 21;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 12px auto 180px;
    transform: translateY(-25px);
}

.page-dots {
    display: flex;
    align-items: center;
    gap: 9px;
}

.page-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 1px solid rgba(255, 213, 79, 0.45);
    border-radius: 50%;
    background: rgba(255, 213, 79, 0.28);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.page-dot:hover {
    transform: scale(1.3);
    background: rgba(255, 213, 79, 0.75);
    border-color: rgba(255, 225, 110, 0.95);
    box-shadow: 0 0 10px rgba(255, 213, 79, 0.45);
}

.page-dot.active {
    width: 11px;
    height: 11px;
    background: #ffd54f;
    border: 1px solid #ffe98a;
    box-shadow: 0 0 7px rgba(255, 213, 79, 1), 0 0 16px rgba(255, 193, 7, 0.85), 0 0 26px rgba(255, 193, 7, 0.45);
}

.page-arrow {
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid rgba(255, 213, 79, 0.38);
    border-radius: 50%;
    background: rgba(20, 25, 40, 0.48);
    color: #ffd54f;
    font-size: 23px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.page-arrow:hover:not(:disabled) {
    transform: scale(1.12);
    background: rgba(255, 70, 150, 0.28);
    border-color: rgba(255, 150, 200, 0.85);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 70, 150, 0.35);
}

.page-arrow:disabled {
    opacity: 0.3;
    cursor: default;
}


/* =====================================================
   HEADINGS
   ===================================================== */


#recently-played-section,
#all-songs-section {
    position: relative;
    z-index: 5;
}

.library-section-title {
    position: relative;
    z-index: 6;
    width: min(1120px, 72vw);
    margin: 16px 0 8px 3vw;
    color: #fce8f3;
    font-size: 17px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 213, 79, 0.28);
}

.library-section-header {
    width: min(1120px, 72vw);
    margin: 16px 0 8px 3vw;
    display: flex;
    align-items: center;
    gap: 23px;
}

.library-section-header .library-section-title {
    width: auto;
    margin: 0;
}

#clear-recently-played {
    padding: 7px 13px;
    border: 1px solid rgba(255, 110, 150, 0.55);
    border-radius: 16px;
    background: rgba(255, 70, 150, 0.16);
    color: #ffdce9;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 0 8px rgba(255, 70, 150, 0.10);
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.2s ease;
}

#clear-recently-played:hover {
    background: rgba(255, 70, 150, 0.32);
    border-color: rgba(255, 150, 190, 0.9);
    color: #ffffff;
    box-shadow: 0 0 14px rgba(255, 70, 150, 0.32);
    transform: scale(1.06);
}

#clear-recently-played:active {
    transform: scale(0.98);
}


/* =====================================================
   RECENT PLAY
   ===================================================== */



.library-section-title {
    width: min(1120px, 72vw);
    margin: 16px 0 8px 3vw;
    color: #fce8f3;
    font-size: 17px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 213, 79, 0.28);
}

#recently-played-section,
#all-songs-section {
    width: 100%;
}

#recently-played-list {
    width: min(1120px, 72vw);
    margin-left: 3vw;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

#recently-played-list .song-card {
    width: 100%;
}

.recently-played-card {
    min-width: 0;
}




/* =====================================================
   LYRICS
   ===================================================== */

/* Easy place to change the lyric font later */
:root {
    --lyrics-font-family: "Noto Serif Bengali", Georgia, serif;
}

#lyrics-panel {
    position: absolute;

    top: 175px;
    right: 3vw;

    width: min(350px, 24vw);
    height: 500px;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;

    background: transparent;
    border: none;
    box-shadow: none;

    overflow: visible;

    z-index: 7;
}

#lyrics-header {
    width: 100%;
    flex-shrink: 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    background: transparent;
}

#lyrics-heading {
    color: #f8a8c8;
    font-size: 20px;
    font-weight: 600;

    text-shadow:
        0 0 8px rgba(255, 213, 79, 0.35),
        0 0 18px rgba(255, 105, 180, 0.18);

    margin-bottom: 12px;
}

#lyrics-song-info {
    width: 100%;
    max-width: 92%;

    display: flex;
    flex-direction: row;          /* IMPORTANT */
    align-items: center;          /* vertically centers button */
    justify-content: center;

    gap: 10px;

    text-align: center;
}


#lyrics-song-text {
    display: flex;
    flex-direction: column;

    align-items: center;

    min-width: 0;
    max-width: calc(100% - 40px);

    text-align: center;
}

#lyrics-song-title {
    width: 100%;

    color: #f4fbff;
    font-size: 14px;
    font-weight: 600;

    text-align: center;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.18);
}

#lyrics-song-artist {
    width: 100%;

    margin-top: 3px;

    color: rgba(205, 225, 240, 0.65);
    font-size: 11px;

    text-align: center;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* =====================================================
   BEAUTIFUL RELOAD BUTTON
   ===================================================== */

#reload-lyrics-btn {
    flex: 0 0 30px;

    width: 30px;
    height: 30px;

    margin: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(255, 213, 79, 0.38);
    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(255, 255, 255, 0.14),
            rgba(255, 213, 79, 0.035) 48%,
            rgba(255, 255, 255, 0.02) 100%
        );

    color: #ffd54f;

    cursor: pointer;

    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);

    box-shadow:
        0 0 7px rgba(255, 213, 79, 0.10),
        inset 0 0 8px rgba(255, 255, 255, 0.04);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.reload-icon {
    display: block;

    font-size: 18px;
    line-height: 1;

    transform: translateY(-1px);

    text-shadow:
        0 0 5px rgba(255, 213, 79, 0.55);
}


/* The actual reload symbol */

.reload-icon {
    display: block;

    font-size: 18px;

    line-height: 1;

    transform: translateY(-1px);

    text-shadow:
        0 0 5px rgba(255, 213, 79, 0.55);
}


/* Hover */

#reload-lyrics-btn:hover {
    transform: scale(1.10);

    border-color: rgba(255, 213, 79, 0.82);

    background:
        radial-gradient(
            circle,
            rgba(255, 213, 79, 0.16),
            rgba(255, 213, 79, 0.035) 70%
        );

    box-shadow:
        0 0 10px rgba(255, 213, 79, 0.28),
        0 0 22px rgba(255, 193, 7, 0.12),
        inset 0 0 9px rgba(255, 255, 255, 0.05);
}

#reload-lyrics-btn:hover .reload-icon {
    text-shadow:
        0 0 7px rgba(255, 213, 79, 0.85),
        0 0 14px rgba(255, 193, 7, 0.40);
}


/* Press */

#reload-lyrics-btn:active {
    transform: scale(0.92);
}


/* Keyboard focus */

#reload-lyrics-btn:focus-visible {
    outline: 2px solid rgba(255, 213, 79, 0.75);

    outline-offset: 3px;
}





#lyrics-content {
    width: 100%;
    flex: 1;

    min-height: 0;

    margin-top: 16px;
    padding: 40px 18px 180px;

    box-sizing: border-box;

    overflow-y: auto;
    overflow-x: hidden;

    scroll-behavior: smooth;

    /*
       Hide scrollbar but keep scrolling functional
    */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#lyrics-content::-webkit-scrollbar {
    display: none;
}

.lyric-line {
    width: 100%;

    padding: 8px 5px;
    margin: 3px 0;

    box-sizing: border-box;

    text-align: center;

    font-family: var(--lyrics-font-family);

    font-size: 16px;
    line-height: 1.65;

    color: rgba(235, 245, 255, 0.35);

    transition:
        color 0.35s ease,
        transform 0.35s ease,
        text-shadow 0.35s ease,
        opacity 0.35s ease;
}


.lyric-line {
    transition:
        color 0.08s ease,
        transform 0.08s ease,
        text-shadow 0.08s ease,
        opacity 0.08s ease;
}

.lyric-line.active {
    color: #ffd54f;

    font-size: 18px;

    transform: scale(1.04);

    text-shadow:
        0 0 8px rgba(255, 213, 79, 0.80),
        0 0 18px rgba(255, 193, 7, 0.45);

    opacity: 1;
}

.lyric-line.nearby {
    color: rgba(235, 245, 255, 0.58);
}

#lyrics-content.lyrics-empty {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
}

.lyrics-empty-message {
    color: rgba(220, 240, 255, 0.40);

    font-size: 12px;

    text-align: center;
}



/* =====================================================
   LYRICS SONG SEARCH
   ===================================================== */

#lyrics-song-search {
    width: 100%;
    position: relative;
    flex-shrink: 0;
    margin-bottom: 16px;
}

#lyrics-search-input {
    width: 100%;
    box-sizing: border-box;

    padding: 9px 13px;

    border: 1px solid rgba(180, 225, 255, 0.20);
    border-radius: 18px;

    background: rgba(8, 18, 32, 0.18);

    color: #f4fbff;
    font-size: 12px;

    outline: none;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

#lyrics-search-input::placeholder {
    color: rgba(220, 240, 255, 0.42);
}

#lyrics-search-input:focus {
    border-color: rgba(255, 110, 170, 0.55);
    background: rgba(8, 18, 32, 0.25);
    box-shadow: 0 0 12px rgba(255, 70, 150, 0.16);
}

#lyrics-search-results {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;

    max-height: 220px;
    overflow-y: auto;

    display: none;

    padding: 6px;

    background: rgba(8, 18, 32, 0.94);

    border: 1px solid rgba(180, 225, 255, 0.16);
    border-radius: 14px;

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

    z-index: 100;
}

#lyrics-search-results.show {
    display: block;
}

.lyrics-search-result {
    padding: 8px 10px;
    border-radius: 9px;
    cursor: pointer;
}

.lyrics-search-result:hover {
    background: rgba(255, 70, 150, 0.18);
}

.lyrics-search-result-title {
    color: #f4fbff;
    font-size: 12px;
}

.lyrics-search-result-artist {
    margin-top: 2px;
    color: rgba(200, 225, 240, 0.58);
    font-size: 10px;
}




/* =====================================================
   RESPONSIVE
   ===================================================== */

/* @media (max-width: 1100px) {
    #song-list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 850px) {
    #song-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 800px) {
    .site-title { font-size: 2.7rem; }
    .title-icon { font-size: 2rem; }
    #player-area { width: min(92vw, 760px); }
}

@media (max-width: 600px) {
    #song-list {
        width: 94vw;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-title { font-size: 2.2rem; margin-top: 20px; }
    .title-icon { font-size: 1.7rem; }
    #category-row { gap: 0; }
    #category-filters button, #genre-dropdown-btn { padding: 8px 12px; font-size: 12px; }
    #player-controls { gap: 7px; }
    .player-control, .player-option { width: 29px; height: 29px; }
    .player-play { width: 40px; height: 40px; }
}

@media (max-width: 420px) {
    #song-list {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px) {
    #volume-slider {
        width: 55px;
    }
}

@media (max-width: 1000px) {
    #lyrics-panel {
        display: none;
    }
} */


/* =====================================================
   MOBILE / RESPONSIVE LAYOUT
   Desktop layout remains unchanged above this point.
   ===================================================== */


/* -----------------------------------------------------
   TABLET
   ----------------------------------------------------- */

@media (max-width: 1000px) {

    #song-list {
        width: 92vw;
        margin-left: auto;
        margin-right: auto;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    #recently-played-list {
        width: 92vw;
        margin-left: auto;
        margin-right: auto;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    /* #lyrics-panel {
        position: relative;
        top: auto;
        right: auto;

        width: 92vw;
        max-width: 600px;
        height: 430px;

        margin: 20px auto 180px;

        display: flex;
    } */

    #lyrics-content {
        width: 100%;
    }

    #player-area {
        width: 94vw;
    }
}


/* -----------------------------------------------------
   MOBILE
   ----------------------------------------------------- */

@media (max-width: 600px) {

    html,
    body {
        width: 100%;
        min-width: 0;
        overflow-x: hidden;
    }


    /* =========================
       TITLE
       ========================= */

    .site-title {
        width: 100%;
        box-sizing: border-box;

        margin: 16px 0 14px;
        padding: 0 8px;

        font-size: 1.85rem;

        line-height: 1.25;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;

        flex-wrap: nowrap;
    }

    .title-text {
        text-align: center;
        white-space: nowrap;
    }

    .title-icon {
        flex-shrink: 0;
        font-size: 1.35rem;
    }


    /* =========================
       CATEGORY / GENRE
       ========================= */

    #category-row {
        width: 100%;
        box-sizing: border-box;

        padding: 0 8px;

        display: flex;
        flex-direction: column;
        align-items: center;

        gap: 4px;

        margin-bottom: 14px;
    }

    #category-filters {
        width: 100%;

        display: flex;
        justify-content: center;
        flex-wrap: wrap;

        gap: 3px;
    }

    #category-filters button {
        margin: 3px 2px;

        padding: 8px 11px;

        font-size: 11px;

        border-radius: 18px;
    }

    #genre-filter {
        width: 100%;

        display: flex;
        justify-content: center;
    }

    #genre-dropdown-btn {
        padding: 8px 13px;

        font-size: 11px;

        margin: 3px;
    }

    #genre-dropdown {
        right: 50%;
        transform: translateX(50%);

        min-width: 145px;
    }


    /* =========================
       SECTION HEADINGS
       ========================= */

    .library-section-title {
        font-size: 18px;
        text-align: center;
    }

    .library-section-header {
        width: 94vw;
        margin-left: auto;
        margin-right: auto;
    }


    /* =========================
       RECENTLY PLAYED
       ========================= */

    #recently-played-section {
        width: 100%;
        box-sizing: border-box;
    }

    #recently-played-list {
        width: 94vw;

        margin-left: auto;
        margin-right: auto;

        grid-template-columns: 1fr;

        gap: 8px;
    }


    /* =========================
       ALL SONGS
       ========================= */

    #all-songs-section {
        width: 100%;
        box-sizing: border-box;
    }

    #song-list {
        position: relative;

        width: 94vw;

        margin-left: auto;
        margin-right: auto;

        padding-bottom: 10px;

        display: grid;
        grid-template-columns: 1fr;

        gap: 8px;
    }


    /* =========================
       SONG CARD
       ========================= */

    .song-card {
        width: 100%;

        min-height: 66px;

        padding: 8px 9px;

        border-radius: 12px;

        gap: 10px;
    }

    .song-cover {
        width: 50px;
        height: 50px;

        border-radius: 8px;
    }

    .song-title {
        font-size: 13px;
    }

    .song-artist {
        font-size: 10px;
    }

    .song-play-btn {
        width: 34px;
        height: 34px;

        flex-shrink: 0;
    }

    .song-genres {
        margin-top: 4px;
    }

    .song-genre-btn {
        width: 27px;
        height: 21px;
    }


    /* =========================
       PAGINATION
       ========================= */

    #pagination {
        width: 100%;

        margin-top: 12px;
        margin-bottom: 175px;

        transform: none;

        gap: 12px;
    }

    .page-dots {
        gap: 8px;
    }

    .page-dot {
        width: 8px;
        height: 8px;
    }


    /* =========================
       LYRICS PANEL
       ========================= */

    /* #lyrics-panel {
        position: relative;

        top: auto;
        right: auto;

        width: 94vw;
        max-width: none;

        height: 430px;

        margin: 20px auto 175px;

        display: flex;

        box-sizing: border-box;
    }

    #lyrics-song-search {
        width: 100%;

        margin-bottom: 14px;
    }

    #lyrics-search-input {
        min-height: 40px;

        padding: 10px 13px;

        font-size: 13px;
    }

    #lyrics-heading {
        font-size: 19px;

        margin-bottom: 9px;
    }

    #lyrics-song-info {
        max-width: 96%;

        gap: 8px;
    }

    #lyrics-song-text {
        max-width: calc(100% - 38px);
    }

    #lyrics-song-title {
        font-size: 14px;
    }

    #lyrics-song-artist {
        font-size: 11px;
    }

    #reload-lyrics-btn {
        width: 30px;
        height: 30px;
    }

    #lyrics-content {
        width: 100%;

        flex: 1;

        min-height: 0;

        overflow-y: auto;
        overflow-x: hidden;

        -webkit-overflow-scrolling: touch;
    }

    .lyric-line {
        font-size: 15px;

        line-height: 1.7;

        padding: 7px 8px;
    }

    .lyric-line.active {
        font-size: 16px;
    } */



    #lyrics-panel {
        display: none !important;
    }

    /* =========================
       FIXED MUSIC PLAYER
       ========================= */

    #player-area {
        position: fixed;

        left: 50%;
        bottom: 5px;

        transform: translateX(-50%);

        width: calc(100vw - 10px);

        height: 145px;

        z-index: 100;
    }

    #custom-player {
        width: 100%;

        padding: 9px 9px 8px;

        border-radius: 16px;
    }


    /* =========================
       PLAYER SONG INFO
       ========================= */

    #player-song-info {
        gap: 8px;

        margin-bottom: 5px;
    }

    #player-cover {
        width: 38px;
        height: 38px;

        border-radius: 8px;
    }

    #player-song-title {
        max-width: 58vw;

        font-size: 13px;
    }

    #player-song-artist {
        max-width: 58vw;

        font-size: 10px;
    }


    /* =========================
       PROGRESS BAR
       ========================= */

    #player-progress-container {
        gap: 5px;
    }

    #current-time,
    #duration {
        min-width: 30px;

        font-size: 9px;
    }

    #progress-bar {
        height: 4px;
    }


    /* =========================
       PLAYER CONTROLS
       ========================= */

    #player-controls {
        width: 100%;

        margin-top: 7px;

        gap: 4px;

        justify-content: center;

        flex-wrap: nowrap;
    }

    .player-control,
    .player-option {
        width: 29px;
        height: 29px;

        flex-shrink: 0;
    }

    .player-play {
        width: 40px;
        height: 40px;

        flex-shrink: 0;
    }

    .player-icon {
        width: 16px;
        height: 16px;
    }

    .favorite-btn {
        font-size: 17px;
    }

    #speed-btn {
        font-size: 10px;
    }

    #repeat-one {
        font-size: 7px;
    }


    /* =========================
       VOLUME
       ========================= */

    #volume-control {
        gap: 4px;

        flex-shrink: 0;
    }

    #volume-slider {
        width: 42px;
    }


    /* =========================
       SOUND WAVE
       ========================= */

    #sound-overlay {
        bottom: 112px;

        height: 45px;

        opacity: 0.65;
    }
}


/* -----------------------------------------------------
   VERY SMALL PHONES
   ----------------------------------------------------- */

@media (max-width: 420px) {

    .site-title {
        font-size: 1.6rem;
    }

    .title-icon {
        font-size: 1.15rem;
    }

    #category-filters button {
        padding: 7px 9px;
        font-size: 10px;
    }

    #genre-dropdown-btn {
        padding: 7px 11px;
        font-size: 10px;
    }

    .song-card {
        min-height: 62px;
    }

    .song-cover {
        width: 46px;
        height: 46px;
    }

    #player-area {
        height: 142px;
    }

    #custom-player {
        padding-left: 6px;
        padding-right: 6px;
    }

    #player-controls {
        gap: 2px;
    }

    .player-control,
    .player-option {
        width: 27px;
        height: 27px;
    }

    .player-play {
        width: 38px;
        height: 38px;
    }

    #volume-slider {
        display: none;
    }

    #lyrics-panel {
        height: 400px;
    }
}


/* =====================================================
   MOBILE LYRICS OVERLAY
   Desktop is intentionally unaffected.
   ===================================================== */

#mobile-lyrics-overlay {
    display: none;
}


/* =====================================================
   MOBILE LYRICS BUTTON
   ===================================================== */

#mobile-lyrics-btn {
    display: none;

    flex-shrink: 0;

    align-items: center;
    justify-content: center;

    gap: 4px;

    padding: 6px 9px;

    border: 1px solid rgba(255, 213, 79, 0.28);
    border-radius: 12px;

    background: rgba(255, 95, 162, 0.10);

    color: #fce8f3;

    font-size: 10px;

    cursor: pointer;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

#mobile-lyrics-btn:hover {
    background: rgba(255, 70, 150, 0.25);
    border-color: rgba(255, 213, 79, 0.55);

    box-shadow:
        0 0 10px rgba(255, 70, 150, 0.20);

    transform: scale(1.04);
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 600px) {

    /* ---------------------------------------------
       Lyrics button beside song information
       --------------------------------------------- */

    #mobile-lyrics-btn {
        display: flex;
    }


    /* ---------------------------------------------
       Player song information
       --------------------------------------------- */

    #player-song-info {
        width: 100%;
        min-width: 0;
        gap: 7px;
    }

    #player-song-text {
        min-width: 0;
        flex: 1;
    }

    #player-song-title {
        max-width: none;
    }

    #player-song-artist {
        max-width: none;
    }


    /* ---------------------------------------------
       Mobile lyrics overlay
       --------------------------------------------- */

    #mobile-lyrics-overlay {
        position: fixed;

        inset: 0;

        z-index: 200;

        display: none;

        box-sizing: border-box;

        padding:
            max(18px, env(safe-area-inset-top))
            12px
            calc(150px + env(safe-area-inset-bottom))
            12px;

        background: rgba(4, 8, 18, 0.42);

        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);

        overflow: hidden;
    }


    #mobile-lyrics-overlay.is-open {
        display: block;
    }


    /* ---------------------------------------------
       Lyrics panel
       --------------------------------------------- */

    #mobile-lyrics-panel {
        position: relative;

        width: 100%;
        height: 100%;

        max-width: 600px;

        margin: 0 auto;

        display: flex;
        flex-direction: column;

        min-height: 0;

        box-sizing: border-box;
    }


    /* ---------------------------------------------
       Close button
       --------------------------------------------- */

    #close-mobile-lyrics {
        position: absolute;

        top: 10px;
        right: 10px;

        z-index: 10;

        width: 38px;
        height: 38px;

        padding: 0;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;

        border: 1px solid rgba(255, 213, 79, 0.35);

        background: rgba(8, 18, 32, 0.28);

        color: #ffffff;

        font-size: 27px;
        line-height: 1;

        cursor: pointer;

        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);

        box-shadow:
            0 0 12px rgba(0, 0, 0, 0.25);

        transition:
            transform 0.2s ease,
            background 0.2s ease,
            border-color 0.2s ease;
    }

    #close-mobile-lyrics:hover {
        transform: scale(1.08);

        background: rgba(255, 70, 150, 0.22);

        border-color: rgba(255, 213, 79, 0.7);
    }


    /* ---------------------------------------------
       Search
       --------------------------------------------- */

    #mobile-lyrics-search {
        position: relative;

        width: calc(100% - 52px);

        margin-top: 2px;
        margin-bottom: 16px;
    }

    #mobile-lyrics-search-input {
        width: 100%;

        box-sizing: border-box;

        padding: 11px 13px;

        border-radius: 18px;

        border: 1px solid rgba(180, 225, 255, 0.20);

        background: rgba(8, 18, 32, 0.28);

        color: #f4fbff;

        font-size: 13px;

        outline: none;

        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    #mobile-lyrics-search-input::placeholder {
        color: rgba(220, 240, 255, 0.42);
    }

    #mobile-lyrics-search-input:focus {
        border-color: rgba(255, 110, 170, 0.55);

        box-shadow:
            0 0 12px rgba(255, 70, 150, 0.16);
    }


    /* ---------------------------------------------
       Search results
       --------------------------------------------- */

    #mobile-lyrics-search-results {
        position: absolute;

        top: calc(100% + 6px);
        left: 0;
        right: 0;

        max-height: 210px;

        overflow-y: auto;

        display: none;

        padding: 6px;

        border-radius: 14px;

        background: rgba(8, 18, 32, 0.94);

        border: 1px solid rgba(180, 225, 255, 0.16);

        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);

        box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.35);

        z-index: 20;
    }

    #mobile-lyrics-search-results.show {
        display: block;
    }

    .mobile-lyrics-search-result {
        padding: 10px;

        border-radius: 9px;

        cursor: pointer;
    }

    .mobile-lyrics-search-result:hover {
        background: rgba(255, 70, 150, 0.18);
    }

    .mobile-lyrics-search-result-title {
        color: #f4fbff;
        font-size: 12px;
    }

    .mobile-lyrics-search-result-artist {
        margin-top: 2px;

        color: rgba(200, 225, 240, 0.58);

        font-size: 10px;
    }


    /* ---------------------------------------------
       Header
       --------------------------------------------- */

    #mobile-lyrics-header {
        flex-shrink: 0;

        text-align: center;

        padding: 0 42px 12px;
    }

    #mobile-lyrics-heading {
        color: #f8a8c8;

        font-size: 21px;

        font-weight: 600;

        margin-bottom: 8px;

        text-shadow:
            0 0 8px rgba(255, 213, 79, 0.35),
            0 0 18px rgba(255, 105, 180, 0.18);
    }

    #mobile-lyrics-song-title {
        color: #f4fbff;

        font-size: 15px;

        font-weight: 600;

        white-space: nowrap;

        overflow: hidden;

        text-overflow: ellipsis;
    }

    #mobile-lyrics-song-artist {
        margin-top: 3px;

        color: rgba(205, 225, 240, 0.65);

        font-size: 11px;

        white-space: nowrap;

        overflow: hidden;

        text-overflow: ellipsis;
    }


    /* ---------------------------------------------
       Lyrics scrolling area
       --------------------------------------------- */

    #mobile-lyrics-content {
        flex: 1;

        min-height: 0;

        width: 100%;

        box-sizing: border-box;

        overflow-y: auto;
        overflow-x: hidden;

        padding: 12px 4px 40px;

        text-align: center;

        -webkit-overflow-scrolling: touch;
    }

    #mobile-lyrics-content .lyric-line {
        padding: 8px 8px;

        font-family: var(--lyrics-font-family);

        font-size: 16px;

        line-height: 1.7;

        text-align: center;
    }

    #mobile-lyrics-content .lyric-line.active {
        font-size: 18px;

        transform: scale(1.03);
    }
}


@media (max-width: 600px) {

    body.mobile-lyrics-open {
        overflow: hidden;
    }

    body.mobile-lyrics-open #blue_earth {
        filter: blur(7px);
        transform: scale(1.04);
    }

    body.mobile-lyrics-open #star-overlay {
        opacity: 0.25;
    }
}