/* Logged-in lobby */
.lobby-shell {
    --lobby-ink: #172530;
    --lobby-muted: #486070;
    --lobby-outline: #d8e5ec;
    --lobby-surface: #ffffff;
    position: relative;
    overflow: hidden;
    margin: 24px 0 14px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid #d5e2e8;
    background: linear-gradient(130deg, #f7fbff 0%, #eef7f3 52%, #fdf6eb 100%);
}

.lobby-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 8%, rgba(70, 171, 250, 0.16) 0%, transparent 34%),
        radial-gradient(circle at 87% 15%, rgba(59, 195, 130, 0.14) 0%, transparent 37%),
        radial-gradient(circle at 82% 85%, rgba(255, 189, 85, 0.2) 0%, transparent 28%);
}

.lobby-hero {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
    gap: 14px;
    margin-bottom: 18px;
}

.lobby-hero.lobby-hero-compact {
    margin-bottom: 14px;
}

.lobby-kicker {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid #c9dff2;
    background: #e9f5ff;
    color: #0f5f85;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 800;
}

.lobby-hero h1 {
    margin: 0 0 10px;
    text-align: left;
    color: #102535;
    font-size: 2.25rem;
    line-height: 1.08;
}

.lobby-lead {
    margin: 0;
    max-width: 680px;
    color: var(--lobby-muted);
    line-height: 1.6;
}

