/* assets/css/style.css - Gaana24 Indian Music & Playlist Design System */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-dark: #07070a;
    --bg-card: rgba(22, 22, 30, 0.75);
    --bg-card-hover: rgba(32, 32, 44, 0.9);
    --surface-glass: rgba(255, 255, 255, 0.05);
    
    --primary-red: #ff003c;
    --secondary-red: #d90429;
    --dark-red: #660017;
    --glow-red: rgba(255, 0, 60, 0.4);
    --glow-red-strong: rgba(255, 0, 60, 0.7);

    --text-primary: #ffffff;
    --text-secondary: #9999aa;
    --text-muted: #555566;

    --border-glass: rgba(255, 0, 60, 0.18);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

/* HIDE ALL SCROLLBARS GLOBALLY */
* {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}
*::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

body {
    background-color: #030305;
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 0, 60, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(217, 4, 41, 0.08) 0%, transparent 45%);
}

/* App Outer Mobile Frame */
.desktop-wrapper {
    width: 100%;
    max-width: 440px;
    height: 94vh;
    max-height: 920px;
    background: var(--bg-dark);
    border-radius: 40px;
    box-shadow: 
        0 0 0 10px #15151c,
        0 25px 70px rgba(0, 0, 0, 0.9),
        0 0 50px var(--glow-red);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(255, 0, 60, 0.3);
    transition: var(--transition);
}

@media (max-width: 768px) {
    body {
        background: var(--bg-dark);
        align-items: stretch;
    }
    .desktop-wrapper {
        max-width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        border: none;
        box-shadow: none;
    }
}

/* Brand Logo Styling */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 4px 15px var(--glow-red-strong);
}

.brand-name {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 40%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

/* Top Greeting Header Bar */
.top-greeting-bar {
    padding: 20px 20px 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.greeting-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-trigger-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.greeting-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-bell-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-glass);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
}

.bell-badge {
    position: absolute;
    top: 9px;
    right: 9px;
    width: 7px;
    height: 7px;
    background: var(--primary-red);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--primary-red);
}

.spectrum-header-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: #fff;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    box-shadow: 0 4px 15px var(--glow-red-strong);
    cursor: pointer;
}

/* Main Scroll Area */
.app-main {
    flex: 1;
    overflow-y: auto;
    padding: 10px 20px 140px 20px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Search Bar Component */
.search-box-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-box-container {
    position: relative;
    flex: 1;
}

.search-input {
    width: 100%;
    height: 48px;
    background: rgba(20, 20, 28, 0.9);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 0 20px 0 48px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.search-input:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 20px var(--glow-red);
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 15px;
    pointer-events: none;
}

.clear-search {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    cursor: pointer;
    display: none;
}

/* Featured Hero Banner Card */
.hero-featured-card {
    width: 100%;
    height: 175px;
    border-radius: var(--radius-lg);
    background: linear-gradient(90deg, rgba(8, 8, 12, 0.95) 0%, rgba(20, 8, 12, 0.7) 60%, transparent 100%),
                url('assets/images/aaj_jaane.png');
    background-size: cover;
    background-position: right center;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 35px var(--glow-red), 0 0 0 1px var(--border-glass);
}

.hero-now-playing-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-song-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-top: 4px;
    max-width: 65%;
}

.hero-artist-name {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.hero-play-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: #fff;
    padding: 9px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--glow-red-strong);
    width: fit-content;
    margin-top: 10px;
    transition: var(--transition);
}

.hero-play-now-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px var(--primary-red);
}

/* Sound Wave Overlay on Hero Card */
.hero-soundwave {
    position: absolute;
    bottom: 15px;
    right: 20px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 30px;
    opacity: 0.85;
}

.sw-bar {
    width: 4px;
    background: var(--primary-red);
    border-radius: 4px;
    animation: soundWave 1.2s ease-in-out infinite alternate;
}

.sw-bar:nth-child(1) { height: 40%; animation-delay: 0.1s; }
.sw-bar:nth-child(2) { height: 80%; animation-delay: 0.3s; }
.sw-bar:nth-child(3) { height: 100%; animation-delay: 0.2s; }
.sw-bar:nth-child(4) { height: 60%; animation-delay: 0.4s; }
.sw-bar:nth-child(5) { height: 90%; animation-delay: 0.15s; }
.sw-bar:nth-child(6) { height: 50%; animation-delay: 0.35s; }

