/* assets/css/style.css - Ultra Premium Dark & Neon Red Theme for Gaana24 */

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

:root {
    --bg-black: #07070a;
    --bg-dark-card: rgba(22, 22, 30, 0.85);
    --bg-glass: rgba(255, 255, 255, 0.04);
    
    --primary-red: #ff003c;
    --secondary-red: #d90429;
    --glow-red: rgba(255, 0, 60, 0.4);
    --glow-red-strong: rgba(255, 0, 60, 0.7);

    --text-primary: #ffffff;
    --text-secondary: #a0a0b5;
    --text-muted: #666678;

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

/* Global Reset & Hidden Scrollbars */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

::-webkit-scrollbar {
    display: none !important;
}

html, body {
    width: 100%;
    height: 100%;
    background-color: #040406;
    color: var(--text-primary);
    overflow: hidden;
}

/* Desktop App Container Shell (Mobile App Layout on Desktop) */
.desktop-wrapper {
    max-width: 480px;
    height: 100vh;
    margin: 0 auto;
    background-color: var(--bg-black);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 50px rgba(255, 0, 60, 0.15);
    border-left: 1px solid rgba(255, 0, 60, 0.1);
    border-right: 1px solid rgba(255, 0, 60, 0.1);
    overflow: hidden;
    padding-top: 12px; /* Added Top Margin / Padding */
}

@media (max-width: 500px) {
    .desktop-wrapper {
        max-width: 100%;
        border: none;
        padding-top: 8px;
    }
}

/* Top Greeting Bar with Gaana24 Logo */
.top-greeting-bar {
    padding: 16px 20px 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(7, 7, 10, 0.95) 0%, transparent 100%);
    z-index: 10;
}

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

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

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

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

.brand-name {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

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

.notification-bell-btn, .spectrum-header-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.notification-bell-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    box-shadow: 0 0 12px var(--glow-red);
}

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

/* Search Box Component */
.search-box-wrapper {
    width: 100%;
}

.search-box-container {
    width: 100%;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 12px;
    transition: var(--transition);
}

.search-box-container:focus-within {
    border-color: var(--primary-red);
    box-shadow: 0 0 16px var(--glow-red);
    background: rgba(255, 0, 60, 0.04);
}

.search-icon {
    color: var(--text-muted);
    font-size: 16px;
}

.search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.clear-search {
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
    display: none;
}

/* ULTRA LUXURY HERO BANNER CAROUSEL SLIDER WITH CLICK TO PLAY */
.banner-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 195px;
    min-height: 195px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 0, 60, 0.25);
    flex-shrink: 0;
}

.banner-carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.banner-slide-item {
    min-width: 100%;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px 20px;
    cursor: pointer;
}

.banner-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(7, 7, 10, 0.95) 100%),
                radial-gradient(circle at 90% 20%, rgba(255, 0, 60, 0.25) 0%, transparent 65%);
}

.banner-slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.banner-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary-red);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
    box-shadow: 0 2px 10px var(--glow-red);
}

.banner-slide-title {
    font-size: 19px;
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.banner-slide-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin-top: 3px;
}

/* Banner Interactive Play Now Button */
.banner-play-btn {
    padding: 8px 14px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 18px;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px var(--glow-red-strong);
    transition: var(--transition);
    white-space: nowrap;
}

.banner-slide-item:hover .banner-play-btn {
    transform: scale(1.06);
    box-shadow: 0 6px 20px var(--primary-red);
}

/* Banner Nav Arrows */
.banner-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-glass);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 5;
    font-size: 12px;
    transition: var(--transition);
    opacity: 0.75;
}

.banner-nav-btn:hover {
    opacity: 1;
    border-color: var(--primary-red);
    color: var(--primary-red);
    background: rgba(255, 0, 60, 0.25);
}

.banner-nav-btn.prev { left: 10px; }
.banner-nav-btn.next { right: 10px; }

/* Banner Dots Indicator */
.banner-dots-container {
    position: absolute;
    bottom: 10px;
    right: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 5;
}

.banner-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.banner-dot.active {
    width: 22px;
    border-radius: 10px;
    background: var(--primary-red);
    box-shadow: 0 0 10px var(--primary-red);
}

/* Featured "NOW PLAYING" Hero Card */
.hero-featured-card {
    background: linear-gradient(90deg, rgba(8, 8, 12, 0.95) 0%, rgba(20, 8, 12, 0.7) 60%, transparent 100%),
                url('../images/aaj_jaane.png');
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--border-glass);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    min-height: 110px;
}

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

.hero-song-title {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-top: 4px;
}

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

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

.hero-play-now-btn:hover {
    transform: scale(1.04);
}

.hero-soundwave {
    position: absolute;
    top: 16px;
    right: 20px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 16px;
}

