/* ============================================================
   CHAT PAGE
============================================================ */

.chat-body {
    background: var(--page-background);
}

.chat-page {
    padding: 4px 0;
}

/* ============================================================
   HEADING
============================================================ */

.chat-heading-section {
    margin-bottom: 25px;
}

.chat-room-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--surface);
}

.chat-room-heading-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.chat-room-heading-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--surface-muted);
    color: var(--header-dark);
    font-size: 28px;
    flex-shrink: 0;
}

.chat-room-heading-icon img {
    width: 46px;
    height: 46px;
}

.chat-room-heading h1 {
    margin: 10px 0 8px;
    font-size: 32px;
}

.chat-room-heading p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.chat-room-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chat-room-badge,
.chat-room-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.chat-room-badge {
    background: var(--surface-muted);
    color: var(--header-dark);
}

.chat-room-badge-official {
    background: #eaf7ef;
    color: #2d7a38;
}

.chat-room-badge-private {
    background: var(--surface)3e6;
    color: #d26b00;
}

.chat-room-category {
    background: var(--surface-muted);
    color: var(--text-muted);
}

/* ============================================================
   PANEL
============================================================ */

.chat-room-panel {
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    background: var(--surface);
}

.chat-room-panel-header {
    padding: 6px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-dark);
    background: var(--surface-muted);
}

.chat-room-panel-header h2 {
    margin: 5px 0 0;
    font-size: 16px;
}

.chat-room-member {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

.chat-room-member strong {
    color: var(--text);
}

.chat-room-notice {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 6px 15px;
    border-bottom: 1px solid var(--border);
    background: var(--surface)9e8;
}

.chat-room-notice i {
    margin-top: 2px;
    color: #d08b00;
}

.chat-room-notice p {
    margin: 0;
    color: #675b2b;
    line-height: 1.6;
}

/* ============================================================
   CHAT EMBED
============================================================ */

.chat-room-embed {
    min-height: 100%;
    background: var(--surface);
}

.chat-room-embed iframe {
    display: block;
    width: 100%;
    min-height: 100%;
    border: 0;
}

/* ============================================================
   BUTTONS
============================================================ */

.chat-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: .15s;
}

.chat-button-primary {
    background: var(--header-dark);
    color: #ffffff;
}

.chat-button-primary:hover {
    background: var(--header-light);
}

.chat-button-secondary {
    border: 1px solid var(--border-dark);
    background: var(--surface);
    color: var(--text);
}

.chat-button-secondary:hover {
    background: var(--surface-muted);
}

/* ============================================================
   PRIVATE ROOM
============================================================ */

.chat-access-section {
    padding: 80px 0;
}

.chat-access-panel {
    max-width: 650px;
    margin: auto;
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--surface);
    text-align: center;
}

.chat-access-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--surface)3e6;
    color: #d26b00;
    font-size: 34px;
}

.chat-access-panel h1 {
    margin: 12px 0;
}