@keyframes soundWave {
    0% { height: 20%; }
    100% { height: 100%; }
}

/* Animated Sound Visualizer Spectrum */
.equalizer {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 12px;
}

.eq-bar {
    width: 2px;
    background: var(--primary-red);
    border-radius: 2px;
    animation: bounce 1s ease-in-out infinite alternate;
}

.eq-bar:nth-child(1) { height: 60%; animation-delay: 0.1s; }
.eq-bar:nth-child(2) { height: 100%; animation-delay: 0.3s; }
.eq-bar:nth-child(3) { height: 40%; animation-delay: 0.2s; }
.eq-bar:nth-child(4) { height: 80%; animation-delay: 0.4s; }

@keyframes bounce {
    0% { height: 20%; }
    100% { height: 100%; }
}

/* Category Horizontal Scroll Pills */
.category-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.cat-pill {
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.cat-pill:hover, .cat-pill.active {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: #fff;
    border-color: var(--primary-red);
    box-shadow: 0 4px 15px var(--glow-red-strong);
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title-text {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
}

.see-all-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-red);
    text-decoration: none;
}

/* Recently Played & Playlist Horizontal Cards */
.recently-played-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.recent-card {
    width: 140px;
    height: 170px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: var(--transition);
}

.recent-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.recent-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-red);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.recent-card.playing {
    border: 2px solid var(--primary-red);
    box-shadow: 0 0 20px var(--glow-red-strong);
}

.recent-card-fav {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-red);
    font-size: 12px;
    z-index: 2;
}

.recent-card-play-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary-red);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    align-self: center;
    z-index: 2;
    box-shadow: 0 4px 15px var(--glow-red-strong);
    transition: var(--transition);
}

.recent-card-info {
    z-index: 2;
}

.recent-card-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recent-card-artist {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Trending Songs List Items */
.trending-songs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trending-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: var(--transition);
}

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

.trending-item.playing {
    background: rgba(255, 0, 60, 0.12);
    border-color: var(--primary-red);
    box-shadow: 0 0 15px var(--glow-red);
}

.track-number {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    width: 16px;
    text-align: center;
}

.track-thumb {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
}

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

.track-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-artist {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.track-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.track-play-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 0, 60, 0.15);
    color: var(--primary-red);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.track-play-btn:hover {
    background: var(--primary-red);
    color: #fff;
}

.track-more-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
}

/* Floating Bottom Mini Player */
.mini-player-floating {
    position: absolute;
    bottom: 66px;
    left: 12px;
    right: 12px;
    height: 64px;
    background: rgba(18, 18, 26, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid var(--primary-red);
    border-radius: 20px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 90;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 25px var(--glow-red-strong);
    cursor: pointer;
    overflow: hidden;
}

/* Mini Player Progress Fill Bar */
.mini-player-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
}

.mini-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--secondary-red), var(--primary-red));
    box-shadow: 0 0 10px var(--primary-red);
    transition: width 0.15s linear;
}

.mini-time-display {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: 0.5px;
}

.mini-thumb-img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
}

.mini-info-text {
    flex: 1;
    min-width: 0;
    margin: 0 12px;
}

.mini-song-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-artist-name {
    font-size: 11px;
    color: var(--text-secondary);
}

.mini-action-btns {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mini-fav-heart {
    background: none;
    border: none;
    color: var(--primary-red);
    font-size: 16px;
    cursor: pointer;
}

.mini-circle-play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: #fff;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    box-shadow: 0 4px 15px var(--glow-red-strong);
    cursor: pointer;
}

/* Bottom Nav Bar (5 Tabs) */
.bottom-nav-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: #07070b;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 80;
    padding: 0 8px;
}

.nav-tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    padding: 6px 10px;
    transition: var(--transition);
}

.nav-tab-item i {
    font-size: 18px;
}

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

.nav-tab-item.active i {
    filter: drop-shadow(0 0 8px var(--primary-red));
}

.nav-indicator-dot {
    width: 14px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 10px;
    position: absolute;
    bottom: 2px;
    box-shadow: 0 0 8px var(--primary-red);
    display: none;
}

.nav-tab-item.active .nav-indicator-dot {
    display: block;
}

