:root {
    --bg-1: #0f0c29;
    --bg-2: #302b63;
    --bg-3: #24243e;
    --text: #fff;
    --text-muted: #b8b8cc;
    --text-soft: #d4d4e0;
    --surface: rgba(255, 255, 255, 0.1);
    --surface-2: rgba(0, 0, 0, 0.45);
    --surface-3: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.14);
    --primary: #6c63ff;
    --primary-hover: #5a52e0;
    --primary-soft: rgba(108, 99, 255, 0.25);
    --accent-warm: #ffb74d;
    --danger: #c62828;
    --danger-soft: rgba(255, 80, 80, 0.35);
    --warn: #ff9800;
    --success: #2e7d32;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    --input-bg: rgba(255, 255, 255, 0.18);
    --skeleton: rgba(255, 255, 255, 0.08);
    --skeleton-shine: rgba(255, 255, 255, 0.14);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

[data-theme="light"] {
    --bg-1: #e8eaf6;
    --bg-2: #c5cae9;
    --bg-3: #f5f5f5;
    --text: #1a1a2e;
    --text-muted: #4a4a68;
    --text-soft: #333352;
    --surface: rgba(255, 255, 255, 0.92);
    --surface-2: rgba(255, 255, 255, 0.95);
    --surface-3: rgba(255, 255, 255, 0.85);
    --border: rgba(0, 0, 0, 0.08);
    --primary-soft: rgba(108, 99, 255, 0.15);
    --danger-soft: rgba(255, 80, 80, 0.2);
    --shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    --input-bg: rgba(0, 0, 0, 0.05);
    --skeleton: rgba(0, 0, 0, 0.06);
    --skeleton-shine: rgba(0, 0, 0, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--bg-1), var(--bg-2), var(--bg-3));
    min-height: 100vh;
    color: var(--text);
    transition: background 0.35s ease, color 0.35s ease;
}

.hidden { display: none !important; }

.error { color: #ff8a80; font-size: 14px; margin-top: 8px; }

/* App navigation */
.app-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding: 12px 16px;
    margin-bottom: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.app-nav-brand a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.3px;
}

.brand-icon {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.app-nav-brand a:hover { color: var(--primary); }
.app-nav-brand a:hover .brand-icon { filter: brightness(1.08); }

.app-nav-links {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.app-nav-link {
    padding: 8px 14px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 14px;
    border: 1px solid transparent;
    color: var(--text-muted);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.app-nav-link:hover {
    background: var(--primary-soft);
    color: var(--text);
}

.app-nav-link.active {
    background: var(--primary-soft);
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
}

.app-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-left: auto;
}

.app-nav-user {
    font-size: 14px;
    color: var(--text-soft);
    padding: 6px 10px;
    border-radius: var(--radius-md);
    background: var(--surface-3);
}

.theme-toggle {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.theme-toggle:hover {
    transform: scale(1.05);
    background: var(--primary-soft);
}

/* Buttons */
.btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn:hover:not(:disabled) { background: var(--primary-hover); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-outline:hover:not(:disabled) { background: var(--primary-soft); }

.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-danger { background: var(--danger); }
.btn-warn { background: var(--warn); }

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.btn-icon:hover:not(:disabled) {
    background: var(--primary-soft);
    transform: scale(1.05);
}

.btn-icon:disabled { opacity: 0.45; cursor: not-allowed; }

/* Cards */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.card h2 { font-size: 17px; margin-bottom: 14px; }

/* Forms */
.form-group { margin-bottom: 15px; }

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-soft);
    font-size: 14px;
}

input, select, textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--input-bg);
    color: var(--text);
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    color-scheme: dark;
}

select option,
select optgroup {
    background-color: #2d2a4a;
    color: #ffffff;
}

[data-theme="light"] input,
[data-theme="light"] select,
[data-theme="light"] textarea {
    color-scheme: light;
}

[data-theme="light"] select option,
[data-theme="light"] select optgroup {
    background-color: #ffffff;
    color: #1a1a2e;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-soft);
}

input.input-error, textarea.input-error {
    border-color: #ff5252;
    box-shadow: 0 0 0 3px rgba(255, 82, 82, 0.2);
}

.field-error {
    font-size: 12px;
    color: #ff8a80;
    margin-top: 4px;
    margin-bottom: 8px;
}

.password-wrap {
    position: relative;
    margin-bottom: 12px;
}

.password-wrap input {
    margin-bottom: 0;
    padding-right: 44px;
}

.password-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 4px 8px;
    opacity: 0.7;
    line-height: 1;
}

.password-toggle:hover { opacity: 1; }

/* Stats */
.stats { display: flex; gap: 12px; flex-wrap: wrap; }

