:root {
    --bg: #07070b;
    --bg-2: #0f0d16;
    --panel: rgba(18, 16, 28, 0.92);
    --panel-2: rgba(26, 22, 38, 0.94);
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.14);
    --text: #f7f2fb;
    --muted: #b9b2c6;
    --muted-strong: #d8d0e6;
    --accent: #b56cff;
    --accent-2: #ff71b8;
    --accent-3: #ffb38f;
    --success: #7ce0a7;
    --danger: #ff8a98;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
    --shadow-soft: 0 12px 36px rgba(0, 0, 0, 0.28);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --content-width: 1260px;
    --sidebar-width: 274px;
    --sidebar-width-collapsed: 96px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(181, 108, 255, 0.2), transparent 28%),
        radial-gradient(circle at top right, rgba(255, 113, 184, 0.16), transparent 24%),
        linear-gradient(180deg, #0a0910 0%, #090810 36%, #05050a 100%);
}

body {
    overflow-x: hidden;
}

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

img,
video {
    max-width: 100%;
    display: block;
}

button,
input,
textarea,
select {
    font: inherit;
}

.app-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: var(--sidebar-width) 1fr;
}

.app-sidebar {
    position: sticky;
    top: 0;
    z-index: 45;
    height: 100vh;
    padding: 22px 16px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 22px;
    background:
        linear-gradient(180deg, rgba(11, 11, 16, 0.98), rgba(10, 9, 15, 0.98)),
        rgba(9, 9, 13, 0.96);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.04);
}

.sidebar-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
    z-index: 40;
}

.sidebar-brand {
    display: grid;
    gap: 14px;
}

.sidebar-brand__link {
    display: grid;
    gap: 6px;
}

.sidebar-brand__logo {
    width: min(100%, 218px);
    height: auto;
    display: block;
    filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.35));
}

.brand-mark__eyebrow,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.54);
}

.sidebar-brand strong,
.landing-title,
.hero-copy h1,
.auth-copy h1,
.chat-copy__title {
    font-family: "Cormorant Garamond", serif;
}

.sidebar-brand strong {
    font-size: 2.5rem;
    line-height: 0.9;
}

.sidebar-brand__tag {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.65;
}

.sidebar-nav {
    display: grid;
    align-content: start;
    gap: 8px;
}

.sidebar-nav__label {
    padding: 0 10px 8px;
    color: rgba(255, 255, 255, 0.38);
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.66rem;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 16px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.is-active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(181, 108, 255, 0.28);
    transform: translateX(2px);
}

.sidebar-cta {
    display: grid;
    gap: 12px;
}

.sidebar-note {
    display: grid;
    gap: 6px;
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(181, 108, 255, 0.14), rgba(255, 113, 184, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-note strong {
    line-height: 1.5;
}

.app-main {
    min-width: 0;
}

.topbar {
    width: min(var(--content-width), calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.topbar-left,
.topbar-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar-heading {
    display: grid;
    gap: 3px;
}

.topbar-heading strong {
    font-size: 1.12rem;
    font-weight: 700;
}

.topbar-user {
    color: var(--muted);
    white-space: nowrap;
}

.topbar-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-weight: 700;
    white-space: nowrap;
}

.topbar-chip--premium {
    background: linear-gradient(135deg, rgba(255, 179, 143, 0.18), rgba(255, 113, 184, 0.18));
}

.coin-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #fff2bd, #ffc14e 55%, #f39b1a 100%);
    box-shadow: 0 0 12px rgba(255, 193, 78, 0.46);
}

.sidebar-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    cursor: pointer;
}

.page-shell,
.flash-stack,
.app-main > section,
.site-footer {
    width: min(var(--content-width), calc(100% - 32px));
    margin-inline: auto;
}

.flash-stack {
    display: grid;
    gap: 10px;
    margin-top: 8px;
}

.flash {
    padding: 14px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.flash--success {
    background: rgba(124, 224, 167, 0.12);
    color: #dcffe9;
}

.flash--error {
    background: rgba(255, 138, 152, 0.12);
    color: #ffe4ea;
}

.flash--info {
    background: rgba(255, 179, 143, 0.12);
    color: #ffefdf;
}

.hero,
.auth-shell,
.chat-shell,
.account-shell,
.admin-shell,
.panel,
.character-card,
.pricing-card,
.feature-card,
.account-card,
.admin-card,
.auth-card,
.visual-panel,
.chat-panel {
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(25, 22, 34, 0.9), rgba(14, 13, 22, 0.96)),
        var(--panel);
    box-shadow: var(--shadow);
}

.hero,
.auth-shell,
.chat-shell,
.account-shell,
.admin-shell {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    border-radius: var(--radius-xl);
    padding: 28px;
}

.hero > *,
.auth-shell > *,
.chat-shell > *,
.account-shell > *,
.admin-shell > * {
    min-width: 0;
}

.hero-copy,
.auth-copy,
.character-card__body,
.visual-panel,
.chat-panel,
.account-card,
.admin-card,
.panel,
.auth-card,
.feature-card {
    display: grid;
    gap: 18px;
}

.hero-copy h1,
.auth-copy h1,
.landing-title {
    margin: 0;
    line-height: 0.9;
    font-size: clamp(3.4rem, 6vw, 5.4rem);
}

.landing-title--section {
    font-size: clamp(2.5rem, 4.4vw, 3.8rem);
    line-height: 0.96;
}

.muted {
    color: var(--muted);
    line-height: 1.7;
}

.button,
.chip,
.pose-button,
.quick-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover,
.chip:hover,
.pose-button:hover,
.quick-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.14);
}

