@import url('https://fonts.googleapis.com/css2?family=TASA+Explorer:wght@400..800&display=swap');
html, body {
    margin: 0; padding: 0;
    overflow-x: hidden;
}
* {
    font-family: "TASA Explorer", sans-serif;
}
#root {
    width: 100vw; height: 100vh;
    max-width: 100vw; max-height: 100vh;
    display: flex;
    overflow: hidden;
}

/* =========================================================
   SOUNDSPACE — HOME
   Minimalistyczny layout w stylu creative workspace
   ========================================================= */

:root {
    --bg: #f6f6f3;
    --surface: #ffffff;
    --surface-soft: #fafaf8;
    --text: #171717;
    --muted: #858585;
    --border: #e7e7e2;
    --border-hover: #d8d8d2;
    --accent: #171717;
    --radius-lg: 18px;
    --radius-md: 13px;
    --danger: #ef4444;
    --success: #65c951;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input {
    font: inherit;
}

button {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ---------- APP SHELL ---------- */

#root {
    min-height: 100vh;
    display: flex;
}

.navbar {
    width: 232px;
    min-width: 232px;
    min-height: 100vh;
    padding: 28px 18px 20px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.72);
    border-right: 1px solid var(--border);
    backdrop-filter: blur(18px);
}

.logo {
    padding: 0 12px 30px;
    display: flex; align-items: center;
}

.logo span {
    font-size: 15px;
    font-weight: 750;
    letter-spacing: -0.03em;
    margin-left: 5px;
}

.logo img {
    width: 15%;
}

.menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    height: 85%;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    color: #707070;
    font-size: 13px;
    font-weight: 550;
    cursor: pointer;
    transition: 0.18s ease;
}

.menu-item:hover {
    color: var(--text);
    background: #f2f2ef;
}

.menu-item.active {
    color: var(--text);
    background: #eeeeeb;
}

.menu-item:last-child {
    margin-top: auto;
}

.menu-item i {
    width: 16px;
    text-align: center;
    font-size: 13px;
}

.account {
    margin-top: auto;
    padding: 18px 8px 4px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.acc-avatar,
.acc-avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.acc-avatar img {
    display: block;
}

.acc-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.acc-info span {
    font-size: 12px;
    font-weight: 700;
}

.acc-info .rank {
    font-size: 10px;
    color: var(--muted);
    font-style: normal;
    text-transform: capitalize;
}

.container {
    flex: 1;
    min-width: 0;
    overflow-y: auto;
}