.sw-bar {
    width: 3px;
    height: 100%;
    background: var(--primary-red);
    border-radius: 2px;
    animation: soundwave 1.2s infinite ease-in-out alternate;
}

.sw-bar:nth-child(2) { animation-delay: 0.2s; }
.sw-bar:nth-child(3) { animation-delay: 0.4s; }
.sw-bar:nth-child(4) { animation-delay: 0.1s; }
.sw-bar:nth-child(5) { animation-delay: 0.3s; }
.sw-bar:nth-child(6) { animation-delay: 0.5s; }

@keyframes soundwave {
    0% { height: 4px; }
    100% { height: 16px; }
}

/* Category Pills Horizontal Scroll */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.category-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.cat-pill {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    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);
}

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

/* Horizontal Cards Carousel (Recently Played & Playlists) */
.recently-played-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
}

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

.recent-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(7, 7, 10, 0.95) 100%);
}

.recent-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-red);
    box-shadow: 0 8px 20px var(--glow-red);
}

.recent-card-fav {
    position: relative;
    z-index: 2;
    align-self: flex-end;
    color: #fff;
    font-size: 14px;
}

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

.recent-card:hover .recent-card-play-btn {
    opacity: 1;
    transform: scale(1);
}

.recent-card-info {
    position: relative;
    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);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Trending Song List */
.trending-songs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.trending-item:hover, .trending-item.playing {
    background: rgba(255, 0, 60, 0.08);
    border-color: var(--primary-red);
}

.track-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    width: 18px;
}

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

.track-info {
    flex: 1;
    overflow: hidden;
}

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

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

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

.track-play-btn, .track-more-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Floating Bottom Mini Player */
.mini-player-floating {
    position: absolute;
    bottom: 74px;
    left: 14px;
    right: 14px;
    height: 60px;
    background: rgba(18, 18, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 18px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 50;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9), 0 0 20px var(--glow-red);
    cursor: pointer;
    overflow: hidden;
}

.mini-player-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.mini-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--primary-red);
    box-shadow: 0 0 8px var(--primary-red);
}

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

.mini-info-text {
    flex: 1;
    overflow: hidden;
}

.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-time-display {
    font-size: 10px;
    color: var(--primary-red);
    font-weight: 700;
}

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

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

.mini-circle-play-btn {
    width: 36px;
    height: 36px;
    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: 14px;
    box-shadow: 0 4px 12px var(--glow-red-strong);
    cursor: pointer;
}

/* Single Page Song Full Player Overlay */
.full-player-view {
    position: absolute;
    inset: 0;
    background: #07070a;
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 24px 40px 24px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    transition: all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    background-image: radial-gradient(circle at 50% 30%, rgba(255, 0, 60, 0.15) 0%, transparent 70%);
}

.full-player-view.active {
    opacity: 1;
    pointer-events: auto;
    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: 11px;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 1.2px;
}

.sp-sub {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Glowing Red Vinyl Record Player Disk */
.vinyl-disk-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.vinyl-record-disc {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: #111116;
    border: 8px solid #1a1a24;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 40px rgba(255, 0, 60, 0.4), inset 0 0 20px rgba(0, 0, 0, 0.9);
}

.vinyl-record-disc.playing {
    animation: spinVinyl 12s linear infinite;
}

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

.vinyl-center-art {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-red);
    box-shadow: 0 0 15px var(--glow-red-strong);
}

/* Player Scrub Bar & Controls */
.sp-song-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

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

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

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

.sp-fav-heart-btn.active {
    color: var(--primary-red);
}

.sp-progress-container {
    width: 100%;
    margin-bottom: 20px;
}

.sp-scrub-input {
    width: 100%;
    height: 5px;
    accent-color: var(--primary-red);
    cursor: pointer;
}

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

.sp-main-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

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

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

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

.sp-toolbar-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 14px;
}

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

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

/* UP NEXT Drawer Card */
.up-next-drawer-card {
    background: rgba(22, 22, 30, 0.95);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 12px 16px;
    margin-top: 16px;
}

.drawer-drag-handle {
    width: 32px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin: 0 auto 8px auto;
}

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

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

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

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

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

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

/* Modals */
.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    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%;
    background: #111118;
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
}

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

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

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

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

.modal-submit-btn {
    width: 100%;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

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

.playlist-select-item:hover {
    background: rgba(255, 0, 60, 0.15);
}

/* Bottom Nav Bar (5 Tabs) */
.bottom-nav-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(11, 11, 16, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 40;
}

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

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

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

.nav-indicator-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary-red);
    position: absolute;
    bottom: -6px;
    opacity: 0;
    transition: var(--transition);
}

.nav-tab-item.active .nav-indicator-dot {
    opacity: 1;
}