/* Single Page Song Play View */
.full-player-view {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 25%, rgba(180, 0, 40, 0.35) 0%, #0c070c 55%, #030305 100%);
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 22px 18px 22px;
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.full-player-view.active {
    transform: translateY(0);
}

.single-page-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.single-page-title-group {
    text-align: center;
}

.sp-tag {
    font-size: 10px;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.sp-sub {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 1px;
}

/* REALISTIC VINYL RECORD DISK */
.vinyl-disk-wrapper {
    position: relative;
    width: 270px;
    height: 270px;
    margin: 10px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vinyl-disk-wrapper::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--primary-red);
    box-shadow: 0 0 30px var(--primary-red), inset 0 0 15px var(--primary-red);
    animation: pulseRing 2s ease-in-out infinite alternate;
}

@keyframes pulseRing {
    0% { box-shadow: 0 0 20px var(--primary-red), inset 0 0 10px var(--primary-red); }
    100% { box-shadow: 0 0 40px var(--primary-red), inset 0 0 20px var(--primary-red); }
}

.vinyl-record-disc {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, #252528 0%, #111115 40%, #08080a 70%, #000 100%);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: spinVinyl 18s linear infinite;
    animation-play-state: paused;
}

.vinyl-record-disc.playing {
    animation-play-state: running;
}

.vinyl-grooves {
    position: absolute;
    inset: 15px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 
        inset 0 0 0 10px rgba(255, 255, 255, 0.02),
        inset 0 0 0 25px rgba(255, 255, 255, 0.03),
        inset 0 0 0 45px rgba(255, 255, 255, 0.02);
}

.vinyl-center-art {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-red);
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
    position: relative;
    z-index: 2;
}

@keyframes spinVinyl {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Song Title & Heart Section */
.sp-song-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
    padding: 0 4px;
}

.sp-song-title {
    font-size: 21px;
    font-weight: 800;
    color: #fff;
}

.sp-artist-name {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 3px;
}

.sp-fav-heart-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 22px;
    cursor: pointer;
    transition: var(--transition);
}

.sp-fav-heart-btn.active {
    color: var(--primary-red);
    filter: drop-shadow(0 0 10px var(--primary-red));
}

/* Scrub Progress Bar */
.sp-progress-container {
    margin: 14px 0 10px 0;
}

.sp-scrub-input {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 5px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    outline: none;
    cursor: pointer;
}

.sp-scrub-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-red);
    box-shadow: 0 0 12px var(--primary-red);
    cursor: pointer;
}

.sp-time-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 600;
}

/* Main Controls */
.sp-main-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 6px 0 12px 0;
}

.sp-btn-icon {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.sp-btn-icon.active, .sp-btn-icon:hover {
    color: var(--primary-red);
}

.sp-big-play-btn {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: #fff;
    border: none;
    font-size: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 30px var(--glow-red-strong);
    cursor: pointer;
    transition: var(--transition);
}

.sp-big-play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 35px var(--primary-red);
}

/* Toolbar Action Icons */
.sp-toolbar-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 6px;
}

.tb-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tb-action-item i {
    font-size: 18px;
}

.tb-action-item:hover, .tb-action-item.active {
    color: var(--primary-red);
}

/* "UP NEXT" Drawer Card */
.up-next-drawer-card {
    width: 100%;
    background: rgba(22, 22, 30, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.drawer-drag-handle {
    width: 30px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    align-self: center;
}

.up-next-header {
    font-size: 10px;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.up-next-song-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.un-song-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.un-thumb {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: cover;
}

.un-song-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.un-artist-name {
    font-size: 11px;
    color: var(--text-secondary);
}

/* MODAL DIALOGS */
.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    z-index: 300;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    width: 100%;
    max-width: 360px;
    background: #12121a;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9), 0 0 30px var(--glow-red);
}

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

.modal-header h3 {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}

.close-modal {
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-input {
    width: 100%;
    height: 46px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 0 16px;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.modal-input:focus {
    border-color: var(--primary-red);
}

.modal-submit-btn {
    width: 100%;
    height: 46px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--glow-red-strong);
    margin-top: 6px;
}

.playlist-select-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.playlist-select-item:hover {
    background: rgba(255, 0, 60, 0.15);
    border: 1px solid var(--primary-red);
}
