:root {
    --bg-cream: #FFFDF9;
    --primary-pink: #FFB6C1;
    --secondary-mint: #A8E6CF;
    --white: #FFFFFF;
    --text-main: #5A5A5A;
    --text-muted: #9E9E9E;
    --radius-card: 20px;
    --radius-pill: 35px;
    --soft-shadow: 0 10px 30px rgba(255, 182, 193, 0.3);
    --transition: all 0.3s ease;
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

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

.hidden { display: none !important; }

/* LAYOUT */
.layout-wrapper {
    display: flex;
    min-height: 100vh;
}

.app-nav {
    width: 260px;
    background: var(--white);
    padding: 40px 20px;
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-right: 2px solid rgba(255, 182, 193, 0.05);
}

.logo-container {
    display: flex; align-items: center; gap: 10px;
    color: var(--primary-pink); font-weight: 700; font-size: 1.5rem;
}

.nav-links { list-style: none; }
.nav-item {
    display: flex; align-items: center; gap: 15px;
    padding: 15px 20px; border-radius: var(--radius-pill);
    cursor: pointer; font-weight: 600; transition: var(--transition);
}
.nav-item.active { background: var(--primary-pink); color: white; box-shadow: var(--soft-shadow); }

.content-view {
    flex: 1; padding: 40px; padding-bottom: 140px;
}

/* SEARCH BAR */
.soft-search {
    width: 100%; max-width: 500px;
    padding: 15px 25px; border-radius: var(--radius-pill);
    border: 2px solid transparent; background: var(--white);
    box-shadow: var(--soft-shadow); outline: none; transition: var(--transition);
}
.soft-search:focus { border-color: var(--primary-pink); }

/* SEARCH RESULTS & ROWS */
.results-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.track-row {
    display: flex; align-items: center; gap: 15px;
    background: var(--white); padding: 12px;
    border-radius: var(--radius-card); cursor: pointer;
    transition: var(--transition);
}
.track-row:hover { transform: scale(1.02); box-shadow: var(--soft-shadow); }

.tiny-art {
    width: 55px; height: 55px; border-radius: 12px; object-fit: cover;
}

.track-info-cell { display: flex; flex-direction: column; }
.track-title-cell { font-weight: 700; font-size: 1rem; color: var(--text-main); }
.track-artist-cell { font-size: 0.85rem; color: var(--text-muted); }

/* PLAYER BAR */
.player-bar {
    position: fixed; bottom: 25px; left: 50%; transform: translateX(-50%);
    width: 90%; max-width: 1100px; height: 90px;
    background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px);
    border-radius: var(--radius-pill); box-shadow: var(--soft-shadow);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 30px; z-index: 1000;
}

.current-track { display: flex; align-items: center; gap: 15px; width: 30%; }
.track-art { width: 50px; height: 50px; border-radius: 10px; background: #eee; }

.player-center { display: flex; flex-direction: column; align-items: center; gap: 5px; width: 40%; }
.play-pause-btn {
    width: 45px; height: 45px; background: var(--primary-pink); color: white;
    border: none; border-radius: 50%; font-size: 1.2rem; cursor: pointer;
}

.progress-container { display: flex; align-items: center; gap: 10px; width: 100%; }
.soft-range { flex: 1; accent-color: var(--primary-pink); cursor: pointer; }
.time { font-size: 0.75rem; color: var(--text-muted); min-width: 30px; }

/* Status Messages */
.status-msg { text-align: center; padding: 50px; color: var(--text-muted); font-style: italic; }
