





:root {
    --shell-accent: #A98EEF;
    --shell-accent-deep: #6D5BFF;
    --shell-line: rgba(255, 255, 255, .08);
    --shell-surface: rgba(20, 20, 27, .97);
    --shell-text: #B8B8C7;
    --shell-muted: #7C7C8A;
    --shell-danger: #fb7185;
}


.shell-bell { position: relative; }
.shell-badge {
    position: absolute; top: -2px; right: -2px;
    min-width: 17px; height: 17px; padding: 0 4px;
    display: none; place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #fb7185, #e11d48);
    color: #fff; font-size: .62rem; font-weight: 800; line-height: 17px;
    text-align: center;
    box-shadow: 0 0 0 2px rgba(9, 9, 11, .9);
}
.shell-badge.visible { display: block; }

.shell-nav-badge {
    display: inline-block; margin-left: 6px; padding: 1px 6px;
    border-radius: 999px;
    background: rgba(169, 142, 239, .18);
    border: 1px solid rgba(169, 142, 239, .35);
    color: #fff; font-size: .62rem; font-weight: 800; vertical-align: 1px;
}


.shell-notifications {
    position: fixed; z-index: 2600;
    width: min(380px, calc(100vw - 24px));
    max-height: min(70vh, 560px);
    display: none; flex-direction: column; overflow: hidden;
    border: 1px solid var(--shell-line);
    border-radius: 20px;
    background: var(--shell-surface);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .6);
    backdrop-filter: blur(26px) saturate(120%);
    -webkit-backdrop-filter: blur(26px) saturate(120%);
    opacity: 0; transform: translateY(-10px) scale(.98);
    transition: opacity .2s ease, transform .2s ease;
    font-family: 'Inter', system-ui, sans-serif;
}
.shell-notifications.active { display: flex; opacity: 1; transform: none; }

.shell-notifications__head {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    padding: 16px 18px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.shell-notifications__title {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: .98rem; font-weight: 800; letter-spacing: -.02em; color: #fff;
}
.shell-notifications__action {
    border: 0; background: none; cursor: pointer;
    color: var(--shell-accent); font-size: .74rem; font-weight: 700;
    transition: color .2s ease;
}
.shell-notifications__action:hover { color: #fff; }

.shell-notifications__list { overflow-y: auto; padding: 6px; }
.shell-notifications__list::-webkit-scrollbar { width: 8px; }
.shell-notifications__list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .12); border-radius: 8px;
}

.shell-notification {
    display: grid; grid-template-columns: 36px 1fr; gap: 11px;
    padding: 11px 12px; border-radius: 14px;
    color: inherit; text-decoration: none;
    transition: background .18s ease;
}
.shell-notification:hover { background: rgba(255, 255, 255, .05); }
.shell-notification--unread { background: rgba(169, 142, 239, .08); }
.shell-notification--unread:hover { background: rgba(169, 142, 239, .13); }

.shell-notification__avatar {
    width: 36px; height: 36px; border-radius: 50%; overflow: hidden;
    display: grid; place-items: center;
    background: linear-gradient(135deg, var(--shell-accent), var(--shell-accent-deep));
    color: #fff; font-size: .8rem; font-weight: 800;
}
.shell-notification__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.shell-notification__body { min-width: 0; }
.shell-notification__text {
    color: #E8E8F0; font-size: .82rem; line-height: 1.4;
    overflow-wrap: anywhere;
}
.shell-notification__meta {
    margin-top: 3px; display: flex; align-items: center; gap: 7px;
    color: var(--shell-muted); font-size: .68rem;
}
.shell-notification__tag {
    padding: 1px 7px; border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    color: var(--shell-text); font-weight: 600;
}

.shell-notifications__empty {
    padding: 34px 20px; text-align: center;
    color: var(--shell-muted); font-size: .82rem; line-height: 1.5;
}
.shell-notifications__empty strong {
    display: block; margin-bottom: 4px; color: var(--shell-text); font-size: .88rem;
}

