/* ═══════════════════════════════════════════════════════════════════════════
   ChatRoom — Design System
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Tokens ──────────────────────────────────────────────────────────────── */
:root {
    --bg-base:    #0b0d14;
    --bg-surface: #11131e;
    --bg-card:    #171926;
    --bg-hover:   #1e2130;
    --bg-input:   #191c29;
    --bg-muted:   #1d2030;

    --border-faint:   #1c1f30;
    --border-default: #252840;
    --border-strong:  #303452;

    --text-primary:   #e4e6f0;
    --text-secondary: #6b7090;
    --text-muted:     #3e4060;

    --accent:         #4f6ef7;
    --accent-hover:   #6b85f8;
    --accent-dim:     rgba(79,110,247,.15);
    --accent-glow:    rgba(79,110,247,.25);

    --success:        #22d3a0;
    --success-dim:    rgba(34,211,160,.15);
    --danger:         #f05252;
    --danger-dim:     rgba(240,82,82,.12);
    --warning:        #fbbf24;

    --radius-sm: 6px;
    --radius:    10px;
    --radius-lg: 14px;
    --radius-xl: 20px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,.4);
    --shadow:    0 4px 16px rgba(0,0,0,.5);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.6);
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    height: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    background: var(--bg-base);
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; font-family: inherit; background: none; }
input, select, textarea { font-family: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ── Scrollbar ───────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-default); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-strong); }

/* ── Utility buttons ─────────────────────────────────────────────────────── */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 500;
    transition: color .15s, border-color .15s, background .15s;
    white-space: nowrap;
}
.btn-ghost:hover { color: var(--text-primary); border-color: var(--border-strong); background: var(--bg-hover); }

.btn-sm { padding: 4px 10px; font-size: 12px; }

.btn-icon-text { gap: 5px; }

/* ═══════════════════════════════════════════════════════════════════════════
   LOGIN PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

/* Animated gradient background */
.login-bg {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 10%, rgba(79,110,247,.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 90%, rgba(139,92,246,.08) 0%, transparent 60%),
        var(--bg-base);
    z-index: 0;
}

.login-card {
    position: relative;
    z-index: 1;
    background: var(--bg-surface);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.03);
    animation: card-in .4s cubic-bezier(.16,1,.3,1) both;
}

@keyframes card-in {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.login-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.logo-mark {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 12px var(--accent-glow);
    flex-shrink: 0;
}

.login-logo h1 { font-size: 22px; font-weight: 700; letter-spacing: -.3px; }

.login-subtitle {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 32px;
    padding-left: 50px;
}

/* Fields */
.field { margin-bottom: 22px; }

.field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px;
}

.field input[type="text"] {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-default);
    border-radius: var(--radius);
    color: var(--text-primary);
    padding: 11px 14px;
    font-size: 15px;
    transition: border-color .15s, box-shadow .15s;
}
.field input[type="text"]:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}
.field input[type="text"]::placeholder { color: var(--text-muted); }

/* Color picker */
.color-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: var(--c, #4f6ef7);
    transition: transform .15s, box-shadow .15s, border-color .15s;
    flex-shrink: 0;
}
.swatch:hover { transform: scale(1.15); box-shadow: 0 0 0 3px rgba(255,255,255,.1); }
.swatch.active { border-color: #fff; box-shadow: 0 0 0 2px var(--c, var(--accent)); }

.swatch-custom {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px dashed var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
    transition: border-color .15s, color .15s;
    flex-shrink: 0;
}
.swatch-custom:hover { border-color: var(--accent); color: var(--accent); }
.swatch-custom input[type="color"] { position: absolute; opacity: 0; width: 1px; height: 1px; }

.color-bar {
    height: 3px;
    border-radius: 2px;
    margin-top: 10px;
    background: var(--accent);
    transition: background .2s;
}

/* Join button */
.btn-join {
    width: 100%;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius);
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -.1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .15s, box-shadow .15s, transform .1s;
    box-shadow: 0 4px 14px var(--accent-glow);
    margin-top: 8px;
}
.btn-join:hover { background: var(--accent-hover); box-shadow: 0 6px 20px var(--accent-glow); transform: translateY(-1px); }
.btn-join:active { transform: translateY(0); }

/* Last login bar */
.last-login-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 11px 14px;
    background: var(--bg-muted);
    border: 1px solid var(--border-faint);
    border-radius: var(--radius);
    font-size: 13px;
}
.ll-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}
.ll-label { color: var(--text-secondary); flex-shrink: 0; }
.ll-name  { color: var(--text-primary); font-weight: 600; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ll-use {
    background: var(--accent-dim);
    color: var(--accent);
    border: 1px solid rgba(79,110,247,.3);
    border-radius: var(--radius-sm);
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 600;
    transition: background .15s;
    flex-shrink: 0;
}
.ll-use:hover { background: rgba(79,110,247,.25); }

/* ═══════════════════════════════════════════════════════════════════════════
   APP SHELL (shared header)
   ═══════════════════════════════════════════════════════════════════════════ */

.app-layout { min-height: 100vh; display: flex; flex-direction: column; }

.app-header {
    height: 58px;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-faint);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    flex-shrink: 0;
}