.chat-access-panel p {
    margin: 0 auto 25px;
    max-width: 420px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   NOSCRIPT
============================================================ */

.chat-room-noscript {
    padding: 60px 30px;
    text-align: center;
}

.chat-room-noscript i {
    font-size: 42px;
    color: #d26b00;
}

.chat-room-noscript h2 {
    margin: 20px 0 10px;
}

.chat-room-noscript p {
    margin: 0;
    color: var(--text-muted);
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width:900px) {

    .chat-room-heading,
    .chat-room-panel-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .chat-room-heading-content {
        flex-direction: column;
    }

    .chat-room-heading-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .chat-room-heading h1 {
        font-size: 28px;
    }

    .chat-room-member {
        width: 100%;
    }
}

@media (max-width:600px) {

    .chat-page {
        padding: 20px 0 35px;
    }

    .chat-room-heading,
    .chat-room-panel-header,
    .chat-room-notice {
        padding: 18px;
    }

    .chat-room-heading h1 {
        font-size: 24px;
    }

    .chat-room-panel-header h2 {
        font-size: 20px;
    }

    .chat-room-embed,
    .chat-room-embed iframe {
        min-height: 560px;
    }

    .chat-access-panel {
        padding: 25px 20px;
    }
}

.chat-player{
    display:flex;
    align-items:center;
    gap:12px;
    padding:4px 8px;
}

.chat-player-logo{
    width:76px;
    height:46px;
    object-fit:cover;
}

.chat-player-placeholder{
    display:flex;
    align-items:center;
    justify-content:center;
    background:#0a6f8d;
    color:var(--surface);
}

.chat-player-info{
    display:flex;
    flex-direction:column;
    min-width:170px;
}

.chat-player-info strong{
    font-size:14px;
}

.chat-player-info span{
    font-size:12px;
    color:var(--text-muted);
}

.chat-player-button{
    width:38px;
    height:38px;
    border:0;
    border-radius:50%;
    cursor:pointer;
    color:var(--text);
    background:var(--border-dark);
}

.chat-player-volume{
    width:120px;
    height:4px;
    appearance:none;
    -webkit-appearance:none;
    background:var(--border-dark);
    border-radius:4px;
    cursor:pointer;
}

/* Chrome / Edge */
.chat-player-volume::-webkit-slider-thumb{
    appearance:none;
    -webkit-appearance:none;
    width:14px;
    height:14px;
    border-radius:50%;
    background:var(--text);
    cursor:pointer;
}

/* Firefox */
.chat-player-volume::-moz-range-thumb{
    width:14px;
    height:14px;
    border:0;
    border-radius:50%;
    background:var(--text);
    cursor:pointer;
}

.chat-player-volume::-moz-range-progress{
    background:var(--text);
    height:4px;
    border-radius:4px;
}

.chat-player-volume::-moz-range-track{
    background:var(--border-dark);
    height:4px;
    border-radius:4px;
}

.chat-select-station{
    display:flex;
    align-items:center;
    gap:8px;
    color:#0a6f8d;
    font-weight:600;
    text-decoration:none;
}

/* ============================================================
   CHATROOM SEO LANDING PAGE
   Append this to assets/css/chat.css
============================================================ */

.chat-room-breadcrumbs {
    display: flex;
    margin: 0 0 1rem;
    gap: 0.55rem;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.chat-room-breadcrumbs i {
    font-size: 0.65rem;
    opacity: 0.55;
}

.chat-room-breadcrumbs a {
    text-decoration: none;
}

.chat-room-landing-header {
    display: grid;
    margin-bottom: 1.25rem;
    padding: clamp(1.4rem, 4vw, 2.4rem);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--surface);
}

.chat-room-category {
    display: inline-flex;
    margin-bottom: 0.85rem;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.88rem;
    font-weight: 700;
}

.chat-room-landing-copy h1 {
    margin: 0;
    font-size: clamp(1.8rem, 5vw, 3rem);
    line-height: 1.08;
}

.chat-room-landing-copy > p {
    max-width: 760px;
    margin: 0.85rem 0 0;
    font-size: 1.08rem;
    line-height: 1.65;
}

.chat-room-landing-actions,
.chat-room-signin-actions {
    display: flex;
    margin-top: 1.25rem;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.chat-room-landing-badge {
    display: flex;
    width: 220px;
    min-height: 170px;
    padding: 1.25rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 4px;
}

.chat-room-landing-badge > i {
    margin-bottom: 0.8rem;
    font-size: 2.8rem;
}

.chat-room-landing-badge strong,
.chat-room-landing-badge span {
    display: block;
}

.chat-room-landing-badge span {
    margin-top: 0.35rem;
    font-size: 0.88rem;
    opacity: 0.75;
}

.chat-room-topic {
    margin: 0.4rem 0 0;
    opacity: 0.8;
}

.chat-room-signin-panel {
    display: grid;
    margin-bottom: 1.25rem;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1.5rem;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--surface);
}

.chat-room-signin-icon {
    display: flex;
    width: 88px;
    height: 88px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.2rem;
}

.chat-room-signin-content h2 {
    margin: 0 0 0.55rem;
}

.chat-room-signin-content p {
    max-width: 760px;
    margin: 0;
    line-height: 1.65;
}

.chat-room-seo-content {
    display: grid;
    margin-top: 1.25rem;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.chat-room-seo-main {
    display: grid;
    gap: 1.25rem;
}

.chat-room-about-card,
.chat-room-information-card,
.chat-room-safety,
.chat-room-more {
    padding: clamp(1.25rem, 3vw, 1.75rem);
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--surface);
}

.chat-room-about-card h2,
.chat-room-information-card h2,
.chat-room-safety h2,
.chat-room-more h2 {
    margin-top: 0;
}

.chat-room-about-card h3 {
    margin-top: 1.35rem;
}

.chat-room-about-card p {
    line-height: 1.7;
}

.chat-room-about-card p:last-child {
    margin-bottom: 0;
}

.chat-room-topic-box {
    margin-top: 1.35rem;
    padding: 1rem 1.15rem;
    border-left: 4px solid currentColor;
    background: rgba(0, 0, 0, 0.035);
}

.chat-room-topic-box h3 {
    margin: 0 0 0.4rem;
}

.chat-room-topic-box p {
    margin: 0;
}

.chat-room-information-card dl {
    margin: 0;
}

.chat-room-information-card dl > div {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
}

.chat-room-information-card dl > div:first-child {
    padding-top: 0;
}

.chat-room-information-card dl > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.chat-room-information-card dt {
    margin-bottom: 0.22rem;
    font-weight: 700;
}

.chat-room-information-card dd {
    margin: 0;
    line-height: 1.5;
}

.chat-room-official {
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
}

.chat-room-safety {
    display: grid;
    margin-top: 1.25rem;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
}

.chat-room-safety-icon {
    display: flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.chat-room-safety h2 {
    margin-bottom: 0.35rem;
}

.chat-room-safety p {
    margin: 0;
    line-height: 1.65;
}

.chat-room-more {
    margin-top: 1.25rem;
    margin-bottom: 2rem;
}

.chat-room-more-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.chat-room-more-grid a {
    display: flex;
    min-height: 150px;
    padding: 1.15rem;
    gap: 0.5rem;
    justify-content: center;
    flex-direction: column;
    text-decoration: none;
    border: 1px solid var(--border);
    border-radius: 4px;
}

.chat-room-more-grid a > i {
    margin-bottom: 0.35rem;
    font-size: 1.55rem;
}

.chat-room-more-grid a span {
    line-height: 1.5;
    opacity: 0.8;
}

@media (max-width: 900px) {
    .chat-room-landing-header {
        grid-template-columns: 1fr;
    }

    .chat-room-landing-badge {
        width: auto;
        min-height: 130px;
    }

    .chat-room-seo-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .chat-room-signin-panel,
    .chat-room-safety {
        grid-template-columns: 1fr;
    }

    .chat-room-signin-icon,
    .chat-room-safety-icon {
        width: 58px;
        height: 58px;
    }

    .chat-room-more-grid {
        grid-template-columns: 1fr;
    }

    .chat-room-landing-actions .button,
    .chat-room-signin-actions .button {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* ==========================================
   FAQ
========================================== */

.chat-room-faq {
    margin: 2rem 0;
}

.chat-room-faq h2 {
    margin: 0 0 1rem;
    font-size: 1.8rem;
    color: var(--text);
}

.chat-room-faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: .2s ease;
}

.chat-room-faq-item:hover {
    border-color: #0b7db3;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.chat-room-faq-item[open] {
    border-color: #0b7db3;
}

.chat-room-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}

.chat-room-faq-item summary::-webkit-details-marker {
    display: none;
}

.chat-room-faq-item summary::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #0b7db3;
    transition: transform .2s ease;
}

.chat-room-faq-item[open] summary::after {
    transform: rotate(180deg);
}

.chat-room-faq-item p {
    margin: 0;
    padding: 0 20px 18px;
    line-height: 1.7;
    color: var(--text-muted);
}

.chat-regional-events {
    margin-top: 18px;
    border: 1px solid var(--border);
    background: var(--surface);
}

.chat-regional-events-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 12px 15px;
    background: var(--surface-muted);
    border-bottom: 1px solid var(--border);
}

