:root {
    --bg-color: #121212;
    --sidebar-bg: #181818;
    --card-bg: #1e1e1e;
    --card-hover: #282828;
    --primary-color: #f0144c;
    --text-main: #ffffff;
    --text-secondary: #b3b3b3;
    --player-bg: #181818;
    --border-color: #333333;
    --transition: all 0.3s ease;
}

[data-theme="light"] {
    --bg-color: #f8f9fa;
    --sidebar-bg: #ffffff;
    --card-bg: #ffffff;
    --card-hover: #f1f3f5;
    --primary-color: #f0144c;
    --text-main: #212529;
    --text-secondary: #6c757d;
    --player-bg: #ffffff;
    --border-color: #dee2e6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    transition: var(--transition);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Layout */
.app-container {
    display: flex;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

/* Sidebar */
.sidebar {
    width: 240px;
    background-color: var(--sidebar-bg);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    z-index: 100;
}

.logo-section {
    padding: 0 25px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-section img {
    height: 40px;
}

.logo-section h1 {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-menu {
    flex: 1;
    overflow-y: auto;
    padding: 0 15px;
}

.nav-label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 1px;
    margin: 20px 0 10px 10px;
    font-weight: 600;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 8px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 2px;
    cursor: pointer;
    gap: 15px;
}

.nav-item i {
    width: 24px;
    display: flex;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.nav-item:hover, .nav-item.active {
    background-color: var(--card-hover);
    color: var(--text-main);
}

.nav-item.active {
    color: var(--primary-color);
}

.sidebar-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--border-color);
}

.theme-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Main Content */
.main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.sidebar-header-mobile {
    display: none;
    padding: 20px 25px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-close {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 24px;
    cursor: pointer;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 150;
    backdrop-filter: blur(5px);
    transition: opacity 0.3s ease, visibility 0.3s;
    opacity: 0;
    visibility: hidden;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.top-bar {
    height: 70px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    z-index: 90;
    position: relative;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 0;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 22px;
    cursor: pointer;
    flex-shrink: 0;
    padding: 8px;
    min-width: 40px;
    min-height: 40px;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-box {
    position: relative;
    width: 400px;
    flex-shrink: 1;
}

.search-box input {
    width: 100%;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 10px 15px 10px 42px;
    border-radius: 20px;
    color: var(--text-main);
    outline: none;
    transition: var(--transition);
    font-size: 14px;
}

.search-box input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(240, 20, 76, 0.2);
}

.search-box i {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 2;
    border-radius: 20px 0 0 20px;
    transition: color 0.2s;
}

.search-box i:hover {
    color: var(--primary-color);
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-login {
    color: var(--text-main);
    font-weight: 600;
}

.btn-signup {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
}

.main-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 40px 120px;
}

/* Home Components */
.hero-slider {
    margin-bottom: 0;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hero-slider::-webkit-scrollbar {
    display: none;
}

.slider-item {
    min-width: 600px;
    height: 300px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}

.slider-content {
    position: relative;
    z-index: 2;
}

.slider-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
}

.see-all {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

/* Grids */
.grid-wrapper {
    position: relative;
    margin-bottom: 40px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.grid-container.horizontal-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.grid-container.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.grid-container.horizontal-scroll .music-card {
    width: 200px;
    flex: 0 0 200px;
    min-width: 0;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: var(--transition);
    border: none;
    opacity: 0;
}

.grid-wrapper:hover .scroll-btn {
    opacity: 1;
}

[data-theme="light"] .scroll-btn {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
}

.scroll-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.scroll-btn.left {
    left: -20px;
}

.scroll-btn.right {
    right: -20px;
}

.music-card {
    background-color: var(--card-bg);
    padding: 15px;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.music-card:hover {
    background-color: var(--card-hover);
    transform: translateY(-5px);
}

.card-img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    margin-bottom: 12px;
    position: relative;
}

.play-btn-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.music-card:hover .play-btn-overlay {
    opacity: 1;
    transform: translateY(0);
}

.card-title {
    font-weight: 600;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Artist Card */
.artist-card {
    text-align: center;
}

.artist-card .card-img {
    border-radius: 50%;
}

/* Player Bar */
.player-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: rgba(24, 24, 24, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    padding: 0 30px;
    z-index: 200;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

[data-theme="light"] .player-bar {
    background-color: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.player-info {
    width: 30%;
    display: flex;
    align-items: center;
    gap: 15px;
}

.current-img {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    background-size: cover;
}

.current-details h4 {
    font-size: 14px;
    margin-bottom: 3px;
}

.current-details p {
    font-size: 12px;
    color: var(--text-secondary);
}

.player-controls {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.control-btns {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 15px;
}

.control-btns i {
    font-size: 20px;
    color: var(--text-secondary);
    cursor: pointer;
}

.control-btns i:hover {
    color: var(--text-main);
}

.play-pause {
    width: 42px;
    height: 42px;
    background-color: var(--primary-color);
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(240, 20, 76, 0.3);
    transition: var(--transition);
}

.play-pause:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(240, 20, 76, 0.5);
}

.progress-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    display: flex;
    align-items: center;
    gap: 0;
}

.time {
    font-size: 11px;
    color: var(--text-secondary);
    min-width: 35px;
    position: absolute;
    top: 15px;
    z-index: 5;
}

#currentTime {
    left: 41%;
}

#totalTime {
    right: 41%;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    cursor: pointer;
    transition: height 0.2s;
}

.progress-bar:hover {
    height: 6px;
}

.progress-fill {
    height: 100%;
    background-color: var(--primary-color);
    width: 0%;
    position: relative;
    box-shadow: 0 0 8px rgba(240, 20, 76, 0.5);
}

.progress-fill::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    transition: opacity 0.2s;
}

.progress-bar:hover .progress-fill::after {
    opacity: 1;
}

.player-extra {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.volume-container {
    width: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Queue List */
.queue-list-container {
    position: absolute;
    bottom: 100px;
    right: 30px;
    width: 320px;
    max-height: 400px;
    background-color: rgba(24, 24, 24, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    display: none;
    flex-direction: column;
    z-index: 150;
    overflow: hidden;
    animation: fadeIn 0.2s ease;
}

[data-theme="light"] .queue-list-container {
    background-color: rgba(255, 255, 255, 0.95);
    border-color: rgba(0,0,0,0.1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.queue-list-container.active {
    display: flex;
}

.queue-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

[data-theme="light"] .queue-header {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.queue-header h3 {
    font-size: 16px;
    margin: 0;
}

.queue-header i {
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition);
}

.queue-header i:hover {
    color: var(--primary-color);
}

.queue-items {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

.queue-item {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.queue-item:hover {
    background-color: rgba(255,255,255,0.05);
}

[data-theme="light"] .queue-item:hover {
    background-color: rgba(0,0,0,0.03);
}

.queue-item.active-item {
    background-color: rgba(240, 20, 76, 0.1);
}

.queue-item-img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
}

.queue-item-info {
    flex: 1;
    min-width: 0;
}

.queue-item-title {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.queue-item-artist {
    font-size: 12px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.queue-item.active-item .queue-item-title {
    color: var(--primary-color);
}

/* Artist Cards */
.artist-card .card-img {
    border-radius: 50%;
    aspect-ratio: 1/1;
    border: 2px solid var(--primary-color); /* Thinner border */
    padding: 2px;
    background-clip: content-box;
    position: relative;
    overflow: visible; /* Allow badge to overflow */
}

.artist-card .card-title {
    text-align: center;
    margin-top: 10px;
}

.artist-card .card-subtitle {
    text-align: center;
    font-size: 12px;
}

.verified-badge-wrap {
    position: absolute;
    bottom: 14%;
    right: 14%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(50%, 50%); /* Centers the badge on the border line */
}

.verified-badge-wrap .fa-certificate {
    color: var(--primary-color);
    font-size: 24px;
}

.verified-badge-wrap .fa-check {
    position: absolute;
    color: white;
    font-size: 10px;
}

/* Song List Style (Spotify Style) */
.song-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 50px;
}

.song-list-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 5px;
}

.song-list-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.song-index {
    width: 25px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
}

.song-plus {
    color: var(--text-secondary);
    font-size: 16px;
    cursor: pointer;
    opacity: 0.6;
}

.song-list-item:hover .song-plus {
    opacity: 1;
    color: var(--primary-color);
}

.song-list-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.song-list-info {
    flex: 1;
    min-width: 0;
    padding: 0 5px;
}

.song-list-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-main);
    margin-bottom: 4px;
}

.song-list-meta {
    font-size: 13px;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
}

.song-list-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    color: var(--text-secondary);
    font-size: 18px;
}

.song-list-actions i:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-pane.active {
    display: block;
}

/* Song Context Menu */
.song-menu-container {
    position: relative;
}

.song-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 220px;
    background-color: #1e1e1e;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 100;
    padding: 8px 0;
    display: none;
    animation: fadeIn 0.2s ease;
}

.song-menu.active {
    display: block;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    font-size: 14px;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
}

.menu-item:hover {
    background-color: rgba(255,255,255,0.05);
    color: var(--primary-color);
}

.menu-item i {
    width: 20px;
    font-size: 16px;
    color: var(--text-secondary);
}

.menu-item:hover i {
    color: var(--primary-color);
}

.menu-divider {
    height: 1px;
    background-color: rgba(255,255,255,0.05);
    margin: 5px 0;
}

.menu-item .fa-chevron-right {
    margin-left: auto;
    font-size: 10px;
}

.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 0;
    right: 100%;
    margin-right: 5px;
    width: 220px;
    background-color: #1e1e1e;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    padding: 8px 0;
    display: none;
    animation: fadeIn 0.2s ease;
    z-index: 101;
}

[data-theme="light"] .submenu {
    background-color: #ffffff;
    border-color: rgba(0,0,0,0.1);
}

.has-submenu:hover .submenu {
    display: block;
}

/* Animations */
/* NProgress styles */
#nprogress { pointer-events: none; }
#nprogress .bar {
    background: var(--primary-color);
    position: fixed; z-index: 1031;
    top: 0; left: 0; width: 100%; height: 3px;
}
#nprogress .peg {
    display: block; position: absolute; right: 0px; width: 100px; height: 100%;
    box-shadow: 0 0 10px var(--primary-color), 0 0 5px var(--primary-color);
    opacity: 1.0;
    -webkit-transform: rotate(3deg) translate(0px, -4px);
        -ms-transform: rotate(3deg) translate(0px, -4px);
            transform: rotate(3deg) translate(0px, -4px);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.music-card {
    animation: fadeIn 0.5s ease forwards;
}

/* Modern Pagination */
.pagination-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px 0 20px;
}

.modern-pagination {
    display: flex;
    justify-content: center;
}

.pagination-list {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
}

.page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(240, 20, 76, 0.3);
}

.page-item:not(.disabled):not(.active) .page-link:hover {
    background-color: var(--card-hover);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-info {
    margin-top: 15px;
    font-size: 13px;
    color: var(--text-secondary);
}

/* User Profile Header Styles */
.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 12px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: var(--transition);
}

.user-profile:hover {
    background: var(--card-hover);
    border-color: var(--primary-color);
}

.user-profile img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.user-initial {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.user-profile span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
}

/* Auth Page Styles */
.auth-container {
    display: flex; justify-content: center; align-items: center; min-height: 80vh; padding: 20px;
}
.auth-card {
    width: 100%; max-width: 450px; background: var(--card-bg); padding: 40px; border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3); border: 1px solid var(--border-color);
}
.auth-header { text-align: center; margin-bottom: 30px; }
.auth-header img { width: 60px; margin-bottom: 15px; }
.auth-header h2 { font-size: 28px; font-weight: 700; margin-bottom: 10px; }
.auth-header p { color: var(--text-secondary); font-size: 14px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--text-secondary); }
.form-group input { 
    width: 100%; padding: 12px 15px; background: var(--bg-color); border: 1px solid var(--border-color); 
    border-radius: 10px; color: var(--text-main); outline: none; transition: var(--transition);
}
.form-group input:focus { border-color: var(--primary-color); }
.auth-btn { 
    width: 100%; padding: 14px; background: var(--primary-color); color: white; border: none; 
    border-radius: 10px; font-size: 16px; font-weight: 700; cursor: pointer; margin-top: 10px;
}
.auth-footer { text-align: center; margin-top: 25px; font-size: 14px; color: var(--text-secondary); }
.auth-footer a { color: var(--primary-color); font-weight: 600; }
.alert-danger { background: rgba(240, 20, 76, 0.1); color: var(--primary-color); padding: 15px; border-radius: 10px; margin-bottom: 20px; font-size: 13px; }

/* Profile Page Styles */
.profile-container {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 20px;
}
.profile-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}
.profile-avatar-wrapper { position: relative; }
.profile-avatar {
    width: 120px; height: 120px; background: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 48px; font-weight: 800; color: white; box-shadow: 0 10px 20px rgba(240, 20, 76, 0.3); background-position: center; background-size: cover;
}
.avatar-edit-btn {
    position: absolute; bottom: 0; right: 0; width: 35px; height: 35px; background: var(--text-main); color: var(--bg-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); border: 3px solid var(--card-bg);
}
.avatar-edit-btn:hover { background: var(--primary-color); color: white; transform: scale(1.1); }
.profile-info h2 { font-size: 32px; margin-bottom: 5px; }
.profile-info p { color: var(--text-secondary); margin-bottom: 15px; }
.badge { padding: 5px 12px; background: rgba(255,255,255,0.05); border-radius: 20px; font-size: 12px; color: var(--text-secondary); }
.profile-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; }
.profile-card { background: var(--card-bg); padding: 30px; border-radius: 20px; border: 1px solid var(--border-color); }
.profile-card h3 { margin-bottom: 25px; }
.profile-form .form-group { margin-bottom: 20px; }
.profile-form label { display: block; margin-bottom: 8px; font-size: 14px; color: var(--text-secondary); }
.profile-form input { width: 100%; padding: 12px 15px; background: var(--bg-color); border: 1px solid var(--border-color); border-radius: 10px; color: var(--text-main); outline: none; }
.profile-form input:focus { border-color: var(--primary-color); }
.btn-primary { width: 100%; padding: 15px; background: var(--primary-color); color: white; border: none; border-radius: 10px; font-weight: 600; cursor: pointer; transition: var(--transition); margin-top: 10px; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(240, 20, 76, 0.4); }
.profile-stats { display: flex; flex-direction: column; gap: 20px; }
.stat-item { background: var(--card-bg); padding: 20px; border-radius: 15px; border: 1px solid var(--border-color); display: flex; align-items: center; gap: 20px; }
.stat-item i { font-size: 24px; color: var(--primary-color); }
.stat-details h4 { font-size: 20px; margin-bottom: 2px; }
.stat-details p { font-size: 12px; color: var(--text-secondary); }
.alert { padding: 15px; border-radius: 10px; margin-bottom: 20px; }
.alert-success { background: rgba(0, 255, 0, 0.1); color: #00ff00; border: 1px solid rgba(0, 255, 0, 0.2); }
.error { font-size: 12px; color: var(--primary-color); margin-top: 5px; display: block; }

/* Artist & Album Page Styles */
.artist-header, .album-header {
    height: 350px; margin: -20px -40px 30px; background-size: cover; background-position: center;
    display: flex; align-items: flex-end; padding: 40px;
}
.artist-header-content, .album-header-content { display: flex; align-items: center; gap: 30px; }
.artist-pfp { width: 180px; height: 180px; border-radius: 50%; background-size: cover; background-position: center; border: 5px solid var(--primary-color); padding: 5px; background-clip: content-box; }
.album-pfp { width: 220px; height: 220px; background-size: cover; background-position: center; border: 5px solid rgba(255,255,255,0.1); border-radius: 12px; }
.artist-info-text h1 { font-size: 60px; font-weight: 800; margin: 10px 0; }
.album-info-text h1 { font-size: 48px; font-weight: 800; margin: 10px 0; }
.artist-tabs { display: flex; gap: 30px; border-bottom: 1px solid var(--border-color); margin-bottom: 30px; }
.tab { padding: 15px 0; font-weight: 600; color: var(--text-secondary); cursor: pointer; position: relative; }
.tab.active { color: var(--text-main); }
.tab.active::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px; background: var(--primary-color); }
.verified-badge { background: #3b82f6; color: white; padding: 4px 12px; border-radius: 20px; font-weight: 600; font-size: 12px; display: inline-flex; align-items: center; gap: 5px; }
.album-badge { background: var(--primary-color); color: white; padding: 4px 12px; border-radius: 4px; font-weight: 700; font-size: 12px; width: fit-content; }

/* Responsive Design */
@media (max-width: 992px) {
    .sidebar {
        width: 80px;
    }
    .logo-section h1, .nav-item span {
        display: none;
    }
    .nav-label {
        display: none;
    }
    .nav-item {
        justify-content: center;
        padding: 15px;
    }
    .nav-item i {
        margin-right: 0;
        font-size: 24px;
    }
    .theme-toggle span {
        display: none;
    }
    .theme-toggle {
        justify-content: center;
    }
    .main-content {
        padding: 20px 20px 120px;
    }
    .top-bar {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
    .player-info {
        display: none;
    }
    .player-controls {
        width: 100%;
    }
    .player-extra {
        display: none;
    }
    .search-box {
        width: 100%;
        max-width: 250px;
    }
    .hero-slider .slider-item {
        min-width: 100%;
        height: 200px;
    }
    .grid-container {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

/* Modern Modals - Glassmorphism */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modern-modal {
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    width: 95%;
    max-width: 450px;
    padding: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    color: white;
}

.modal-overlay.active .modern-modal {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.modal-header h2 {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Share Modal Styles */
.share-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.share-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.2s;
    text-decoration: none;
    color: white;
}

.share-item:hover {
    transform: translateY(-5px);
}

.share-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.share-item.whatsapp .share-icon { background: #25D366; }
.share-item.facebook .share-icon { background: #1877F2; }
.share-item.twitter .share-icon { background: #1DA1F2; }
.share-item.telegram .share-icon { background: #0088cc; }

.copy-link-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.copy-link-container input {
    background: transparent;
    border: none;
    color: #ccc;
    flex: 1;
    font-size: 14px;
    outline: none;
}

.copy-btn {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: filter 0.2s;
}

.copy-btn:hover {
    filter: brightness(1.2);
}

/* Playlist Modal Styles */
.playlist-modal-body {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 5px;
}

.create-playlist-box {
    margin-bottom: 25px;
    display: flex;
    gap: 10px;
}

.create-playlist-box input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 15px;
    color: white;
    flex: 1;
    outline: none;
}

.create-playlist-box input:focus {
    border-color: var(--primary-color);
}

.playlist-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.playlist-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
    cursor: pointer;
}

.playlist-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.playlist-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.playlist-thumb {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-color: #333;
}

.playlist-name {
    font-weight: 600;
    font-size: 15px;
}

.add-confirm-btn {
    color: #00d26a;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.2s;
}

.playlist-item:hover .add-confirm-btn {
    opacity: 1;
}

.playlist-modal-body::-webkit-scrollbar {
    width: 5px;
}

.playlist-modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* Adunik Playlist management styles */
.create-playlist-box input[type="file"] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
}

.create-playlist-box input[type="file"]:hover {
    background: rgba(255, 255, 255, 0.1);
}

.playlist-item .fa-pen-to-square:hover {
    color: var(--primary-color) !important;
}

.playlist-item .add-confirm-btn {
    opacity: 1 !important; /* Always show in the new layout */
    font-size: 20px;
}

/* Modern Footer */
.site-footer {
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--text-main);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.app-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-badge-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    width: fit-content;
    min-width: 170px;
}

.app-badge-modern:hover {
    background: #111;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(240, 20, 76, 0.2);
}

.app-badge-modern i {
    font-size: 28px;
}

.app-badge-modern .badge-text {
    display: flex;
    flex-direction: column;
}

.app-badge-modern .badge-text .small {
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 2px;
    opacity: 0.8;
}

.app-badge-modern .badge-text .big {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 13px;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .sidebar {
        position: fixed;
        left: -280px;
        top: 0;
        bottom: 0;
        width: 260px;
        max-width: 80%;
        background-color: var(--sidebar-bg) !important;
        transition: left 0.3s ease, visibility 0.3s;
        z-index: 250; 
        box-shadow: 10px 0 30px rgba(0,0,0,0.5);
        display: flex !important;
        visibility: hidden;
        overflow-y: auto;
    }
    
    .sidebar.active {
        left: 0 !important;
        visibility: visible;
    }
    
    .sidebar > .logo-section {
        display: none;
    }
    
    .sidebar-header-mobile {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .top-bar {
        padding: 0 20px;
    }
    
    .search-box {
        width: auto;
        flex: 1;
    }
    
    .main-content {
        padding: 20px;
        padding-bottom: 120px;
    }

    /* Fix sidebar nav alignment on mobile - all items in straight line */
    .nav-menu {
        padding: 0 10px;
    }

    .nav-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 10px 14px;
        gap: 12px;
        font-size: 13px;
        margin-bottom: 2px;
    }

    .nav-item i {
        width: 20px;
        font-size: 16px;
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .nav-item span {
        display: inline !important;
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-label {
        display: block;
        font-size: 10px;
        padding-left: 14px;
        margin: 15px 0 6px;
    }

    /* Details Page Responsive */
    .artist-header, .album-header {
        height: auto;
        min-height: 300px;
        margin: -20px -40px 20px;
        padding: 40px 20px 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background-position: center !important;
    }

    .artist-header-content, .album-header-content {
        flex-direction: column;
        gap: 20px;
    }

    .artist-pfp {
        width: 130px !important;
        height: 130px !important;
        aspect-ratio: 1 / 1 !important;
        flex-shrink: 0;
    }

    .album-pfp {
        width: 160px !important;
        height: 160px !important;
        aspect-ratio: 1 / 1 !important;
        flex-shrink: 0;
    }

    .artist-info-text h1, .album-info-text h1 {
        font-size: 28px !important;
        margin: 8px 0 !important;
    }
}

@media (max-width: 768px) {
    .user-actions span {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .player-info {
        width: 60%;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .current-img {
        width: 40px !important;
        height: 40px !important;
        flex-shrink: 0;
    }

    .current-details {
        min-width: 0;
    }

    .current-details h4 {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 13px;
        margin: 0;
    }

    .current-details p {
        display: none; /* Hide artist on very small screens to save space */
    }
    
    .player-controls {
        flex: 1;
        width: 40%;
        display: flex;
        justify-content: flex-end;
    }

    .player-controls .progress-container,
    .player-controls .control-btns i:not(.play-pause i, #prevBtn, #nextBtn) {
        display: none;
    }

    .player-controls .control-btns {
        gap: 15px;
    }

    .player-controls .control-btns i {
        font-size: 18px;
    }

    .play-pause {
        width: 40px;
        height: 40px;
    }
    
    .player-extra {
        display: none;
    }
    
    .grid-container {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }
}

/* Extra small screens - smaller cards */
@media (max-width: 480px) {
    .grid-container {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }

    .grid-container.horizontal-scroll .music-card {
        width: 140px;
        flex: 0 0 140px;
    }

    .music-card {
        padding: 10px;
    }

    .card-title {
        font-size: 12px;
    }

    .card-subtitle {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    /* Mobile Search - full width expandable */
    .search-box {
        width: auto;
        flex: 1;
        min-width: 0;
    }

    .search-box input {
        width: 100%;
        padding: 9px 12px 9px 40px;
        font-size: 13px;
        background-color: var(--card-bg);
        border: 1px solid var(--border-color);
    }

    .search-box input:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 8px rgba(240, 20, 76, 0.2);
    }
    
    .hero-slider .slider-item {
        min-width: 100%;
        height: 200px;
        padding: 20px;
    }
    
    .slider-content h2 {
        font-size: 20px;
    }
}

/* Static Pages Styles (Privacy Policy, About Us, etc.) */
.static-page-container {
    padding: 40px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #a00d33 100%);
    border-radius: 20px;
    padding: 60px 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(240, 20, 76, 0.2);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(-15deg);
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin: 0 !important;
    position: relative;
    z-index: 1;
}

.page-content-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    line-height: 1.8;
    color: var(--text-main);
}

.page-content-card h2, .page-content-card h3 {
    margin-top: 30px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-content-card p {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-secondary);
}

.page-content-card ul, .page-content-card ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.page-content-card li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

[data-theme="light"] .page-content-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .page-hero {
        padding: 40px 25px;
    }
    .page-hero h1 {
        font-size: 32px;
    }
    .page-content-card {
        padding: 30px 20px;
    }
}

/* Lyrics Overlay Styles */
.lyrics-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 80px;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1000;
    display: none;
    flex-direction: column;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lyrics-overlay.active {
    display: flex;
}

.lyrics-header {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.lyrics-song-info h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--text-main);
}

.lyrics-song-info p {
    font-size: 16px;
    color: var(--text-secondary);
}

#closeLyricsBtn {
    font-size: 24px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition);
}

#closeLyricsBtn:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.lyrics-body {
    flex: 1;
    overflow-y: auto;
    scroll-behavior: smooth;
    /* mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent); */
    /* -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent); */
}

.lyrics-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 30vh 0;
}

.lyric-line {
    font-size: 32px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    line-height: 1.4;
}

.lyric-line:hover {
    color: rgba(255, 255, 255, 0.5);
}

.lyric-line.active {
    color: var(--primary-color);
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(240, 20, 76, 0.3);
}

.lyrics-visualizer {
    margin-top: 40px;
    display: flex;
    justify-content: flex-start;
}

.cd-wrapper {
    width: 180px;
    height: 180px;
    position: relative;
    animation: rotateCD 10s linear infinite;
    animation-play-state: paused;
}

.lyrics-overlay.active .cd-wrapper {
    animation-play-state: running;
}

.cd-disc {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6), inset 0 0 0 8px rgba(0,0,0,0.3);
    border: 3px solid rgba(255,255,255,0.1);
}

.cd-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--bg-color);
    border-radius: 50%;
    border: 8px solid #222;
    z-index: 2;
}

@keyframes rotateCD {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.no-lyrics {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 100px;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
    .lyric-line {
        font-size: 22px;
    }
    .lyrics-header {
        padding: 20px;
    }
    .lyrics-body {
        padding: 0 20px 80px;
    }
}