.app-header-brand { display: flex; align-items: center; gap: 10px; }

.brand-icon {
    width: 32px;
    height: 32px;
    background: var(--accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.brand-name { font-size: 16px; font-weight: 700; letter-spacing: -.2px; }

.app-header-user { display: flex; align-items: center; gap: 12px; }

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.user-label { font-size: 14px; font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════════════════
   LOBBY
   ═══════════════════════════════════════════════════════════════════════════ */

.lobby-main {
    flex: 1;
    padding: 48px 32px;
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
}

.lobby-heading { margin-bottom: 32px; }
.lobby-heading h2 { font-size: 26px; font-weight: 700; letter-spacing: -.4px; }
.lobby-heading p  { color: var(--text-secondary); font-size: 14px; margin-top: 4px; }

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
    gap: 16px;
}

.room-card {
    background: var(--bg-card);
    border: 1px solid var(--border-faint);
    border-radius: var(--radius-lg);
    padding: 24px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color .2s, background .2s, transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden;
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    opacity: 0;
    transition: opacity .2s;
}
.room-card:hover {
    border-color: var(--border-strong);
    background: var(--bg-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.room-card:hover::before { opacity: 1; }

.rc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rc-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-dim);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    color: var(--accent);
}

.rc-live {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    transition: background .3s;
}
.rc-live.has-users {
    background: var(--success);
    box-shadow: 0 0 6px var(--success);
    animation: live-pulse 2s ease-in-out infinite;
}
@keyframes live-pulse {
    0%, 100% { box-shadow: 0 0 4px var(--success); }
    50%       { box-shadow: 0 0 10px var(--success); }
}

.rc-name { font-size: 18px; font-weight: 700; letter-spacing: -.2px; }

.rc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rc-count {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-secondary);
}
.rc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
}
.rc-num { font-weight: 600; color: var(--success); }

.rc-arrow { font-size: 16px; color: var(--text-muted); transition: color .2s, transform .2s; }
.room-card:hover .rc-arrow { color: var(--accent); transform: translateX(3px); }

/* ═══════════════════════════════════════════════════════════════════════════
   ROOM
   ═══════════════════════════════════════════════════════════════════════════ */

.room-layout {
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--bg-base);
}

/* Room Header */
.room-header {
    height: 54px;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-faint);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    flex-shrink: 0;
    gap: 12px;
}

.rh-left  { display: flex; align-items: center; gap: 12px; min-width: 0; }
.rh-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.rh-room-info {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
}

.rh-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 6px var(--success);
    flex-shrink: 0;
}

.rh-name {
    font-size: 15px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rh-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-secondary);
    background: var(--bg-muted);
    border: 1px solid var(--border-faint);
    border-radius: 20px;
    padding: 3px 10px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
}

/* Room Body */
.room-body { display: flex; flex: 1; overflow: hidden; }

/* ── Chat Panel ───────────────────────────────────────────────────────────── */
.chat-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px 20px 8px;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.messages-welcome {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 32px 0 24px;
    border-bottom: 1px solid var(--border-faint);
    margin-bottom: 16px;
}

.welcome-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-dim);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 4px;
}

.messages-welcome h3 { font-size: 20px; font-weight: 700; }
.messages-welcome p  { color: var(--text-secondary); font-size: 14px; }

/* Message rows */
.message {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 3px 6px;
    border-radius: var(--radius-sm);
    line-height: 1.55;
    transition: background .1s;
}
.message:hover { background: var(--bg-surface); }

.msg-time {
    font-size: 11px;
    color: var(--text-muted);
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
    min-width: 34px;
    text-align: right;
}
.msg-sender {
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
}
.msg-sender::after { content: ':'; opacity: .5; }
.msg-text { word-break: break-word; color: var(--text-primary); font-size: 14px; }

.message.system {
    justify-content: center;
    color: var(--text-muted);
    font-size: 11px;
    font-style: italic;
    background: none !important;
    padding: 8px 0;
    letter-spacing: .02em;
}

/* Chat input */
.chat-input-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-faint);
}

#message-input {
    flex: 1;
    background: var(--bg-input);
    border: 1px solid var(--border-default);
    border-radius: var(--radius);
    color: var(--text-primary);
    padding: 10px 14px;
    font-size: 14px;
    transition: border-color .15s, box-shadow .15s;
}
#message-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}
#message-input::placeholder { color: var(--text-muted); font-size: 13px; }