.chat-regional-events-header h2 {
    margin: 0;
    font-size: 15px;
    color: var(--text);
}

.chat-regional-events-header h2 i {
    margin-right: 6px;
}

.chat-regional-events-header a {
    font-size: 12px;
    font-weight: 700;
}

.chat-regional-event {
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 13px 15px;
    border-bottom: 1px solid var(--border);
}

.chat-regional-event:last-child {
    border-bottom: 0;
}

.chat-regional-event-time {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 12px;
}

.chat-regional-event-time strong {
    color: #07546f;
}

.chat-regional-event-content h3 {
    margin: 0 0 4px;
    font-size: 14px;
}

.chat-regional-event-content p {
    margin: 0 0 5px;
    font-size: 12px;
    line-height: 1.5;
}

.chat-regional-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    font-size: 11px;
    color: var(--text-muted);
}

.chat-regional-event-link {
    white-space: nowrap;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 700px) {
    .chat-regional-events-header {
        align-items: flex-start;
    }

    .chat-regional-event {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .chat-regional-event-time {
        flex-direction: row;
        gap: 8px;
    }

    .chat-regional-event-link {
        justify-self: start;
    }
}




/* ============================================================
   DARK MODE POLISH
============================================================ */

[data-theme="dark"] .chat-room-notice {
    border-bottom-color: var(--border);
    background: #332c1d;
}

[data-theme="dark"] .chat-room-notice p {
    color: #d8c994;
}

[data-theme="dark"] .chat-room-badge-official {
    background: #18372b;
    color: #8ed5ad;
}

[data-theme="dark"] .chat-room-badge-private,
[data-theme="dark"] .chat-access-icon {
    background: #3b2d1d;
    color: #e7ad68;
}

[data-theme="dark"] .chat-room-category {
    background: var(--surface-muted);
    color: var(--text-muted);
}

[data-theme="dark"] .chat-room-topic-box {
    background: rgba(255, 255, 255, 0.035);
}

[data-theme="dark"] .chat-room-faq-item:hover,
[data-theme="dark"] .chat-room-faq-item[open] {
    border-color: var(--header-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .22);
}

[data-theme="dark"] .chat-player-button {
    background: var(--surface-muted);
    color: var(--text);
}

[data-theme="dark"] .chat-player-volume,
[data-theme="dark"] .chat-player-volume::-moz-range-track {
    background: var(--border-dark);
}

[data-theme="dark"] .chat-player-volume::-webkit-slider-thumb,
[data-theme="dark"] .chat-player-volume::-moz-range-thumb,
[data-theme="dark"] .chat-player-volume::-moz-range-progress {
    background: var(--text);
}

/* ============================================================
   SEASONAL THEME SUPPORT
   These overrides allow chat.css to follow the global
   theme-halloween / theme-christmas classes on <html>.
============================================================ */

/* ============================================================
   HALLOWEEN
============================================================ */

html.theme-halloween .chat-body {
    background: #100b14;
    color: #e9e1ec;
}

html.theme-halloween .chat-room-heading,
html.theme-halloween .chat-room-panel,
html.theme-halloween .chat-access-panel,
html.theme-halloween .chat-room-landing-header,
html.theme-halloween .chat-room-signin-panel,
html.theme-halloween .chat-room-about-card,
html.theme-halloween .chat-room-information-card,
html.theme-halloween .chat-room-safety,
html.theme-halloween .chat-room-more,
html.theme-halloween .chat-regional-events {
    border-color: #493151;
    background: #1a1220;
    color: #e9e1ec;
}

html.theme-halloween .chat-room-heading h1,
html.theme-halloween .chat-room-panel-header h2,
html.theme-halloween .chat-access-panel h1,
html.theme-halloween .chat-room-landing-copy h1,
html.theme-halloween .chat-room-signin-content h2,
html.theme-halloween .chat-room-about-card h2,
html.theme-halloween .chat-room-about-card h3,
html.theme-halloween .chat-room-information-card h2,
html.theme-halloween .chat-room-safety h2,
html.theme-halloween .chat-room-more h2 {
    color: #f1e8f3;
}

html.theme-halloween .chat-room-heading p,
html.theme-halloween .chat-access-panel p,
html.theme-halloween .chat-room-landing-copy > p,
html.theme-halloween .chat-room-signin-content p,
html.theme-halloween .chat-room-about-card p,
html.theme-halloween .chat-room-information-card dd,
html.theme-halloween .chat-room-safety p,
html.theme-halloween .chat-room-more-grid a span,
html.theme-halloween .chat-room-noscript p {
    color: #b8aabd;
}

html.theme-halloween .chat-room-heading-icon,
html.theme-halloween .chat-room-badge {
    background: #382015;
    color: #ff8c1a;
}

html.theme-halloween .chat-room-category {
    background: #291a30;
    color: #ff8c1a;
}

html.theme-halloween .chat-room-badge-official {
    background: #1c3320;
    color: #8bd35e;
}

html.theme-halloween .chat-room-badge-private {
    background: #3c1d13;
    color: #ff9a32;
}

html.theme-halloween .chat-room-panel-header {
    border-bottom-color: #493151;
    background: #211628;
}

html.theme-halloween .chat-room-member {
    color: #b8aabd;
}

html.theme-halloween .chat-room-member strong {
    color: #f1e8f3;
}

html.theme-halloween .chat-room-notice {
    border-bottom-color: #493151;
    background: #302015;
}

html.theme-halloween .chat-room-notice i {
    color: #ff8c1a;
}

html.theme-halloween .chat-room-notice p {
    color: #e5cba8;
}

html.theme-halloween .chat-room-embed {
    background: #100b14;
}

html.theme-halloween .chat-button-primary {
    background: #ff7900;
    color: #160900;
}

html.theme-halloween .chat-button-primary:hover {
    background: #ff9a32;
}

html.theme-halloween .chat-button-secondary {
    border-color: #493151;
    background: #211628;
    color: #e9e1ec;
}

html.theme-halloween .chat-button-secondary:hover {
    background: #302039;
}

html.theme-halloween .chat-access-icon,
html.theme-halloween .chat-room-signin-icon {
    background: #382015;
    color: #ff8c1a;
}

html.theme-halloween .chat-room-noscript i {
    color: #ff7900;
}

html.theme-halloween .chat-player-info span {
    color: #b8aabd;
}

html.theme-halloween .chat-player-button,
html.theme-halloween .chat-player-placeholder {
    background: #ff7900;
    color: #160900;
}

html.theme-halloween .chat-select-station {
    color: #ff8c1a;
}

html.theme-halloween .chat-room-landing-badge,
html.theme-halloween .chat-room-more-grid a {
    border-color: #493151;
    background: #211628;
    color: #e9e1ec;
}

html.theme-halloween .chat-room-landing-badge > i,
html.theme-halloween .chat-room-more-grid a > i,
html.theme-halloween .chat-room-safety-icon {
    color: #ff8c1a;
}

html.theme-halloween .chat-room-topic-box {
    background: rgba(255, 121, 0, 0.08);
    color: #e9e1ec;
}

html.theme-halloween .chat-room-information-card dl > div {
    border-bottom-color: #493151;
}

html.theme-halloween .chat-room-faq h2 {
    color: #f1e8f3;
}

html.theme-halloween .chat-room-faq-item {
    border-color: #493151;
    background: #1a1220;
}

html.theme-halloween .chat-room-faq-item:hover,
html.theme-halloween .chat-room-faq-item[open] {
    border-color: #ff7900;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .22);
}

html.theme-halloween .chat-room-faq-item summary {
    color: #f1e8f3;
}

html.theme-halloween .chat-room-faq-item summary::after {
    color: #ff7900;
}

html.theme-halloween .chat-room-faq-item p {
    color: #b8aabd;
}

html.theme-halloween .chat-regional-events-header {
    border-bottom-color: #493151;
    background: #291a30;
}

html.theme-halloween .chat-regional-events-header h2 {
    color: #ff8c1a;
}

html.theme-halloween .chat-regional-event {
    border-bottom-color: #493151;
}

html.theme-halloween .chat-regional-event-time strong,
html.theme-halloween .chat-regional-event-link {
    color: #ff8c1a;
}

html.theme-halloween .chat-regional-event-meta {
    color: #aa99af;
}


/* ============================================================
   CHRISTMAS
============================================================ */

html.theme-christmas .chat-body {
    background: #edf4ef;
    color: #243a2d;
}

html.theme-christmas .chat-room-heading,
html.theme-christmas .chat-room-panel,
html.theme-christmas .chat-access-panel,
html.theme-christmas .chat-room-landing-header,
html.theme-christmas .chat-room-signin-panel,
html.theme-christmas .chat-room-about-card,
html.theme-christmas .chat-room-information-card,
html.theme-christmas .chat-room-safety,
html.theme-christmas .chat-room-more,
html.theme-christmas .chat-regional-events {
    border-color: #b9cec0;
    background: #ffffff;
    color: #243a2d;
}

html.theme-christmas .chat-room-heading h1,
html.theme-christmas .chat-room-panel-header h2,
html.theme-christmas .chat-access-panel h1,
html.theme-christmas .chat-room-landing-copy h1,
html.theme-christmas .chat-room-signin-content h2,
html.theme-christmas .chat-room-about-card h2,
html.theme-christmas .chat-room-about-card h3,
html.theme-christmas .chat-room-information-card h2,
html.theme-christmas .chat-room-safety h2,
html.theme-christmas .chat-room-more h2 {
    color: #17472d;
}

html.theme-christmas .chat-room-heading p,
html.theme-christmas .chat-access-panel p,
html.theme-christmas .chat-room-landing-copy > p,
html.theme-christmas .chat-room-signin-content p,
html.theme-christmas .chat-room-about-card p,
html.theme-christmas .chat-room-information-card dd,
html.theme-christmas .chat-room-safety p,
html.theme-christmas .chat-room-more-grid a span,
html.theme-christmas .chat-room-noscript p {
    color: #65796d;
}

html.theme-christmas .chat-room-heading-icon,
html.theme-christmas .chat-room-badge {
    background: #fdf6dc;
    color: #9d7a10;
}

html.theme-christmas .chat-room-category {
    background: #edf4ef;
    color: #0b5b34;
}

html.theme-christmas .chat-room-badge-official {
    background: #e5f3e9;
    color: #2d7a38;
}

html.theme-christmas .chat-room-badge-private {
    background: #fff3df;
    color: #9d6e00;
}

html.theme-christmas .chat-room-panel-header {
    border-bottom-color: #b9cec0;
    background: #f3f8f4;
}

html.theme-christmas .chat-room-member {
    color: #65796d;
}

html.theme-christmas .chat-room-member strong {
    color: #17472d;
}

html.theme-christmas .chat-room-notice {
    border-bottom-color: #dfd09b;
    background: #fff9e7;
}

html.theme-christmas .chat-room-notice i {
    color: #a98513;
}

html.theme-christmas .chat-room-notice p {
    color: #66551d;
}

html.theme-christmas .chat-room-embed {
    background: #ffffff;
}

html.theme-christmas .chat-button-primary {
    background: #0b5b34;
    color: #ffffff;
}

html.theme-christmas .chat-button-primary:hover {
    background: #13824a;
}

html.theme-christmas .chat-button-secondary {
    border-color: #b9cec0;
    background: #ffffff;
    color: #294b37;
}

html.theme-christmas .chat-button-secondary:hover {
    background: #edf4ef;
}

html.theme-christmas .chat-access-icon,
html.theme-christmas .chat-room-signin-icon {
    background: #fdf6dc;
    color: #a98513;
}

html.theme-christmas .chat-room-noscript i {
    color: #a98513;
}

html.theme-christmas .chat-player-info span {
    color: #65796d;
}

html.theme-christmas .chat-player-button,
html.theme-christmas .chat-player-placeholder {
    background: #0b5b34;
    color: #ffffff;
}

html.theme-christmas .chat-select-station {
    color: #0b5b34;
}

html.theme-christmas .chat-room-landing-badge,
html.theme-christmas .chat-room-more-grid a {
    border-color: #b9cec0;
    background: #f7faf8;
    color: #243a2d;
}

html.theme-christmas .chat-room-landing-badge > i,
html.theme-christmas .chat-room-more-grid a > i,
html.theme-christmas .chat-room-safety-icon {
    color: #a98513;
}

html.theme-christmas .chat-room-topic-box {
    background: rgba(216, 181, 69, 0.12);
    color: #243a2d;
}

html.theme-christmas .chat-room-information-card dl > div {
    border-bottom-color: #d3e0d7;
}

html.theme-christmas .chat-room-faq h2 {
    color: #17472d;
}

html.theme-christmas .chat-room-faq-item {
    border-color: #c5d7ca;
    background: #ffffff;
}

html.theme-christmas .chat-room-faq-item:hover,
html.theme-christmas .chat-room-faq-item[open] {
    border-color: #a98513;
    box-shadow: 0 2px 8px rgba(18, 66, 39, .08);
}

html.theme-christmas .chat-room-faq-item summary {
    color: #17472d;
}

html.theme-christmas .chat-room-faq-item summary::after {
    color: #a98513;
}

html.theme-christmas .chat-room-faq-item p {
    color: #65796d;
}

html.theme-christmas .chat-regional-events-header {
    border-bottom-color: #b9cec0;
    background: #e5efe8;
}

html.theme-christmas .chat-regional-events-header h2 {
    color: #0b5b34;
}

html.theme-christmas .chat-regional-event {
    border-bottom-color: #d3e0d7;
}

html.theme-christmas .chat-regional-event-time strong,
html.theme-christmas .chat-regional-event-link {
    color: #0b5b34;
}

html.theme-christmas .chat-regional-event-meta {
    color: #65796d;
}

.chat-room-title-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.chat-room-title-row h2 {
    margin: 0;
}

.chat-room-share-actions {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

.chat-room-share-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    min-height: 18px;
    padding: 2px 14px;

    border: 1px solid var(--header-border);
    border-radius: 3px;

    background: var(--surface-muted);
    color: var(--account-link-text);

    font: inherit;
    font-size: 10px;

    cursor: pointer;
}

.chat-room-share-button:hover {
    background: var(--page-background);
}