.button--primary {
    color: #160b13;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-3), var(--accent-2));
    box-shadow: 0 14px 30px rgba(255, 113, 184, 0.22);
}

.button--ghost {
    background: rgba(255, 255, 255, 0.035);
}

.button--small {
    min-height: 40px;
    padding: 0 14px;
}

.button--wide {
    width: 100%;
}

.inline-actions,
.chip-row,
.pose-row,
.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-grid,
.pricing-row,
.character-grid,
.stats-row {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid--landing {
    gap: 16px;
}

.feature-card,
.pricing-card,
.character-card,
.account-card,
.admin-card,
.panel,
.auth-card {
    padding: 22px;
    border-radius: 26px;
}

.feature-card--compact h3 {
    margin: 0;
    font-size: 1.35rem;
}

.hero-media,
.hero-mosaic,
.hero-preview {
    height: 100%;
}

.hero-mosaic {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.66fr);
    gap: 18px;
}

.hero-mosaic--premium {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 0.62fr);
}

.hero-preview {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    min-height: 520px;
    background:
        radial-gradient(circle at 50% 10%, rgba(255, 179, 143, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(181, 108, 255, 0.12), rgba(10, 10, 18, 0.1)),
        #0f0d16;
}

.hero-preview--small {
    min-height: 260px;
}

.hero-preview__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-preview__caption,
.status-pill,
.usage-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(10, 10, 18, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.hero-preview__caption {
    position: absolute;
    left: 18px;
    top: 18px;
}

.section-block {
    margin-top: 28px;
}

.landing-head {
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 18px;
}

.panel--spotlight,
.panel--gallery-hero {
    gap: 22px;
}

.gallery-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
}

.chip {
    min-height: 40px;
    padding: 0 14px;
    color: var(--muted-strong);
}

.chip-row--filters {
    justify-content: flex-end;
}

.character-grid--featured {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.character-grid--browse {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.character-card {
    display: grid;
    gap: 18px;
}

.character-card--landing,
.character-card--browse {
    grid-template-rows: auto 1fr;
}

.character-card__image,
.pose-stage {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)), #120f19;
    aspect-ratio: 0.8;
}

.character-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.character-card__overlay {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-pill--online {
    color: #dfffea;
    background: rgba(26, 42, 30, 0.7);
}

.character-card__body {
    grid-template-rows: auto auto auto 1fr auto;
}

.character-card__body h3,
.pricing-card h3,
.feature-card h3,
.panel h3 {
    margin: 0;
}

.character-card__body p {
    margin: 0;
}

.price-tag {
    margin: 0;
    font-size: clamp(2.4rem, 4vw, 3.3rem);
    line-height: 1;
    font-weight: 800;
}

.pricing-row--premium {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-row--stack {
    gap: 18px;
}

.premium-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    gap: 22px;
}

.premium-benefits {
    align-content: start;
}

.premium-card {
    background:
        radial-gradient(circle at top right, rgba(255, 113, 184, 0.12), transparent 26%),
        radial-gradient(circle at top left, rgba(181, 108, 255, 0.12), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        var(--panel-2);
}

.premium-card--strong {
    min-height: 100%;
}

.benefit-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.benefit-list li {
    position: relative;
    padding-left: 24px;
    color: var(--muted-strong);
    line-height: 1.6;
}

.benefit-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-3), var(--accent-2));
    box-shadow: 0 0 12px rgba(255, 113, 184, 0.36);
}