.lobby-focus-strip {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.lobby-focus-item {
    border: 1px solid #d8e5ec;
    border-radius: 11px;
    background: #fff;
    padding: 9px 10px;
}

.lobby-focus-item span {
    display: block;
    font-size: 0.78rem;
    color: #567081;
}

.lobby-focus-item strong {
    display: block;
    margin-top: 2px;
    font-size: 1.22rem;
    color: #11344c;
}

.lobby-quick-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.lobby-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    border-radius: 11px;
    padding: 11px 16px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.lobby-btn:hover {
    transform: translateY(-2px);
}

.lobby-btn.primary {
    color: #fff;
    background: linear-gradient(135deg, #1fa76d 0%, #17754c 100%);
    box-shadow: 0 10px 20px rgba(23, 117, 76, 0.25);
}

.lobby-btn.secondary {
    color: #174058;
    border: 1px solid #caddeb;
    background: #fff;
}

.lobby-highlight {
    border: 1px solid #d6e4e8;
    border-radius: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 12px 24px rgba(20, 49, 59, 0.08);
}

.highlight-title {
    margin: 0 0 8px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #2f5f77;
    font-weight: 800;
}

.highlight-main {
    margin: 0 0 8px;
    color: #102636;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.2;
}

.highlight-sub {
    margin: 0;
    color: #4c6572;
    line-height: 1.45;
}

.highlight-link {
    margin-top: 12px;
    display: inline-block;
    color: #0e6f93;
    font-weight: 700;
    text-decoration: none;
}

.highlight-link:hover {
    text-decoration: underline;
}

.lobby-streak-section,
.lobby-tools {
    position: relative;
    z-index: 1;
}

.lobby-groups {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.lobby-group-card {
    border-radius: 14px;
    border: 1px solid #dbe6ec;
    padding: 14px;
    color: #1f394b;
    background: #fff;
    box-shadow: 0 6px 14px rgba(16, 42, 57, 0.06);
}

.lobby-group-card h2 {
    margin: 0 0 6px;
    text-align: left;
    font-size: 1.06rem;
}

.lobby-group-card p {
    margin: 0 0 10px;
    color: #4e6675;
    line-height: 1.4;
    font-size: 0.9rem;
}

.lobby-points-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.lobby-points-badge {
    font-size: 0.82rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    background: #e8f4fb;
    color: #1b4d68;
    border: 1px solid #b8d8ec;
}

.lobby-points-badge.other {
    background: #fdf0ff;
    color: #6b21a8;
    border-color: #ddb8f0;
}

.lobby-group-links {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.lobby-group-links a {
    text-decoration: none;
    border: 1px solid #cfdee8;
    border-radius: 999px;
    padding: 6px 9px;
    background: #fff;
    color: #1d4c67;
    font-size: 0.82rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.lobby-group-links a:hover {
    background: #f4f9fc;
}

.lobby-link-badge-wrap {
    position: relative;
}

.lobby-notif-badge {
    background: #e11d48;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    border-radius: 999px;
    padding: 1px 6px;
    line-height: 1.4;
}

.lobby-section-head {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.lobby-section-head h2 {
    margin: 0;
    text-align: left;
    font-size: 1.2rem;
}

.lobby-section-head a {
    color: #116f95;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

.lobby-section-head a:hover {
    text-decoration: underline;
}

.lobby-streak-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.lobby-streak-card,
.lobby-streak-empty {
    border-radius: 16px;
    border: 1px solid var(--lobby-outline);
    background: var(--lobby-surface);
    padding: 14px;
    box-shadow: 0 6px 16px rgba(15, 41, 56, 0.06);
}

.lobby-streak-card.done {
    border-color: #82dcb3;
    background: linear-gradient(180deg, #ffffff 0%, #f0fff6 100%);
}

.lobby-streak-card h3,
.lobby-streak-empty h3 {
    margin: 0 0 10px;
    font-size: 1.04rem;
    color: #173246;
}

.lobby-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 12px;
}

.lobby-stats > div {
    border-radius: 10px;
    border: 1px solid #dbe7ec;
    background: #fdfefe;
    padding: 10px;
    text-align: center;
}

.lobby-stats .label {
    display: block;
    font-size: 0.75rem;
    color: #577081;
}

.lobby-stats .value {
    display: block;
    margin-top: 3px;
    font-size: 1.25rem;
    font-weight: 800;
    color: #123045;
}

.lobby-status.success {
    border-radius: 10px;
    padding: 8px 10px;
    background: #2fac70;
    color: #fff;
    font-weight: 700;
    text-align: center;
    font-size: 0.9rem;
}

.lobby-validate-btn {
    display: block;
    border-radius: 10px;
    padding: 9px 11px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    background: linear-gradient(135deg, #1274a4 0%, #0b5c83 100%);
}

.lobby-validate-btn:hover {
    background: linear-gradient(135deg, #0f6a96 0%, #085271 100%);
}

.lobby-streak-empty p {
    margin: 0 0 10px;
    color: #4b6270;
}

.lobby-streak-empty a {
    color: #0e6d92;
    font-weight: 700;
    text-decoration: none;
}

.lobby-streak-empty a:hover {
    text-decoration: underline;
}

.lobby-tools {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.lobby-tool-card {
    text-decoration: none;
    border-radius: 14px;
    border: 1px solid #dbe6ec;
    padding: 14px;
    color: #1c3648;
    background: #fff;
    box-shadow: 0 6px 14px rgba(16, 42, 57, 0.06);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.lobby-tool-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 11px 22px rgba(16, 42, 57, 0.12);
}

.tool-title {
    display: block;
    font-size: 1.04rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.tool-desc {
    display: block;
    font-size: 0.88rem;
    color: #4f6775;
    line-height: 1.4;
}

.tone-blue { background: linear-gradient(180deg, #ffffff 0%, #eff8ff 100%); }
.tone-sand { background: linear-gradient(180deg, #ffffff 0%, #fff8eb 100%); }
.tone-mint { background: linear-gradient(180deg, #ffffff 0%, #effbf4 100%); }
.tone-sky { background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%); }
.tone-rose { background: linear-gradient(180deg, #ffffff 0%, #fff2f3 100%); }
.tone-gold { background: linear-gradient(180deg, #ffffff 0%, #fff7e3 100%); }
.tone-lilac { background: linear-gradient(180deg, #ffffff 0%, #f5f2ff 100%); }

.lobby-journal-quote {
    margin: 0 0 12px;
    padding: 10px 14px;
    border-left: 3px solid #a78bfa;
    background: #f5f2ff;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #4c3a8a;
}

.lobby-journal-quote p {
    margin: 0 0 4px;
    font-size: 0.88rem;
    line-height: 1.5;
}

.lobby-journal-quote footer {
    font-size: 0.78rem;
    color: #7c6ab0;
    font-style: normal;
}

.lobby-journal-write {
    margin-bottom: 12px;
}

.lobby-journal-write summary {
    cursor: pointer;
    font-size: 0.83rem;
    font-weight: 600;
    color: #6d4fc7;
    list-style: none;
    padding: 4px 0;
}

.lobby-journal-write summary::-webkit-details-marker { display: none; }

.lobby-journal-form {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}

.lobby-journal-form textarea {
    width: 100%;
    border: 1px solid #c4b5f5;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 0.88rem;
    resize: vertical;
    font-family: inherit;
    color: #1b3a4d;
    background: #fdfbff;
    box-sizing: border-box;
}

.lobby-journal-form textarea:focus {
    outline: none;
    border-color: #7c3aed;
}

.lobby-journal-form button {
    align-self: flex-end;
    padding: 5px 14px;
    background: #7c3aed;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.83rem;
    font-weight: 700;
    cursor: pointer;
}

.lobby-journal-form button:hover {
    background: #6d28d9;
}
.tone-cyan { background: linear-gradient(180deg, #ffffff 0%, #edfbff 100%); }
.tone-emerald { background: linear-gradient(180deg, #ffffff 0%, #ecfff5 100%); }
.tone-gray { background: linear-gradient(180deg, #ffffff 0%, #f3f6f8 100%); }
.tone-indigo { background: linear-gradient(180deg, #ffffff 0%, #eef0ff 100%); }
.tone-red { background: linear-gradient(180deg, #ffffff 0%, #fff1f1 100%); }

@media (max-width: 980px) {
    .lobby-hero {
        grid-template-columns: 1fr;
    }

    .lobby-focus-strip {
        grid-template-columns: 1fr;
    }

    .lobby-tools {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lobby-groups {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .lobby-shell {
        padding: 18px 14px;
    }

    .lobby-hero h1 {
        font-size: 1.9rem;
    }

    .lobby-streak-grid {
        grid-template-columns: 1fr;
    }

    .lobby-tools {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .lobby-btn {
        width: 100%;
    }

    .lobby-section-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Logged-out welcome page */
.guest-home {
    --guest-ink: #16232e;
    --guest-muted: #415868;
    --guest-surface: #ffffff;
    --guest-accent: #1f9f6b;
    --guest-accent-dark: #177a51;
    --guest-outline: #dce7ed;

    position: relative;
    overflow: hidden;
    margin: 26px 0 16px;
    padding: 28px;
    border-radius: 24px;
    color: var(--guest-ink);
    border: 1px solid #d7e4ea;
    background: linear-gradient(128deg, #f8fbff 0%, #eef5f2 55%, #fdf5ea 100%);
    animation: guestFadeIn 520ms ease both;
}

.guest-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 13% 12%, rgba(83, 173, 255, 0.14) 0%, transparent 36%),
        radial-gradient(circle at 86% 20%, rgba(48, 208, 130, 0.18) 0%, transparent 38%),
        radial-gradient(circle at 77% 83%, rgba(250, 188, 86, 0.22) 0%, transparent 30%);
}

.guest-hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
    align-items: stretch;
    margin-bottom: 16px;
}

.guest-hero-copy {
    padding: 12px 8px;
    animation: guestRiseIn 620ms ease both;
}

.guest-kicker {
    display: inline-block;
    margin-bottom: 14px;
    font: 700 0.8rem/1.2 "Trebuchet MS", "Segoe UI", sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #145d80;
    background: #e6f4ff;
    border: 1px solid #cbe6f9;
    border-radius: 999px;
    padding: 6px 12px;
}

.guest-home h1 {
    margin-bottom: 14px;
    text-align: left;
    font: 800 2.45rem/1.08 "Trebuchet MS", "Segoe UI", sans-serif;
    color: #0f2233;
}

.guest-lead {
    max-width: 670px;
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.65;
    color: var(--guest-muted);
}

.guest-actions {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.guest-btn {
    min-width: 160px;
    display: inline-block;
    padding: 11px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.16s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.guest-btn.primary {
    color: #fff;
    background: linear-gradient(135deg, #25ad73 0%, #1b8758 100%);
    box-shadow: 0 8px 18px rgba(31, 143, 87, 0.26);
}

.guest-btn.secondary {
    color: var(--guest-accent-dark);
    background: #ffffff;
    border: 1px solid #c7dccf;
}

.guest-btn:hover {
    transform: translateY(-2px);
}

.guest-btn.primary:hover {
    box-shadow: 0 10px 22px rgba(31, 143, 87, 0.32);
    background: linear-gradient(135deg, #1f9f68 0%, #177249 100%);
}

.guest-btn.secondary:hover {
    background: #f5fbf8;
}

.guest-badges {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.guest-badges span {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid #d5e4e0;
    color: #2c4a3d;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 0.84rem;
    font-weight: 600;
}

.guest-hero-panel {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(2px);
    border: 1px solid #dbe8e2;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 14px 30px rgba(15, 50, 38, 0.1);
    animation: guestRiseIn 760ms ease both;
}

.panel-title {
    margin-bottom: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #244558;
}

.panel-stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.panel-stat {
    background: #fff;
    border: 1px solid #dbe7ea;
    border-radius: 10px;
    text-align: center;
    padding: 10px 6px;
}

.panel-label {
    display: block;
    color: #587181;
    font-size: 0.75rem;
    font-weight: 600;
}

.panel-stat strong {
    font-size: 1.14rem;
    color: #0f3146;
}

.panel-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.panel-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #294555;
    font-size: 0.92rem;
}

.panel-list li + li {
    margin-top: 10px;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2eb072 0%, #17814f 100%);
    box-shadow: 0 0 0 3px rgba(46, 176, 114, 0.18);
}

.guest-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 10px 0 16px;
}

.guest-card {
    background: var(--guest-surface);
    border: 1px solid var(--guest-outline);
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: 0 6px 18px rgba(18, 45, 32, 0.06);
    animation: guestRiseIn 820ms ease both;
}

.guest-card h2 {
    margin: 0 0 10px;
    text-align: left;
    font-size: 1.08rem;
}

.guest-card p {
    margin: 0;
    color: var(--guest-muted);
    line-height: 1.5;
}

.tone-mint {
    background: linear-gradient(180deg, #ffffff 0%, #f2fbf5 100%);
}

.tone-sand {
    background: linear-gradient(180deg, #ffffff 0%, #fff9ee 100%);
}

.tone-rose {
    background: linear-gradient(180deg, #ffffff 0%, #fff3f2 100%);
}

.tone-sky {
    background: linear-gradient(180deg, #ffffff 0%, #eff8ff 100%);
}

.guest-steps {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 2px 0 18px;
}

.guest-steps article {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid #d9e6e4;
    border-radius: 14px;
    padding: 14px;
}

.guest-steps span {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 800;
    color: #1c6d48;
    background: #e7f6ed;
    border: 1px solid #cde8d9;
    border-radius: 999px;
    padding: 4px 9px;
    margin-bottom: 10px;
}

.guest-steps p {
    margin: 0;
    color: #35505f;
    line-height: 1.45;
}

.guest-bottom-cta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: 14px;
    padding: 14px;
    background: linear-gradient(120deg, #0f3044 0%, #16465f 60%, #1d5c7c 100%);
    color: #f2f8fc;
}

.guest-bottom-cta p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.45;
}

.guest-bottom-cta .guest-btn.primary {
    box-shadow: none;
}

@keyframes guestFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes guestRiseIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 860px) {
    .guest-home {
        padding: 20px 14px;
    }

    .guest-hero-shell {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .guest-home h1 {
        font-size: 2rem;
    }

    .guest-steps {
        grid-template-columns: 1fr;
    }

    .guest-grid {
        grid-template-columns: 1fr;
    }

    .guest-bottom-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 520px) {
    .guest-home h1 {
        font-size: 1.72rem;
    }

    .guest-lead {
        font-size: 0.98rem;
        line-height: 1.55;
    }

    .guest-actions {
        flex-direction: column;
    }

    .guest-btn {
        width: 100%;
        text-align: center;
    }

    .guest-badges span {
        font-size: 0.78rem;
    }

    .panel-stat strong {
        font-size: 1.04rem;
    }
}


/* ── Récap partenaire ──────────────────────────────────────────── */

.recap-section {
    margin: 0 auto 1.5rem;
    max-width: 700px;
    background: var(--surface, #1e1e2e);
    border: 1px solid var(--border, #2e2e3e);
    border-radius: 12px;
    overflow: hidden;
}

.recap-kudos-received {
    background: linear-gradient(90deg, #7c3aed22, #ec489922);
    border-bottom: 1px solid var(--border, #2e2e3e);
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    color: #e879f9;
    font-weight: 600;
}

.recap-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    flex-wrap: wrap;
}

.recap-title {
    font-size: 0.9rem;
    color: var(--text-muted, #9a9ab0);
}

.recap-title strong {
    color: var(--text, #e2e8f0);
}

.recap-kudos-btn {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    min-height: 36px;
}

.recap-kudos-btn:active {
    opacity: 0.85;
}

.recap-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--border, #2e2e3e);
    max-height: 260px;
    overflow-y: auto;
}

.recap-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--border, #2e2e3e);
    font-size: 0.875rem;
}

.recap-item:last-child {
    border-bottom: none;
}

.recap-task-title {
    color: var(--text, #e2e8f0);
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.recap-task-date {
    color: var(--text-muted, #9a9ab0);
    font-size: 0.8rem;
    flex-shrink: 0;
}

@media (max-width: 560px) {
    .recap-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .recap-kudos-btn {
        width: 100%;
        text-align: center;
        min-height: 44px;
    }
}

.recap-kudos-total {
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    color: var(--text, #e2e8f0);
    border-bottom: 1px solid var(--border, #2e2e3e);
}

.recap-kudos-total strong {
    color: #e879f9;
    font-size: 1.05rem;
}

/* Humeurs sur la home */
.lobby-moods {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.lobby-mood-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lobby-mood-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #334155;
}

.lobby-mood-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.lobby-mood-dot.green  { background: #22c55e; }
.lobby-mood-dot.orange { background: #f97316; }
.lobby-mood-dot.red    { background: #ef4444; }
.lobby-mood-dot.grey   { background: #cbd5e1; }

.lobby-mood-label {
    font-size: 0.82rem;
    font-weight: 600;
}

.lobby-mood-label.green  { color: #16a34a; }
.lobby-mood-label.orange { color: #ea580c; }
.lobby-mood-label.red    { color: #dc2626; }
.lobby-mood-label.grey   { color: #94a3b8; }