#btn-send {
    width: 38px;
    height: 38px;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .15s, transform .1s;
}
#btn-send:hover { background: var(--accent-hover); transform: scale(1.05); }
#btn-send:active { transform: scale(.96); }

/* ── Side Panel ───────────────────────────────────────────────────────────── */
.side-panel {
    width: 260px;
    flex-shrink: 0;
    background: var(--bg-surface);
    border-left: 1px solid var(--border-faint);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sp-section { display: flex; flex-direction: column; }

.sp-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-faint);
    flex-shrink: 0;
}

.sp-badge {
    background: var(--bg-muted);
    border-radius: 10px;
    padding: 1px 7px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Users section */
.sp-users { flex: 1; min-height: 0; }

.users-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-height: 0;
}

/* User Card */
.user-card {
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: background .15s, box-shadow .3s;
    border-left: 3px solid var(--user-color, var(--accent));
    background: var(--bg-card);
}

.user-card.speaking {
    animation: speaking-glow 1.4s ease-in-out infinite;
    background: var(--bg-hover);
}

@keyframes speaking-glow {
    0%, 100% { box-shadow: 0 0 0 1px var(--user-color, var(--accent)); }
    50%       { box-shadow: 0 0 0 1px var(--user-color, var(--accent)),
                            inset 0 0 20px rgba(255,255,255,.02),
                            0 0 14px var(--user-color, var(--accent)); }
}

.user-card-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.speaking-indicator {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--user-color, var(--accent));
    opacity: .3;
    flex-shrink: 0;
    transition: opacity .2s, transform .2s;
}
.user-card.speaking .speaking-indicator { opacity: 1; transform: scale(1.4); }

.user-name {
    font-size: 13px;
    font-weight: 600;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-me-badge {
    font-size: 10px;
    color: var(--text-muted);
    background: var(--bg-muted);
    border-radius: 4px;
    padding: 1px 5px;
    flex-shrink: 0;
    font-weight: 600;
}

.volume-control { display: flex; align-items: center; gap: 6px; padding: 0 2px; }
.vol-icon { font-size: 10px; color: var(--text-muted); flex-shrink: 0; }
.volume-slider {
    flex: 1;
    height: 3px;
    accent-color: var(--text-muted);
    cursor: pointer;
    transition: accent-color .15s;
}
.volume-slider:hover { accent-color: var(--user-color, var(--accent)); }

/* ── Audio Controls Section ───────────────────────────────────────────────── */
.sp-audio {
    border-top: 1px solid var(--border-faint);
    flex-shrink: 0;
}

.audio-controls {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ac-row { display: flex; flex-direction: column; gap: 5px; }
.ac-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.ac-select {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-default);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    padding: 6px 8px;
    font-size: 12px;
    transition: border-color .15s;
    cursor: pointer;
}
.ac-select:focus { outline: none; border-color: var(--accent); }

.ac-mute-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 500;
    transition: background .15s, border-color .15s, color .15s;
}
.ac-mute-btn:hover { background: var(--bg-hover); border-color: var(--border-strong); }
.ac-mute-btn.muted {
    background: var(--danger-dim);
    border-color: var(--danger);
    color: var(--danger);
}

.mute-label { font-size: 13px; font-weight: 500; }

.ac-slider-row { display: flex; flex-direction: column; gap: 5px; }

.ac-slider-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ac-slider-label { font-size: 12px; color: var(--text-secondary); font-weight: 500; }
.ac-slider-val   { font-size: 11px; color: var(--accent); font-weight: 600; font-variant-numeric: tabular-nums; }

.ac-slider {
    width: 100%;
    height: 4px;
    accent-color: var(--accent);
    cursor: pointer;
}

.ac-slider-gate { accent-color: var(--warning); }

.ac-hint {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
    margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   JOIN OVERLAY (iOS Safari getUserMedia fix)
   ═══════════════════════════════════════════════════════════════════════════ */

.join-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(11, 13, 20, .92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: opacity .25s;
}

.join-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.join-overlay-card {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    max-width: 360px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: card-in .35s cubic-bezier(.16,1,.3,1) both;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.join-overlay-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 4px;
}

.join-overlay-card h2 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.3px;
}

.join-overlay-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.btn-join-room {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius);
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 8px;
    transition: background .15s, transform .1s, box-shadow .15s;
    box-shadow: 0 4px 14px var(--accent-glow);
}
.btn-join-room:hover  { background: var(--accent-hover); transform: translateY(-1px); }
.btn-join-room:active { transform: translateY(0); }
.btn-join-room:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.join-overlay-hint {
    font-size: 12px;
    color: var(--text-muted);
}