.shell-notifications__foot {
    padding: 10px 16px 14px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    display: flex; gap: 14px;
}
.shell-notifications__foot a {
    color: var(--shell-text); font-size: .74rem; font-weight: 600; text-decoration: none;
    transition: color .2s ease;
}
.shell-notifications__foot a:hover { color: #fff; }


.admin-badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 3px 9px; border-radius: 999px;
    border: 1px solid rgba(169, 142, 239, .4);
    background: linear-gradient(135deg, rgba(169, 142, 239, .22), rgba(109, 91, 255, .14));
    color: #E4DBFF; font-size: .68rem; font-weight: 800;
    letter-spacing: .01em; white-space: nowrap; vertical-align: 2px;
}
.admin-badge svg {
    width: 11px; height: 11px; fill: none; stroke: currentColor;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.admin-badge--sm { padding: 1px 7px; font-size: .62rem; }

.admin-header-button {
    display: inline-flex; align-items: center; gap: 6px;
}
.admin-header-button svg {
    width: 13px; height: 13px; fill: none; stroke: currentColor;
    stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round;
}


.shell-toasts {
    position: fixed; right: 18px; bottom: 18px; z-index: 4000;
    display: flex; flex-direction: column; gap: 10px;
    pointer-events: none;
}
.shell-toast {
    min-width: 220px; max-width: 340px;
    padding: 12px 16px; border-radius: 14px;
    border: 1px solid var(--shell-line);
    background: rgba(22, 22, 30, .97);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .5);
    color: #EDEDF5; font-family: 'Inter', system-ui, sans-serif; font-size: .82rem;
    animation: shellToastIn .24s ease;
    pointer-events: auto;
}
.shell-toast--error { border-color: rgba(251, 113, 133, .4); color: #ffd8de; }
.shell-toast--success { border-color: rgba(52, 211, 153, .35); }
@keyframes shellToastIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: none; }
}