.auth-shell {
    min-height: 720px;
}

.form-stack,
.field {
    display: grid;
    gap: 8px;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(6, 5, 10, 0.58);
    color: var(--text);
}

.field textarea {
    min-height: 130px;
    resize: vertical;
}

.field--checkbox {
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 12px;
}

.field--checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.chat-shell {
    grid-template-columns: minmax(380px, 0.88fr) minmax(420px, 1.12fr);
    align-items: start;
}

.visual-panel,
.chat-panel {
    min-width: 0;
    padding: 24px;
    border-radius: 26px;
    overflow: hidden;
}

.pose-stage {
    width: 100%;
    max-width: 100%;
    min-height: clamp(360px, 62vh, 720px);
    aspect-ratio: auto;
    isolation: isolate;
}

.media-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
    transition: opacity 0.28s ease, transform 0.38s ease;
}

.media-layer img,
.media-layer video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.pose-stage .pose-next {
    opacity: 0;
    transform: scale(1.02);
}

.pose-stage.is-swapping .pose-current {
    opacity: 0;
    transform: scale(0.985);
}

.pose-stage.is-swapping .pose-next {
    opacity: 1;
    transform: scale(1);
}

.pose-row {
    gap: 10px;
}

.pose-button--locked {
    opacity: 0.94;
}

.pose-button--locked::after {
    content: "Premium";
    font-size: 0.74rem;
    opacity: 0.82;
}

.premium-lock,
.premium-hint {
    background: linear-gradient(180deg, rgba(181, 108, 255, 0.12), rgba(255, 179, 143, 0.08));
}

.chat-log {
    min-height: 250px;
    max-height: 520px;
    overflow-y: auto;
    display: grid;
    gap: 16px;
    align-content: start;
    padding: 18px;
    border-radius: 24px;
    background: rgba(8, 8, 13, 0.68);
    border: 1px solid var(--line);
}

.message {
    max-width: 88%;
    padding: 16px 18px;
    border-radius: 22px;
    line-height: 1.68;
}

.message--assistant {
    background: rgba(255, 255, 255, 0.06);
    border-top-left-radius: 8px;
}

.message--user {
    margin-left: auto;
    color: #160b13;
    background: linear-gradient(135deg, rgba(255, 179, 143, 1), rgba(255, 113, 184, 1));
    border-top-right-radius: 8px;
}

.message--typing {
    width: fit-content;
    min-width: 88px;
}

.typing-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.typing-indicator span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    animation: typingPulse 1s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.14s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.28s;
}

@keyframes typingPulse {
    0%, 80%, 100% {
        transform: scale(0.7);
        opacity: 0.4;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.composer {
    display: grid;
    gap: 14px;
}

.composer textarea {
    min-height: 130px;
}

.quick-chip {
    min-height: 42px;
    padding: 0 14px;
}

.usage-meter {
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.usage-meter span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-3), var(--accent-2));
}

.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    padding: 28px 0 34px;
    color: var(--muted);
}

.site-footer__brand {
    display: grid;
    gap: 6px;
}

.site-footer__brand p {
    margin: 0;
}

.site-footer__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px;
}