.stat {
    position: relative;
    flex: 1;
    min-width: 120px;
    padding: 14px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
    text-align: center;
    transition: border-color 0.2s, background 0.2s;
}

[data-theme="light"] .stat { background: rgba(0, 0, 0, 0.04); }

.stat.clickable { cursor: pointer; }
.stat.clickable:hover { background: var(--primary-soft); border-color: var(--primary); }
.stat.clickable.active {
    border-color: var(--primary);
    background: var(--primary-soft);
    box-shadow: 0 0 0 2px var(--primary-soft);
}

.stat b { display: block; font-size: 28px; color: var(--primary); }
.stat span { font-size: 12px; color: var(--text-muted); }

.stat-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: var(--radius-md);
    background: #e53935;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
}

/* Platform icons */
.platform-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.platform-icon.src-yt { background: #ff0000; }
.platform-icon.src-ru { background: #00a1d9; }
.platform-icon.src-vk { background: #4a76a8; }
.platform-icon.src-none { background: var(--surface-3); color: var(--text-muted); }

/* Skeleton loading */
@keyframes skeleton-pulse {
    0% { opacity: 0.55; }
    50% { opacity: 1; }
    100% { opacity: 0.55; }
}

.skeleton-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.skeleton-card {
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(90deg, var(--skeleton) 0%, var(--skeleton-shine) 50%, var(--skeleton) 100%);
    background-size: 200% 100%;
    animation: skeleton-pulse 1.4s ease-in-out infinite;
}

.skeleton-row {
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(90deg, var(--skeleton) 0%, var(--skeleton-shine) 50%, var(--skeleton) 100%);
    background-size: 200% 100%;
    animation: skeleton-pulse 1.4s ease-in-out infinite;
}

/* File drop zone */
.file-drop-zone {
    border: 2px dashed var(--border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    margin-bottom: 12px;
}

.file-drop-zone:hover,
.file-drop-zone.dragover {
    border-color: var(--primary);
    background: var(--primary-soft);
    color: var(--text);
}

.file-previews {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.file-preview {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    background: var(--surface-3);
}

.file-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-preview .file-preview-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 24px;
}

.file-preview .file-preview-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2px 4px;
    font-size: 9px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-preview .file-preview-remove {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    line-height: 1;
}

/* Support status */
.support-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.support-status.awaiting { background: rgba(255, 152, 0, 0.2); color: var(--warn); }
.support-status.reply { background: rgba(76, 175, 80, 0.25); color: #81c784; }
.support-status.closed { background: rgba(255, 152, 0, 0.2); color: var(--warn); }
.support-status.open { background: rgba(76, 175, 80, 0.25); color: #81c784; }

/* List panels (admin) */
.list-panel {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.list-panel h3 {
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--text-soft);
}

.admin-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 360px;
    overflow-y: auto;
}

.admin-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.15);
    flex-wrap: wrap;
}

[data-theme="light"] .admin-list-item { background: rgba(0, 0, 0, 0.03); }

.admin-list-info { flex: 1; min-width: 180px; }
.admin-list-info strong { display: block; margin-bottom: 4px; }
.admin-list-meta { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

.unread-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e53935;
    margin-left: 6px;
    vertical-align: middle;
}

#toastContainer {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: min(360px, calc(100vw - 32px));
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    animation: toast-in 0.3s ease;
}

.toast.toast-out {
    animation: toast-out 0.35s ease forwards;
}

.toast.error { background: #c62828; }
.toast.success { background: #2e7d32; }
.toast.info { background: #455a64; }
.toast.warn { background: #e65100; }

@keyframes toast-in {
    from { opacity: 0; transform: translateX(24px) scale(0.95); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes toast-out {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 1; transform: translateX(24px); opacity: 0; }
}

.presence-dropdown { position: relative; min-width: 180px; }
.presence-dropdown-btn {
    width: 100%; text-align: left; padding: 8px 10px; border-radius: 10px;
    border: 1px solid var(--border); background: var(--surface-2); color: var(--text);
    cursor: pointer; font-size: 14px;
}
.presence-dropdown-menu {
    position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 50;
    border: 1px solid var(--border); border-radius: 10px; background: var(--surface-3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35); overflow: hidden;
}
.presence-dropdown-menu button {
    display: block; width: 100%; text-align: left; padding: 10px 12px;
    border: none; background: transparent; color: var(--text); cursor: pointer; font-size: 14px;
}
.presence-dropdown-menu button:hover,
.presence-dropdown-menu button.active { background: var(--primary-soft); color: var(--primary); }

.friend-last-msg { font-size: 12px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.friend-typing { font-size: 12px; color: var(--primary); font-style: italic; }

.nav-dm-badge {
    display: inline-block; min-width: 18px; padding: 0 5px; margin-left: 4px;
    background: var(--primary); color: #fff; font-size: 11px; border-radius: var(--radius-sm); text-align: center;
}

.nav-notify-wrap { position: relative; }

.nav-notify-btn {
    position: relative;
    min-width: 36px;
    padding: 6px 10px;
}

.nav-notify-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 16px;
    padding: 0 4px;
    background: var(--danger);
    color: #fff;
    font-size: 10px;
    border-radius: 8px;
    line-height: 16px;
    text-align: center;
}

.nav-notify-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    min-width: 260px;
    max-width: 320px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    z-index: 100;
    padding: 6px 0;
}

.nav-notify-item {
    display: block;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--text);
    text-decoration: none;
}

.nav-notify-item:hover { background: var(--primary-soft); }

.nav-notify-empty {
    padding: 14px;
    font-size: 13px;
    color: var(--text-muted);
}

/* Icons */
.vp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

.vp-icon svg {
    width: 1.15em;
    height: 1.15em;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.btn-icon-sm {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 16px;
}

.icon-group {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

/* Modal */
.vp-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 11000;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    backdrop-filter: blur(4px);
}

.vp-modal {
    width: min(400px, 100%);
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow);
}

.vp-modal-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.vp-modal-text {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.5;
    margin-bottom: 18px;
}

.vp-modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}


.presence-dropdown-btn { border-radius: var(--radius-md); }
.presence-dropdown-menu { border-radius: var(--radius-md); }

.card-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.card-title-row h2 { margin-bottom: 0; }

.section-lead {
    font-size: 14px;
    color: var(--text-muted);
    margin: -6px 0 14px;
    line-height: 1.45;
}

.chat-header-main {
    flex: 1;
    min-width: 0;
    font-weight: 700;
    font-size: 15px;
}

.chat-header-meta {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

/* News feed */
.news-feed-section {
    margin-bottom: 24px;
}

.news-feed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.news-feed-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.news-feed {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px 18px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.news-item-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}

.news-item-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}

.news-item-date {
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.news-item-text {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-soft);
    white-space: pre-wrap;
    word-break: break-word;
}

.news-empty {
    padding: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    border: 1px dashed var(--border);
    border-radius: var(--radius-md);
}

.admin-news-form { margin-bottom: 18px; }

.admin-news-form label {
    display: block;
    font-size: 13px;
    color: var(--text-soft);
    margin-bottom: 6px;
}

.admin-news-form input,
.admin-news-form textarea {
    margin-bottom: 12px;
}

.admin-news-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.admin-news-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 420px;
    overflow-y: auto;
}

.admin-news-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    background: var(--surface-3);
}

.admin-news-item-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 6px;
}

.admin-news-item-head strong { font-size: 14px; }

.admin-news-item-meta {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.admin-news-item-text {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.45;
    white-space: pre-wrap;
    max-height: 80px;
    overflow: hidden;
}

.admin-news-item-actions {
    display: flex;
    gap: 6px;
    margin-top: 10px;
}

/* Onboarding tour (month 6) */
.onboarding-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
}

.onboarding-tooltip {
    position: fixed;
    z-index: 10001;
    max-width: min(320px, calc(100vw - 24px));
    padding: 14px 16px;
    background: var(--surface);
    border: 1px solid var(--primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg, 0 12px 40px rgba(0, 0, 0, 0.35));
    pointer-events: auto;
}

.onboarding-tooltip h4 {
    margin: 0 0 8px;
    font-size: 15px;
}

.onboarding-tooltip p {
    margin: 0 0 12px;
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.45;
}

.onboarding-step {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.onboarding-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.onboarding-highlight {
    position: relative;
    z-index: 9999;
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 12px;
}

.recent-room-link {
    display: block;
    padding: 10px 12px;
    margin-bottom: 8px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--surface-3);
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
}

.recent-room-link span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.recent-room-link:hover:not(.disabled) {
    border-color: var(--primary);
}

.recent-room-link.disabled {
    opacity: 0.55;
    pointer-events: none;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    padding-bottom: max(14px, env(safe-area-inset-bottom));
    background: var(--surface);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
}

.cookie-consent p {
    margin: 0;
    font-size: 13px;
    color: var(--text-soft);
    flex: 1;
    min-width: 200px;
}

.cookie-consent-actions {
    display: flex;
    gap: 8px;
}

.site-footer {
    margin-top: 24px;
    padding-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}

.site-footer a {
    color: var(--primary);
}

.rooms-list-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.tag-filter {
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--surface-3);
    color: var(--text);
    font-size: 13px;
}

.room-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 4px;
}

.room-tag {
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 6px;
    background: rgba(108, 99, 255, 0.15);
    color: var(--primary);
}