.fav-toggle {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 40px; padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .14); border-radius: 999px;
    background: rgba(255, 255, 255, .04); color: #fff;
    font-family: 'Inter', system-ui, sans-serif; font-size: .82rem; font-weight: 650;
    cursor: pointer; white-space: nowrap;
    transition: background .2s ease, border-color .2s ease, transform .2s ease, color .2s ease;
}
.fav-toggle:hover { transform: translateY(-1px); border-color: rgba(169, 142, 239, .45); }
.fav-toggle svg {
    width: 16px; height: 16px; fill: none; stroke: currentColor;
    stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round;
}
.fav-toggle.is-active {
    border-color: rgba(251, 113, 133, .5);
    background: rgba(251, 113, 133, .14);
    color: #ffd3da;
}
.fav-toggle.is-active svg { fill: #fb7185; stroke: #fb7185; }

.fav-icon-button {
    width: 34px; height: 34px; padding: 0;
    display: grid; place-items: center;
    border-radius: 50%; border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(0, 0, 0, .45); color: #fff; cursor: pointer;
    backdrop-filter: blur(8px);
    transition: transform .2s ease, background .2s ease, color .2s ease;
}
.fav-icon-button:hover { transform: scale(1.07); }
.fav-icon-button svg {
    width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2;
}
.fav-icon-button.is-active { color: #fb7185; }
.fav-icon-button.is-active svg { fill: #fb7185; stroke: #fb7185; }

@media (max-width: 680px) {
    .shell-notifications { width: calc(100vw - 20px); left: 10px !important; right: auto !important; }
    .shell-toasts { right: 10px; left: 10px; bottom: 10px; }
    .shell-toast { max-width: none; }
}


.avatar-dropdown a,
.avatar-dropdown button {
    width: 100%; padding: 10px 18px; border: 0; border-left: 3px solid transparent;
    background: transparent; color: var(--shell-text); text-align: left;
    font-family: 'Inter', system-ui, sans-serif; font-size: .75rem;
    display: block; text-decoration: none; cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.avatar-dropdown a:hover,
.avatar-dropdown button:hover {
    color: #fff; border-left-color: var(--shell-accent); background: rgba(255, 255, 255, .055);
}
.avatar-dropdown .divider { height: 1px; margin: 6px 14px; background: rgba(255, 255, 255, .06); }


button.header-icon, button.header-arrow {
    border: 0; background: none; cursor: pointer; font: inherit; color: inherit;
}
button.header-arrow { padding: 0 2px; line-height: 1; }









.message-prefix {
    padding: 1px 6px; border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    color: #b9b4c4; font-size: 8px; font-weight: 700;
}

.room-code { margin-top: 4px; color: #6f6b7e; font-size: 9px; }
.room-code strong { color: #b9b4c4; font-weight: 600; }

.room-films-panel { padding: 14px 17px; }
.room-films { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.room-films::-webkit-scrollbar { height: 6px; }
.room-films::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, .12); border-radius: 6px; }
.room-film { flex: 0 0 62px; text-decoration: none; color: inherit; }
.room-film__poster {
    display: block; width: 62px; aspect-ratio: 2 / 3; overflow: hidden;
    border-radius: 8px; border: 1px solid rgba(255, 255, 255, .08);
    background: linear-gradient(145deg, #282033, #111117);
}
.room-film__poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.room-film__title {
    display: block; margin-top: 5px; color: #b9b4c4; font-size: 8.5px; line-height: 1.25;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.room-action.fav-toggle-room.is-active { color: #ffd3da; }
.room-action.fav-toggle-room.is-active .icon { fill: #fb7185; stroke: #fb7185; }




.fp-overlay {
    position: fixed; inset: 0; z-index: 3500;
    display: none; align-items: center; justify-content: center; padding: 20px;
    background: rgba(0, 0, 0, .66);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    font-family: 'Inter', system-ui, sans-serif;
}
.fp-overlay.active { display: flex; }

.fp-modal {
    width: min(760px, 100%);
    max-height: min(88vh, 780px);
    display: flex; flex-direction: column;
    padding: 24px 24px 18px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: linear-gradient(165deg, rgba(24, 24, 34, .98), rgba(14, 14, 20, .99));
    box-shadow: 0 30px 90px rgba(0, 0, 0, .58), 0 0 0 1px rgba(169, 142, 239, .06);
    animation: fpIn .26s ease;
}
@keyframes fpIn {
    from { opacity: 0; transform: translateY(16px) scale(.97); }
    to { opacity: 1; transform: none; }
}

.fp-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.fp-title {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 1.25rem; font-weight: 800; letter-spacing: -.03em; color: #fff;
}
.fp-sub { margin-top: 3px; color: #8b8797; font-size: .82rem; }
.fp-close {
    width: 32px; height: 32px; flex: 0 0 auto;
    display: grid; place-items: center;
    border: 1px solid rgba(255, 255, 255, .1); border-radius: 50%;
    background: rgba(255, 255, 255, .04); color: #b6b1c2;
    font-size: .8rem; cursor: pointer;
    transition: color .2s ease, background .2s ease;
}
.fp-close:hover { color: #fff; background: rgba(255, 255, 255, .1); }

.fp-search {
    position: relative; margin-top: 18px;
}
.fp-search svg {
    position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
    width: 17px; height: 17px; fill: none; stroke: #7f7a8b;
    stroke-width: 1.8; stroke-linecap: round; pointer-events: none;
}
.fp-search input {
    width: 100%; min-height: 46px; padding: 0 16px 0 42px;
    border: 1px solid rgba(255, 255, 255, .1); border-radius: 999px;
    background: rgba(255, 255, 255, .05); color: #fff;
    font-family: inherit; font-size: .92rem; outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.fp-search input::placeholder { color: #6f6b7c; }
.fp-search input:focus {
    border-color: var(--shell-accent);
    box-shadow: 0 0 0 4px rgba(169, 142, 239, .13);
}

.fp-status { min-height: 18px; margin-top: 12px; color: #8b8797; font-size: .8rem; }
.fp-status--error { color: #fda4af; }

.fp-grid {
    margin-top: 4px; padding: 6px 4px 4px;
    display: grid; grid-template-columns: repeat(auto-fill, minmax(118px, 1fr)); gap: 14px;
    overflow-y: auto; scrollbar-width: thin;
}
.fp-grid::-webkit-scrollbar { width: 8px; }
.fp-grid::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, .12); border-radius: 8px; }

.fp-card {
    padding: 0; border: 0; background: none; cursor: pointer;
    text-align: left; color: inherit; font: inherit;
    display: flex; flex-direction: column; gap: 7px;
}
.fp-poster {
    position: relative; display: block; width: 100%; aspect-ratio: 2 / 3;
    overflow: hidden; border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: linear-gradient(145deg, #282033, #111117);
    display: grid; place-items: center;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.fp-poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fp-poster__empty { font-size: 1.5rem; color: #5c5768; }
.fp-card:hover .fp-poster {
    transform: translateY(-3px);
    border-color: rgba(169, 142, 239, .5);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .42);
}
.fp-rating {
    position: absolute; top: 7px; left: 7px;
    padding: 2px 7px; border-radius: 999px;
    background: rgba(0, 0, 0, .68); color: #ffd873;
    font-size: .66rem; font-weight: 800;
}
.fp-card__title {
    color: #EDEDF5; font-size: .78rem; font-weight: 650; line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.fp-card__year { color: #7C7C8A; font-size: .7rem; }

.fp-foot { padding-top: 14px; display: flex; justify-content: center; }
.fp-more {
    display: none; align-items: center; justify-content: center;
    min-height: 40px; padding: 0 22px; border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .04); color: #fff;
    font-family: inherit; font-size: .82rem; font-weight: 650; cursor: pointer;
    transition: background .2s ease, border-color .2s ease;
}
.fp-more:hover { background: rgba(255, 255, 255, .09); border-color: rgba(169, 142, 239, .4); }


.film-attach { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
[data-film-preview] { display: none; }
[data-film-preview].active {
    display: inline-flex; align-items: center; gap: 11px;
    padding: 8px 12px 8px 8px; border-radius: 14px;
    border: 1px solid rgba(169, 142, 239, .28);
    background: rgba(169, 142, 239, .09);
    font-family: 'Inter', system-ui, sans-serif;
}
.film-chip__poster {
    width: 34px; aspect-ratio: 2 / 3; flex: 0 0 auto;
    display: grid; place-items: center; overflow: hidden;
    border-radius: 7px; border: 1px solid rgba(255, 255, 255, .1);
    background: linear-gradient(145deg, #282033, #111117);
}
.film-chip__poster img { width: 100%; height: 100%; object-fit: cover; }
.film-chip__body { display: flex; flex-direction: column; min-width: 0; }
.film-chip__title {
    color: #fff; font-size: .8rem; font-weight: 650;
    max-width: 190px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.film-chip__year { color: #8b8797; font-size: .7rem; }
.film-chip__remove {
    width: 22px; height: 22px; flex: 0 0 auto;
    display: grid; place-items: center;
    border: 0; border-radius: 50%; cursor: pointer;
    background: rgba(255, 255, 255, .07); color: #b6b1c2; font-size: .64rem;
    transition: background .2s ease, color .2s ease;
}
.film-chip__remove:hover { background: rgba(251, 113, 133, .2); color: #ffd3da; }

@media (max-width: 560px) {
    .fp-modal { padding: 18px 16px 14px; border-radius: 20px; }
    .fp-grid { grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 11px; }
    .film-chip__title { max-width: 130px; }
}





.shell-messages [hidden] { display: none !important; }

.shell-messages .shell-notifications__list { display: block; padding: 0; }

.shell-messages__back {
    width: 26px; height: 26px; margin-right: 2px;
    display: grid; place-items: center;
    border: 0; border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    color: var(--shell-text); cursor: pointer;
    transition: background .18s ease, color .18s ease;
}
.shell-messages__back svg {
    width: 15px; height: 15px; fill: none; stroke: currentColor;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.shell-messages__back:hover { background: rgba(255, 255, 255, .1); color: #fff; }





.shell-messages__peer {
    flex: 1; min-width: 0;
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; color: inherit;
    border-radius: 10px; padding: 2px 4px; margin: -2px 0;
    transition: background .18s ease;
}
.shell-messages__peer:hover { background: rgba(255, 255, 255, .05); }
.shell-messages__peer-ava {
    position: relative; flex-shrink: 0;
    width: 34px; height: 34px; aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: grid; place-items: center;
    background: linear-gradient(135deg, #8f76e0, #5b4bc4);
    color: #fff; font-size: .8rem; font-weight: 700;
}
.shell-messages__peer-ava img {
    width: 100%; height: 100%; max-width: 100%; max-height: 100%;
    object-fit: cover; border-radius: 50%;
}
.shell-messages__peer-text { min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.shell-messages__peer-name {
    display: flex; align-items: center; gap: 5px;
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: .9rem; font-weight: 750; letter-spacing: -.01em; color: #fff;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.shell-messages__peer-admin { display: inline-grid; place-items: center; flex-shrink: 0; }
.shell-messages__peer-admin svg {
    width: 12px; height: 12px; fill: none; stroke: #f0b429;
    stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round;
}
.shell-messages__peer-presence {
    display: flex; align-items: center; gap: 5px;
    font-size: .7rem; color: var(--shell-text-muted, #8B8797);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.shell-messages__peer.is-online .shell-messages__peer-presence { color: #34D399; }
.shell-messages__peer-dot {
    width: 7px; height: 7px; flex-shrink: 0;
    border-radius: 50%; background: #6F6B7E;
}



.shell-messages__row {
    width: 100%; display: flex; align-items: center; gap: 11px;
    padding: 11px 14px;
    border: 0; border-top: 1px solid rgba(255, 255, 255, .055);
    background: none; cursor: pointer; text-align: left; font: inherit;
    transition: background .18s ease;
}
.shell-messages__row:first-child { border-top: 0; }
.shell-messages__row:hover { background: rgba(255, 255, 255, .04); }
.shell-messages__row--unread { background: rgba(169, 142, 239, .07); }


.shell-messages__avatar {
    position: relative; width: 42px; height: 42px; flex: 0 0 42px;
    display: grid; place-items: center; overflow: visible;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--shell-accent), var(--shell-accent-deep));
}
.shell-messages__avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.shell-messages__initial { color: #fff; font-size: .92rem; font-weight: 700; }

.shell-messages__body { flex: 1; min-width: 0; display: block; }
.shell-messages__top { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.shell-messages__name {
    color: #fff; font-size: .85rem; font-weight: 700;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.shell-messages__time { flex: 0 0 auto; color: var(--shell-muted); font-size: .66rem; }
.shell-messages__preview {
    display: flex; align-items: center; gap: 7px; margin-top: 2px;
    color: var(--shell-text); font-size: .78rem;
}
.shell-messages__preview > :first-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.shell-messages__hint { color: var(--shell-muted); font-style: italic; }
.shell-messages__unread {
    flex: 0 0 auto; min-width: 17px; padding: 1px 6px; border-radius: 999px;
    background: var(--shell-accent); color: #14141c;
    font-size: .62rem; font-weight: 800; text-align: center;
}


.shell-messages--chat .shell-notifications__list { padding: 8px 8px 4px; }


.shell-msg {
    max-width: 78%; margin: 6px 6px 0;
    padding: 8px 12px; border-radius: 14px 14px 14px 4px;
    background: rgba(255, 255, 255, .06);
}
.shell-msg--own {
    margin-left: auto;
    border-radius: 14px 14px 4px 14px;
    background: linear-gradient(135deg, rgba(169, 142, 239, .3), rgba(109, 91, 255, .22));
}
.shell-msg__text { color: #EDEBF5; font-size: .82rem; line-height: 1.45; overflow-wrap: anywhere; }
.shell-msg__time { margin-top: 3px; color: var(--shell-muted); font-size: .62rem; text-align: right; }


.shell-msg__sticker { display: block; width: 92px; height: 92px; }
.shell-msg__sticker img { width: 100%; height: 100%; object-fit: contain; display: block; }
.shell-msg:has(.shell-msg__sticker) { background: none; padding: 2px 6px; }


.shell-messages__composer {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 12px 12px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}
.shell-messages__composer input {
    flex: 1; min-width: 0; height: 38px; padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .1); border-radius: 12px;
    background: rgba(255, 255, 255, .04);
    color: #fff; font: inherit; font-size: .82rem;
    transition: border-color .18s ease, background .18s ease;
}
.shell-messages__composer input::placeholder { color: var(--shell-muted); }
.shell-messages__composer input:focus {
    outline: none; border-color: rgba(169, 142, 239, .45); background: rgba(255, 255, 255, .06);
}
.shell-messages__composer button {
    width: 38px; height: 38px; flex: 0 0 38px;
    display: grid; place-items: center;
    border: 0; border-radius: 12px; cursor: pointer;
    background: linear-gradient(135deg, var(--shell-accent), var(--shell-accent-deep));
    color: #fff;
}
.shell-messages__composer button svg {
    width: 17px; height: 17px; fill: none; stroke: currentColor;
    stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.shell-notifications__foot button {
    border: 0; background: none; cursor: pointer;
    color: var(--shell-text); font-size: .74rem; font-weight: 600; font-family: inherit;
    transition: color .2s ease;
}
.shell-notifications__foot button:hover { color: #fff; }


.shell-notification__glyph {
    width: 19px; height: 19px;
    fill: none; stroke: currentColor;
    stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.shell-notification__avatar--achievement {
    background: linear-gradient(135deg, #F2C230, #E8A33D);
    color: #2A1E05;
}
.shell-notification__avatar--level_up {
    background: linear-gradient(135deg, #FFD75E, #E8A33D);
    color: #2A1E05;
}
.shell-notification__avatar--room {
    background: linear-gradient(135deg, #5EC8B4, #2FBFA8);
    color: #06231E;
}
.shell-notification__avatar--system,
.shell-notification__avatar--admin {
    background: linear-gradient(135deg, var(--shell-accent), var(--shell-accent-deep));
    color: #fff;
}