.empty-state {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 12px 10px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.sidebar-collapsed .app-shell {
    grid-template-columns: var(--sidebar-width-collapsed) 1fr;
}

body.sidebar-collapsed .sidebar-brand__tag,
body.sidebar-collapsed .sidebar-nav__label,
body.sidebar-collapsed .sidebar-note,
body.sidebar-collapsed .sidebar-nav a,
body.sidebar-collapsed .sidebar-cta .button {
    overflow: hidden;
}

body.sidebar-collapsed .sidebar-brand__tag,
body.sidebar-collapsed .sidebar-note,
body.sidebar-collapsed .sidebar-nav__label {
    display: none;
}

body.sidebar-collapsed .sidebar-brand__logo {
    width: 44px;
}

body.sidebar-collapsed .sidebar-nav a,
body.sidebar-collapsed .sidebar-cta .button {
    justify-content: center;
    padding-inline: 0;
    font-size: 0;
}

body.sidebar-collapsed .sidebar-nav a::before {
    font-size: 0.92rem;
}

body.sidebar-collapsed .sidebar-nav a[data-nav-key="home"]::before { content: "Home"; }
body.sidebar-collapsed .sidebar-nav a[data-nav-key="girls"]::before { content: "Girls"; }
body.sidebar-collapsed .sidebar-nav a[data-nav-key="premium"]::before { content: "VIP"; }
body.sidebar-collapsed .sidebar-nav a[data-nav-key="support"]::before { content: "Help"; }
body.sidebar-collapsed .sidebar-nav a[data-nav-key="account"]::before { content: "Me"; }
body.sidebar-collapsed .sidebar-nav a[data-nav-key="login"]::before { content: "In"; }
body.sidebar-collapsed .sidebar-nav a[data-nav-key="signup"]::before { content: "Up"; }
body.sidebar-collapsed .sidebar-nav a[data-nav-key="admin"]::before { content: "CMS"; }
body.sidebar-collapsed .sidebar-cta .button::before { content: "Go"; font-size: 0.92rem; }

@media (max-width: 1180px) {
    .feature-grid,
    .pricing-row,
    .character-grid,
    .stats-row,
    .premium-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-row--stack {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .app-shell {
        grid-template-columns: 1fr;
    }

    .app-sidebar {
        position: fixed;
        inset: 0 auto 0 0;
        width: min(86vw, 290px);
        transform: translateX(-100%);
        transition: transform 0.26s ease;
    }

    body.sidebar-open .app-sidebar {
        transform: translateX(0);
    }

    body.sidebar-open .sidebar-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .hero,
    .auth-shell,
    .chat-shell,
    .account-shell,
    .admin-shell,
    .feature-grid,
    .pricing-row,
    .character-grid,
    .stats-row,
    .premium-layout,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .gallery-hero,
    .topbar,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .topbar-actions {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .hero-mosaic,
    .hero-mosaic--premium {
        grid-template-columns: 1fr;
    }

    .hero-preview,
    .hero-preview--small,
    .pose-stage {
        min-height: 420px;
    }
}

@media (max-width: 760px) {
    .topbar,
    .flash-stack,
    .app-main > section,
    .site-footer {
        width: min(calc(100% - 2px), var(--content-width));
    }

    .topbar {
        padding-top: 16px;
    }

    .hero,
    .auth-shell,
    .chat-shell,
    .account-shell,
    .admin-shell,
    .feature-card,
    .pricing-card,
    .panel,
    .auth-card,
    .character-card,
    .account-card,
    .admin-card,
    .visual-panel,
    .chat-panel {
        padding: 14px;
        border-radius: 24px;
    }

    .hero-copy h1,
    .auth-copy h1,
    .landing-title {
        font-size: clamp(2.55rem, 12vw, 4rem);
    }

    .landing-title--section {
        font-size: clamp(2.15rem, 10vw, 3rem);
    }

    .character-grid,
    .feature-grid,
    .pricing-row,
    .stats-row,
    .premium-layout {
        gap: 16px;
    }

    .message {
        max-width: 100%;
    }

    .chat-log {
        min-height: 220px;
        max-height: 380px;
        padding: 10px;
        border-radius: 20px;
    }

    .field input,
    .field textarea,
    .field select {
        border-radius: 16px;
    }

    .chip,
    .pose-button,
    .quick-chip,
    .composer .button,
    .pricing-card .button,
    .inline-actions .button,
    .sidebar-cta .button {
        width: 100%;
    }

    .inline-actions,
    .chip-row,
    .pose-row,
    .meta-row {
        gap: 10px;
    }

    .topbar-left,
    .topbar-actions {
        width: 100%;
    }

    .topbar-actions {
        justify-content: flex-start;
    }

    .topbar-user {
        order: 3;
        width: 100%;
    }

    .composer {
        gap: 10px;
    }

    .composer textarea {
        min-height: 108px;
        padding: 12px;
    }
}
