:root {
    --lt-ink: #0b1020;
    --lt-panel: rgba(17, 24, 39, 0.86);
    --lt-line: rgba(148, 163, 184, 0.18);
    --lt-text: #e8eef8;
    --lt-muted: #9fb0c6;
    --lt-cyan: #18c7b8;
    --lt-blue: #3478f6;
    --lt-gold: #f3b33d;
    --lt-rose: #f45d82;
    --lt-radius: 16px;
    --lt-shadow: 0 22px 70px rgba(2, 6, 23, 0.34);
}

/* Woo Events center and homepage preview */
.woo-events-page {
    max-width: 1230px;
    padding-top: 102px;
    padding-bottom: 42px;
    color: #eef2ff;
}

.woo-events-hero {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 32px;
    padding: 34px 38px;
    border: 1px solid #242c3f;
    border-radius: 20px;
    background: radial-gradient(circle at 88% 30%, rgba(25, 199, 205, .14), transparent 31%), linear-gradient(112deg, rgba(45, 19, 30, .72), #101724 52%, #101c26);
}

.woo-events-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px;
    color: #ff4764;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.woo-events-hero h1 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    letter-spacing: 0;
}

.woo-events-hero p {
    max-width: 650px;
    margin: 0;
    color: #9ea8ba;
    font-size: 14px;
    line-height: 1.65;
}

.woo-events-stats {
    display: flex;
    gap: 12px;
    align-self: center;
}

.woo-events-stats div {
    display: grid;
    justify-items: center;
    min-width: 100px;
    padding: 19px 16px;
    border: 1px solid #273247;
    border-radius: 14px;
    background: rgba(13, 19, 31, .75);
}

.woo-events-stats strong {
    color: #fff;
    font-size: 27px;
}

.woo-events-stats span {
    color: #8e9aac;
    font-size: 12px;
}

.woo-events-create {
    margin: 18px 0 26px;
    border: 1px solid #232d41;
    border-radius: 16px;
    overflow: hidden;
    background: #0f1624;
}

.woo-events-create summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 22px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.woo-events-create summary i:last-child {
    margin-left: auto;
}

.woo-events-create[open] summary i:last-child {
    transform: rotate(180deg);
}

.woo-events-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 0 22px 22px;
}

.woo-events-form label {
    display: grid;
    gap: 6px;
    color: #94a1b5;
    font-size: 12px;
    font-weight: 600;
}

.woo-events-form label.wide {
    grid-column: span 2;
}

.woo-events-form .form-control,
.woo-events-form .form-select {
    height: 44px;
    border: 1px solid #263248;
    border-radius: 11px;
    background: #080e19;
    color: #f5f7fb;
    font-size: 13px;
}

.woo-events-form textarea.form-control {
    height: auto;
    resize: vertical;
}

.woo-events-form button {
    align-self: end;
    height: 46px;
    border: 0;
    border-radius: 11px;
    background: linear-gradient(100deg, #e52b4d, #ff5474);
    color: #fff;
    font-weight: 600;
}

.woo-events-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin: 0 0 16px;
}

.woo-events-section-head h2 {
    margin: 0;
    color: #f6f8fc;
    font-size: 23px;
}

.woo-events-section-head span {
    color: #8792a6;
    font-size: 13px;
}

.woo-events-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.woo-event-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 264px;
    padding: 18px;
    border: 1px solid #232d3f;
    border-radius: 16px;
    background: #0e1522;
}

.woo-event-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background: #19bdc4;
}

.woo-event-card.type-game::before {
    background: #395ef8;
}

.woo-event-card.type-tournament::before {
    background: #ffbe38;
}

.woo-event-card.type-cinema::before {
    background: #ef3454;
}

.woo-event-card-top,
.woo-event-meta,
.woo-event-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.woo-event-card-top {
    justify-content: space-between;
    margin-bottom: 17px;
}

.woo-event-type {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    padding: 6px 9px;
    border-radius: 9px;
    color: #d9e2f3;
    background: #161f31;
    font-size: 12px;
}

.woo-event-card time {
    color: #1dd4cf;
    font-size: 12px;
    font-weight: 600;
}

.woo-event-card h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

.woo-event-card p {
    flex: 1;
    margin: 0 0 14px;
    color: #929db1;
    font-size: 13px;
    line-height: 1.55;
}

.woo-event-meta {
    flex-wrap: wrap;
    margin-bottom: 16px;
    color: #a9b4c7;
    font-size: 11px;
}

.woo-event-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.woo-event-actions form {
    margin: 0;
}

.woo-event-actions button,
.woo-event-actions a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 37px;
    padding: 0 13px;
    border: 1px solid #283449;
    border-radius: 10px;
    background: #151d2c;
    color: #d8deea;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.woo-event-actions .primary {
    border-color: #ee3656;
    background: #e83052;
    color: #fff;
}

.woo-event-actions .reminder.active {
    border-color: rgba(19, 196, 193, .36);
    color: #16c9c6;
}

.woo-event-actions .open {
    margin-left: auto;
    padding: 0 11px;
}

.woo-event-manage {
    margin-top: 14px;
    border-top: 1px solid #212a3a;
    padding-top: 12px;
}

.woo-event-manage summary {
    color: #8795a9;
    font-size: 12px;
    cursor: pointer;
}

.woo-event-manage form {
    display: grid;
    gap: 7px;
    margin-top: 10px;
}

.woo-event-manage input,
.woo-event-manage textarea {
    width: 100%;
    border: 1px solid #263248;
    border-radius: 8px;
    padding: 8px;
    background: #080d17;
    color: #fff;
    font-size: 12px;
}

.woo-event-manage button {
    border: 0;
    border-radius: 8px;
    padding: 8px;
    background: #172436;
    color: #cfd7e6;
}

.woo-event-danger {
    display: flex;
    gap: 7px;
}

.woo-event-danger form {
    flex: 1;
}

.woo-event-danger button {
    width: 100%;
    color: #ff627c;
}

.woo-events-empty {
    display: grid;
    place-items: center;
    gap: 8px;
    min-height: 220px;
    border: 1px dashed #273348;
    border-radius: 16px;
    color: #8491a7;
}

.woo-events-empty i {
    font-size: 35px;
}

.woo-events-empty strong {
    color: #eef2fa;
}

.whitoo-home-events {
    margin-bottom: 15px;
    border: 1px solid #242c3d;
    border-radius: 15px;
    padding: 14px;
    background: #101522;
}

.whitoo-home-events-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 11px;
    color: #eef2fb;
    font-size: 13px;
    font-weight: 600;
}

.whitoo-home-events-head a {
    color: #fd4965;
    text-decoration: none;
    font-size: 12px;
}

.whitoo-home-events-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
}

.whitoo-home-event {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    padding: 11px;
    border: 1px solid #212b3d;
    border-radius: 11px;
    color: #edf1fa;
    text-decoration: none;
}

.whitoo-home-event > i {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border-radius: 9px;
    background: rgba(20, 196, 199, .16);
    color: #15c8c4;
}

.whitoo-home-event span {
    display: grid;
    min-width: 0;
}

.whitoo-home-event strong,
.whitoo-home-event small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.whitoo-home-event small {
    color: #8f9bb0;
    font-size: 11px;
}

@media (max-width: 920px) {
    .woo-events-page {
        padding-top: 84px;
    }
    .woo-events-hero,
    .woo-events-section-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .woo-events-form,
    .woo-events-grid,
    .whitoo-home-events-row {
        grid-template-columns: 1fr;
    }
    .woo-events-form label.wide {
        grid-column: auto;
    }
}

/* Standalone Woo Match Game Room */
.woo-standalone-game {
    max-width: 1260px;
    min-height: calc(100vh - 70px);
    padding-top: 104px;
    padding-bottom: 32px;
    color: #edf3fc;
}

.woo-standalone-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 34px;
    border: 1px solid #233147;
    border-radius: 21px;
    background:
        radial-gradient(circle at 58% 55%, rgba(99, 48, 206, .26), transparent 30%),
        radial-gradient(circle at 94% 20%, rgba(17, 197, 205, .2), transparent 28%),
        linear-gradient(112deg, #090e1b, #11182d);
}

.woo-standalone-head span {
    color: #fc3656;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.woo-standalone-head h1 {
    margin: 10px 0 8px;
    color: #fff;
    font-size: 32px;
    letter-spacing: 0;
}

.woo-standalone-head p {
    max-width: 640px;
    margin: 0;
    color: #97a4b8;
    font-size: 14px;
    line-height: 1.55;
}

.woo-standalone-meta {
    display: flex;
    align-items: start;
    gap: 9px;
}

.woo-standalone-meta b {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #28374d;
    border-radius: 21px;
    background: rgba(9, 15, 29, .74);
    color: #dbe5f4;
    font-size: 13px;
}

.woo-standalone-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 322px;
    gap: 16px;
    margin-top: 16px;
}

.woo-standalone-lobby,
.woo-standalone-chat {
    border: 1px solid #202d43;
    border-radius: 20px;
    background: #0b1120;
}

.woo-standalone-lobby {
    padding: 24px;
}

.woo-standalone-slots {
    display: grid;
    grid-template-columns: repeat(5, minmax(116px, 1fr));
    gap: 12px;
}

.woo-standalone-player {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 9px;
    min-height: 190px;
    padding: 15px 9px;
    border: 1px dashed #28364d;
    border-radius: 16px;
    background: #0c1425;
}

.woo-standalone-player.is-filled {
    border-style: solid;
    border-color: rgba(64, 76, 151, .52);
    background: radial-gradient(circle at 50% 20%, rgba(111, 44, 234, .2), transparent 46%), #0e1629;
}

.woo-standalone-player .avatar,
.woo-standalone-player .empty {
    display: grid;
    place-items: center;
    width: 61px;
    height: 61px;
    border-radius: 50%;
    font-size: 28px;
}

.woo-standalone-player .avatar {
    border: 2px solid #9945ff;
    background: linear-gradient(130deg, #7b23ed, #df17ff);
    color: #fff;
    box-shadow: 0 0 28px rgba(137, 57, 255, .34);
}

.woo-standalone-player .empty {
    border-radius: 16px;
    background: #16243b;
    color: #7696b9;
}

.woo-standalone-player strong {
    max-width: 100%;
    overflow: hidden;
    color: #f5f8fc;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.woo-standalone-player em {
    border-radius: 15px;
    padding: 4px 10px;
    color: #7d91ab;
    background: #111d30;
    font-size: 11px;
    font-style: normal;
}

.woo-standalone-player em.ready {
    color: #18cda9;
    background: rgba(16, 188, 151, .12);
}

.woo-standalone-player small {
    color: #8393ac;
    font-size: 11px;
    text-transform: capitalize;
}

.woo-standalone-controls {
    display: grid;
    justify-items: center;
    gap: 13px;
    margin-top: 23px;
    padding-top: 22px;
    border-top: 1px solid #172239;
}

.woo-lobby-notice {
    margin: 18px auto 0;
    max-width: 520px;
    border: 1px solid rgba(19, 197, 191, .35);
    border-radius: 11px;
    padding: 11px 14px;
    background: rgba(19, 197, 191, .1);
    color: #20d1cd;
    font-size: 13px;
    text-align: center;
}

.woo-lobby-notice.danger {
    border-color: rgba(244, 57, 87, .36);
    background: rgba(244, 57, 87, .1);
    color: #fd6680;
}

.woo-lobby-config,
.woo-lobby-invite {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 8px;
}

.woo-lobby-config label {
    display: grid;
    gap: 6px;
    color: #8b9bb2;
    font-size: 11px;
    font-weight: 600;
}

.woo-lobby-config select,
.woo-lobby-invite input {
    height: 42px;
    border: 1px solid #29364d;
    border-radius: 11px;
    background: #090f1e;
    color: #edf2fb;
    padding: 0 12px;
    font-size: 13px;
}

.woo-lobby-config button,
.woo-lobby-invite button,
.woo-lobby-join,
.woo-lobby-leave {
    height: 42px;
    border: 1px solid #28354b;
    border-radius: 11px;
    padding: 0 17px;
    background: #111b2d;
    color: #dce5f4;
    font-size: 13px;
    font-weight: 600;
}

.woo-lobby-config button.ready,
.woo-lobby-join {
    border-color: transparent;
    background: linear-gradient(110deg, #18bc95, #14c6ca);
    color: #04151c;
}

.woo-lobby-invite button {
    border-color: rgba(21, 202, 201, .36);
    color: #18caca;
}

.woo-lobby-leave {
    border-color: rgba(246, 48, 83, .34);
    color: #fc5470;
}

.woo-lobby-exit {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.woo-lobby-close {
    border-color: rgba(246, 48, 83, .42) !important;
    background: #e93454 !important;
    color: #fff !important;
}

.woo-lobby-ended {
    padding: 17px;
    border-radius: 13px;
    color: #f36a81;
    background: rgba(242, 47, 80, .1);
}

.woo-standalone-chat {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 470px;
}

.woo-standalone-chat header {
    display: grid;
    gap: 4px;
    padding: 17px 16px;
    border-bottom: 1px solid #1d283b;
}

.woo-standalone-chat header strong {
    color: #f5f8fd;
    font-size: 14px;
}

.woo-standalone-chat header span {
    color: #7f8da3;
    font-size: 11px;
}

.woo-standalone-messages {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding: 15px;
}

.woo-standalone-messages div {
    padding: 10px 11px;
    border-radius: 11px;
    background: #10192a;
}

.woo-standalone-messages strong {
    display: block;
    margin-bottom: 4px;
    color: #23cac8;
    font-size: 11px;
}

.woo-standalone-messages p {
    margin: 0;
    color: #d9e2f0;
    font-size: 13px;
}

.woo-standalone-chat form {
    display: flex;
    gap: 7px;
    padding: 12px;
    border-top: 1px solid #1d283b;
}

.woo-standalone-chat form input {
    flex: 1;
    height: 42px;
    border: 1px solid #243147;
    border-radius: 12px;
    background: #080e1a;
    color: #fff;
    padding: 0 12px;
}

.woo-standalone-chat form button {
    width: 43px;
    border: 0;
    border-radius: 12px;
    background: #ef3152;
    color: #fff;
}

@media (max-width: 980px) {
    .woo-standalone-game {
        padding-top: 85px;
    }
    .woo-standalone-head,
    .woo-standalone-meta {
        flex-direction: column;
    }
    .woo-standalone-layout {
        grid-template-columns: 1fr;
    }
    .woo-standalone-slots {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 540px) {
    .woo-standalone-head,
    .woo-standalone-lobby {
        padding: 17px;
    }
    .woo-lobby-config,
    .woo-lobby-invite {
        width: 100%;
        flex-wrap: wrap;
    }
    .woo-lobby-config label {
        flex: 1;
    }
    .woo-lobby-config select,
    .woo-lobby-invite input {
        width: 100%;
    }
    .woo-lobby-invite input {
        flex: 1;
    }
}

/* Public Cinema inside the in-app workspace: keep video and chat in separate lanes. */
@media (max-width: 1280px) {
    .woo-cinema-page .woo-cinema-public-shell {
        padding: 16px;
        border-radius: 20px;
    }

    .woo-cinema-page .woo-cinema-public-shell .woo-cinema-tabs {
        gap: 9px;
        margin: 0 0 14px;
    }

    .woo-cinema-page .woo-cinema-public-shell .woo-cinema-tab {
        position: relative;
        min-height: 66px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 4px;
        padding: 10px 58px 10px 13px;
        border-radius: 14px;
    }

    .woo-cinema-page .woo-cinema-public-shell .woo-cinema-tab strong {
        font-size: 13px;
        line-height: 1.2;
    }

    .woo-cinema-page .woo-cinema-public-shell .woo-cinema-tab span {
        display: block;
        width: 100%;
        color: rgba(203, 213, 225, .74);
        font-size: 12px;
        font-weight: 600;
    }

    .woo-cinema-page .woo-cinema-public-shell .woo-cinema-tab .woo-cinema-live,
    .woo-cinema-page .woo-cinema-public-shell .woo-cinema-tab .woo-cinema-off {
        position: absolute;
        top: 50%;
        right: 10px;
        margin: 0;
        transform: translateY(-50%);
    }

    .woo-cinema-page .woo-cinema-public-shell .woo-cinema-stage {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 12px;
        border-radius: 18px;
    }

    .woo-cinema-page .woo-cinema-public-shell .woo-cinema-player {
        width: 100%;
        min-height: 0;
        height: auto;
        aspect-ratio: 16 / 8.7;
        border-radius: 14px;
    }

    .woo-cinema-page .woo-cinema-public-shell .woo-cinema-chat-panel,
    .woo-cinema-page .woo-cinema-public-shell .woo-cinema-chat-panel.is-open {
        position: static;
        inset: auto;
        z-index: auto;
        display: flex;
        width: 100%;
        min-height: 230px;
        max-height: 310px;
        margin: 0;
        border-radius: 14px;
        box-shadow: none;
    }

    .woo-cinema-page .woo-cinema-public-shell .woo-cinema-chat-head {
        padding: 11px 13px;
    }

    .woo-cinema-page .woo-cinema-public-shell .woo-cinema-chat-head div {
        display: grid;
        min-width: 0;
        gap: 2px;
    }

    .woo-cinema-page .woo-cinema-public-shell .woo-cinema-chat-head strong,
    .woo-cinema-page .woo-cinema-public-shell .woo-cinema-chat-head small {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .woo-cinema-page .woo-cinema-public-shell .woo-cinema-spoiler-note {
        margin: 10px 12px;
        padding: 9px 11px;
        font-size: 12px;
        line-height: 1.45;
    }
}

@media (max-width: 760px) {
    .woo-cinema-page .woo-cinema-public-shell .woo-cinema-player {
        aspect-ratio: auto;
    }

    .woo-cinema-page .woo-cinema-public-shell .woo-cinema-chat-panel,
    .woo-cinema-page .woo-cinema-public-shell .woo-cinema-chat-panel.is-open {
        min-height: 210px;
        max-height: 290px;
    }
}

html,
body {
    letter-spacing: 0;
}

body {
    background:
        radial-gradient(900px 420px at 18% 0%, rgba(24, 199, 184, 0.16), transparent 62%),
        radial-gradient(760px 420px at 92% 8%, rgba(244, 93, 130, 0.13), transparent 58%),
        linear-gradient(180deg, #0b1020 0%, #111827 48%, #0d1324 100%);
    color: var(--lt-text);
}

a {
    transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}

.navbar.navbar-scroll,
header .navbar {
    min-height: 62px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 12, 24, 0.78) !important;
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 38px rgba(2, 6, 23, 0.18);
}

.navbar-brand .logo {
    max-height: 34px;
}

.navbar .nav-link {
    border-radius: 999px;
    color: rgba(232, 238, 248, 0.82) !important;
    font-weight: 700;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    background: rgba(24, 199, 184, 0.12);
    color: #ffffff !important;
}

main > .container,
.container {
    max-width: 1180px;
}

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 12, 24, 0.54);
    color: var(--lt-muted);
}

.footer a {
    color: #8be7dd;
}

.btn,
button,
.form-control,
.form-select,
.card,
.modal-content,
.dropdown-menu,
.alert {
    border-radius: var(--lt-radius);
}

.btn-primary,
.btn-dark,
.btn-user,
.ltplus-main-button,
.Whitoo AI-send,
.Whitoo AI-home-link {
    border: 0 !important;
    background: linear-gradient(135deg, var(--lt-cyan), var(--lt-blue)) !important;
    color: #ffffff !important;
    box-shadow: 0 16px 34px rgba(24, 199, 184, 0.22);
}

.btn-primary:hover,
.btn-dark:hover,
.btn-user:hover,
.ltplus-main-button:hover,
.Whitoo AI-home-link:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
}

.btn-outline-primary,
.btn-outline-light {
    border-color: rgba(24, 199, 184, 0.34) !important;
    color: #a7fff3 !important;
}

.btn-outline-primary:hover,
.btn-outline-light:hover {
    background: rgba(24, 199, 184, 0.14) !important;
}

.card,
.ltplus-checkout-card,
.ltplus-benefit-panel,
.ltplus-referral-card,
.Whitoo AI-panel {
    border: 1px solid var(--lt-line) !important;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.88), rgba(10, 15, 30, 0.96)) !important;
    color: var(--lt-text);
    box-shadow: var(--lt-shadow);
}

.card-header {
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(255, 255, 255, 0.02);
}

.card-title,
.card h1,
.card h2,
.card h3,
h1,
h2,
h3 {
    letter-spacing: 0;
}

.form-control,
.form-select,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="url"],
textarea,
select {
    border: 1px solid rgba(148, 163, 184, 0.22) !important;
    background-color: rgba(2, 6, 23, 0.42) !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.form-control:focus,
.form-select:focus,
input:focus,
textarea:focus,
select:focus {
    border-color: rgba(24, 199, 184, 0.78) !important;
    box-shadow: 0 0 0 3px rgba(24, 199, 184, 0.16) !important;
}

::placeholder {
    color: rgba(203, 213, 225, 0.58) !important;
}

.show-banner .slider,
.slider {
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.room-loop,
.room-item,
.chat-room-card,
.room-card {
    border: 1px solid rgba(148, 163, 184, 0.16) !important;
    border-radius: 18px !important;
    background: rgba(15, 23, 42, 0.76) !important;
    box-shadow: 0 18px 45px rgba(2, 6, 23, 0.22);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.room-loop:hover,
.room-item:hover,
.chat-room-card:hover,
.room-card:hover {
    transform: translateY(-3px);
    border-color: rgba(24, 199, 184, 0.36) !important;
    box-shadow: 0 22px 60px rgba(2, 6, 23, 0.32);
}

.lt-room-title {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.lt-room-title > span:first-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lt-room-verified {
    width: 16px;
    height: 16px;
    min-width: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #38bdf8 0%, #2563eb 58%, #1d4ed8 100%);
    box-shadow: 0 0 0 2px rgba(56, 189, 248, .12), 0 6px 14px rgba(37, 99, 235, .24);
}

.lt-room-verified i {
    font-size: 10px;
    stroke-width: 2.2;
}

.lt-room-owner-plus {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 6px;
    padding: 3px 7px;
    border-radius: 999px;
    color: #bfdbfe;
    background: rgba(37, 99, 235, .16);
    border: 1px solid rgba(56, 189, 248, .22);
    font-size: 11px;
    font-weight: 800;
    vertical-align: middle;
}

.lt-room-owner-plus i {
    color: #38bdf8;
}

.lt-active-room-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    max-width: 168px;
}

.lt-active-room-title > span:first-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lt-room-verified-header {
    width: 14px;
    height: 14px;
    min-width: 14px;
    box-shadow: 0 0 0 2px rgba(56, 189, 248, .12), 0 5px 12px rgba(37, 99, 235, .24);
}

.lt-room-verified-header i {
    font-size: 9px;
}

.lt-room-is-verified .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.lt-room-is-verified .dropdown-toggle .lt-active-room-title {
    max-width: 188px;
}

.lt-plus-locked-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    color: #bfdbfe;
    background: linear-gradient(135deg, rgba(37, 99, 235, .14), rgba(20, 184, 166, .10));
    border: 1px solid rgba(56, 189, 248, .18);
    font-size: 13px;
    font-weight: 700;
}

.lt-plus-locked-row i {
    color: #38bdf8;
    font-size: 18px;
}

html.light .lt-plus-locked-row {
    color: #1e3a8a;
    background: linear-gradient(135deg, rgba(37, 99, 235, .10), rgba(20, 184, 166, .08));
    border-color: rgba(37, 99, 235, .16);
}

.lt-join-link-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(235px, .78fr) minmax(320px, 1.35fr);
    align-items: center;
    gap: 20px;
    margin: 14px 0 20px;
    padding: 16px;
    border-radius: 16px;
    color: #e5f0ff;
    background:
        linear-gradient(135deg, rgba(17, 24, 39, .96), rgba(11, 18, 32, .96)),
        #0b1020;
    border: 1px solid rgba(71, 85, 105, .34);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .045);
}

.lt-join-link-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18px 18px, rgba(34, 211, 238, .18), transparent 22%),
        linear-gradient(90deg, rgba(20, 184, 166, .10), transparent 30%);
    opacity: .88;
}

.lt-join-link-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, #22d3ee, #14b8a6);
    box-shadow: 0 0 18px rgba(34, 211, 238, .36);
}

.lt-join-link-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 6px;
}

.lt-join-link-copy span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    padding: 0;
    border-radius: 0;
    color: #67e8f9;
    background: transparent;
    border: 0;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.lt-join-link-copy strong {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.12;
    font-weight: 900;
}

.lt-join-link-copy small {
    color: #98a6ba;
    font-weight: 600;
}

.lt-join-link-form {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.lt-join-link-input {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 13px;
    border-radius: 13px;
    background: rgba(9, 13, 26, .72);
    border: 1px solid rgba(148, 163, 184, .18);
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.lt-join-link-input i {
    color: #38bdf8;
    font-size: 19px;
}

.lt-join-link-input:focus-within {
    background: rgba(9, 13, 26, .88);
    border-color: rgba(34, 211, 238, .58);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, .10);
}

.lt-join-link-input input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: #ffffff;
    background: transparent;
    font-weight: 700;
    font-size: 14px;
}

.lt-join-link-input input::placeholder {
    color: rgba(203, 213, 225, .50) !important;
}

.lt-join-link-form button {
    min-height: 46px;
    border: 0;
    border-radius: 13px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    box-shadow: 0 14px 28px rgba(37, 99, 235, .22);
    font-weight: 900;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.lt-join-link-form button:hover {
    transform: translateY(-1px);
    filter: saturate(1.08) brightness(1.06);
    box-shadow: 0 18px 34px rgba(6, 182, 212, .24);
}

.lt-join-link-error {
    grid-column: 2;
    min-height: 18px;
    color: #fca5a5;
    font-size: 12px;
    font-weight: 800;
}

.lt-join-link-error.is-visible {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 4px;
    padding: 8px 11px;
    border-radius: 999px;
    color: #fecdd3;
    background: rgba(127, 29, 29, .34);
    border: 1px solid rgba(248, 113, 113, .34);
    box-shadow: 0 12px 28px rgba(127, 29, 29, .18);
}

.lt-join-link-form button:disabled {
    cursor: wait;
    opacity: .78;
    transform: none;
}

.lt-join-link-form button.is-loading span::after {
    content: "...";
}

.join-link-shortcut {
    display: none !important;
    background: linear-gradient(135deg, rgba(34, 211, 238, .18), rgba(225, 29, 72, .22)) !important;
    border: 1px solid rgba(34, 211, 238, .26);
}

.join-link-shortcut i {
    color: #67e8f9 !important;
}

.join-link-shortcut:hover,
.join-link-shortcut:focus {
    border-color: rgba(34, 211, 238, .58);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, .10);
}

@media (max-width: 991.98px) {
    html.whitoo-android-app .join-link-shortcut {
        display: flex !important;
    }
}

html.light .lt-join-link-card {
    color: #0f172a;
    background:
        radial-gradient(circle at 18px 18px, rgba(14, 165, 233, .10), transparent 22%),
        linear-gradient(135deg, rgba(255, 255, 255, .99), rgba(248, 250, 252, .96));
    border-color: rgba(15, 23, 42, .10);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
}

html.light .lt-join-link-copy strong {
    color: #0f172a;
}

html.light .lt-join-link-copy small {
    color: #64748b;
}

html.light .lt-join-link-copy span {
    color: #0369a1;
    background: transparent;
    border-color: transparent;
}

html.light .lt-join-link-input {
    background: #ffffff;
    border-color: rgba(15, 23, 42, .12);
}

html.light .lt-join-link-input input {
    color: #0f172a;
}

html.light .lt-join-link-input input::placeholder {
    color: rgba(100, 116, 139, .66) !important;
}

@media (max-width: 768px) {
    .lt-join-link-card {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
    }

    .lt-join-link-form {
        grid-template-columns: 1fr;
    }

    .lt-join-link-error {
        grid-column: 1;
    }
}

.lt-join-link-card {
    grid-template-columns: minmax(360px, .95fr) minmax(440px, 1.35fr);
    gap: 28px;
    min-height: 146px;
    padding: 28px 30px 26px 36px;
    border-radius: 24px;
    color: #fff7f7;
    background:
        radial-gradient(circle at 68% 6%, rgba(255, 151, 122, .30), transparent 20%),
        radial-gradient(circle at 83% 52%, rgba(244, 63, 94, .26), transparent 28%),
        linear-gradient(100deg, rgba(10, 12, 24, .98), rgba(19, 17, 28, .96) 45%, rgba(20, 22, 32, .93));
    border: 1px solid rgba(248, 113, 113, .56);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .34), inset 0 0 0 1px rgba(255, 255, 255, .035), 0 0 34px rgba(248, 113, 113, .16);
}

.lt-join-link-card::before {
    background:
        linear-gradient(90deg, rgba(244, 63, 94, .13), transparent 26%),
        radial-gradient(circle at 76% 46%, rgba(255, 255, 255, .18), transparent 8%),
        radial-gradient(circle at 90% 7%, rgba(255, 202, 178, .20), transparent 13%);
    opacity: .95;
}

.lt-join-link-card::after {
    left: auto;
    top: auto;
    right: 18px;
    bottom: 14px;
    width: 32px;
    height: 32px;
    background:
        linear-gradient(45deg, transparent 41%, rgba(255, 255, 255, .72) 42%, rgba(255, 255, 255, .72) 58%, transparent 59%),
        linear-gradient(-45deg, transparent 41%, rgba(255, 255, 255, .72) 42%, rgba(255, 255, 255, .72) 58%, transparent 59%);
    opacity: .78;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, .35));
}

.lt-join-link-copy {
    gap: 8px;
}

.lt-join-link-copy span {
    color: #ff7b84;
    font-size: 13px;
}

.lt-join-link-copy strong {
    font-size: 32px;
    line-height: 1.04;
    text-shadow: 0 2px 18px rgba(255, 255, 255, .10);
}

.lt-join-link-copy small {
    color: rgba(255, 231, 231, .72);
    font-size: 16px;
}

.lt-join-link-form {
    gap: 14px;
}

.lt-join-link-input {
    gap: 14px;
    min-height: 66px;
    padding: 0 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 232, 232, .18), rgba(73, 33, 43, .50)), rgba(37, 22, 32, .76);
    border: 1px solid rgba(255, 207, 207, .40);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28), inset 0 -10px 28px rgba(0, 0, 0, .20), 0 16px 38px rgba(0, 0, 0, .22);
}

.lt-join-link-input i {
    color: rgba(255, 244, 244, .92);
    font-size: 30px;
}

.lt-join-link-input:focus-within {
    border-color: rgba(255, 160, 160, .78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .30), 0 0 0 4px rgba(244, 63, 94, .12), 0 20px 48px rgba(244, 63, 94, .18);
}

.lt-join-link-input input {
    font-size: 19px;
}

.lt-join-link-input input::placeholder {
    color: rgba(255, 232, 232, .66) !important;
}

.lt-join-link-form button {
    min-height: 66px;
    border-radius: 999px;
    padding: 0 34px;
    background: linear-gradient(135deg, #e11d48 0%, #f43f5e 52%, #ffc3a3 100%);
    border: 1px solid rgba(255, 210, 190, .46);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .36), inset 0 -10px 22px rgba(122, 20, 43, .24), 0 0 0 4px rgba(244, 63, 94, .12), 0 18px 42px rgba(244, 63, 94, .34);
    font-size: 18px;
}

.lt-join-link-form button i {
    display: none;
}

.lt-join-link-form button:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .40), 0 0 0 5px rgba(244, 63, 94, .14), 0 22px 52px rgba(244, 63, 94, .42);
}

html.light .lt-join-link-card {
    background:
        radial-gradient(circle at 78% 12%, rgba(244, 63, 94, .18), transparent 20%),
        linear-gradient(135deg, rgba(255, 255, 255, .99), rgba(255, 241, 242, .96));
    border-color: rgba(225, 29, 72, .24);
}

html.light .lt-join-link-copy span {
    color: #be123c;
}

html.light .lt-join-link-input {
    background: rgba(255, 255, 255, .80);
    border-color: rgba(225, 29, 72, .22);
}

@media (max-width: 768px) {
    .lt-join-link-card {
        grid-template-columns: 1fr;
        gap: 16px;
        min-height: 0;
        padding: 22px 18px;
        border-radius: 22px;
    }

    .lt-join-link-copy strong {
        font-size: 27px;
    }

    .lt-join-link-copy small {
        font-size: 14px;
    }

    .lt-join-link-input,
    .lt-join-link-form button {
        min-height: 58px;
    }
}

.ltplus-premium-page,
.ltplus-referral-page {
    width: min(1180px, calc(100% - 28px));
    margin: 34px auto;
    color: var(--lt-text);
}

.ltplus-page-message {
    display: grid;
    gap: 10px;
}

.ltplus-page-message:empty {
    display: none;
}

.ltplus-checkout-shell {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr) minmax(280px, .8fr);
    gap: 16px;
    align-items: start;
}

.whitoo-room-search {
    width: 100%;
    min-height: 46px;
    overflow: visible;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 255, 255, .10) !important;
    background: linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.028)), rgba(10, 14, 25, .76) !important;
    box-shadow: 0 16px 34px rgba(0,0,0,.18) !important;
}

.whitoo-room-search .input-icon-addon {
    width: 42px;
    color: rgba(248, 250, 252, .62);
}

.whitoo-room-search .search_chatroom {
    min-height: 44px;
    border: 0 !important;
    color: #fff !important;
    background: transparent !important;
    font-weight: 700;
}

.whitoo-room-search .search_chatroom::placeholder {
    color: rgba(226, 232, 240, .56) !important;
}

.whitoo-room-search-actions {
    gap: 6px;
    padding: 0 8px 0 4px !important;
    border: 0 !important;
    background: transparent !important;
}

.whitoo-room-search-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0 !important;
    border-radius: 11px;
    color: rgba(248, 250, 252, .78) !important;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.10);
    transition: background .16s ease, color .16s ease, border-color .16s ease, transform .16s ease;
}

.whitoo-room-search-action:hover,
.whitoo-room-search-action.show {
    transform: translateY(-1px);
    color: #fff !important;
    border-color: rgba(239,68,68,.28);
    background: rgba(239,68,68,.16);
}

.whitoo-room-search .dropdown-menu {
    margin-top: 8px !important;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(15, 18, 32, .96);
    box-shadow: 0 18px 44px rgba(0,0,0,.30);
}

.whitoo-room-search .dropdown-menu,
.whitoo-room-search .dropdown-menu label,
.whitoo-room-search .room-sort-select {
    color: #f8fafc;
}

.whitoo-room-search .room-sort-select {
    min-width: 180px;
    border: 0;
    background: rgba(255,255,255,.06);
}

.whitoo-home-search-hero {
    display: grid;
    grid-template-columns: minmax(240px, .58fr) minmax(320px, 1fr);
    align-items: center;
    gap: 18px;
    margin: 0 0 18px;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(248, 113, 113, .18);
    background: radial-gradient(circle at 8% 10%, rgba(244, 63, 94, .18), transparent 24%), linear-gradient(135deg, rgba(17, 24, 39, .84), rgba(9, 13, 26, .90));
    box-shadow: 0 18px 44px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.045);
}

.whitoo-room-list-search {
    margin: 18px 0 16px;
}

.whitoo-explore-search-hero {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin: 14px 0 16px !important;
    padding: 14px !important;
    border-radius: 16px !important;
}

.whitoo-explore-search-hero .whitoo-home-search-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.whitoo-explore-search-hero .whitoo-home-search-copy span {
    font-size: .76rem;
}

.whitoo-explore-search-hero .whitoo-home-search-copy strong {
    font-size: 1.15rem;
}

.whitoo-explore-search-hero .whitoo-room-search {
    width: 100%;
    min-height: 44px;
}

.whitoo-explore-search-hero .whitoo-room-search .search_chatroom {
    min-height: 42px;
}

.whitoo-explore-search-hero .whitoo-room-search-action {
    width: 31px;
    height: 31px;
}

.whitoo-home-search-copy {
    display: grid;
    gap: 5px;
    color: #fff;
}

.whitoo-home-search-copy span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fb7185;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.whitoo-home-search-copy strong {
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.05;
    font-weight: 900;
}

.whitoo-home-search-hero .whitoo-room-search {
    min-height: 54px;
    border-color: rgba(255, 255, 255, .14) !important;
    background: rgba(255,255,255,.07) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 16px 34px rgba(0,0,0,.18) !important;
}

.whitoo-home-search-hero .whitoo-room-search .search_chatroom {
    min-height: 52px;
    font-size: .98rem;
}

.whitoo-home-search-hero .whitoo-room-search-action {
    background: rgba(244, 63, 94, .14);
    border-color: rgba(248, 113, 113, .20);
}

html.light .whitoo-room-search {
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,245,246,.88)), #fff !important;
    border-color: rgba(215,25,53,.12) !important;
    box-shadow: 0 14px 30px rgba(60,17,26,.07) !important;
}

html.light .whitoo-room-search .search_chatroom {
    color: #24111a !important;
}

html.light .whitoo-room-search .search_chatroom::placeholder {
    color: rgba(75, 37, 48, .54) !important;
}

html.light .whitoo-room-search .input-icon-addon {
    color: rgba(75, 37, 48, .55);
}

html.light .whitoo-room-search-action {
    color: #7f1d1d !important;
    background: rgba(239,68,68,.08);
    border-color: rgba(215,25,53,.12);
}

html.light .whitoo-home-search-hero {
    border-color: rgba(225, 29, 72, .16);
    background: radial-gradient(circle at 8% 10%, rgba(244, 63, 94, .12), transparent 24%), linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,241,242,.92));
    box-shadow: 0 16px 34px rgba(60,17,26,.08);
}

html.light .whitoo-home-search-copy {
    color: #24111a;
}

html.light .whitoo-home-search-copy span {
    color: #be123c;
}

html.light .whitoo-home-search-hero .whitoo-room-search {
    background: #fff !important;
    border-color: rgba(225, 29, 72, .14) !important;
}

@media (max-width: 767px) {
    .whitoo-home-search-hero {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px;
        border-radius: 18px;
    }
}

.ltplus-premium-hero,
.ltplus-referral-hero,
.Whitoo AI-header {
    overflow: hidden;
    border: 1px solid rgba(24, 199, 184, 0.22) !important;
    background:
        linear-gradient(120deg, rgba(17, 24, 39, 0.92), rgba(20, 184, 166, 0.42), rgba(48, 70, 166, 0.54), rgba(244, 93, 130, 0.32)),
        #111827 !important;
    box-shadow: var(--lt-shadow);
}

.ltplus-premium-hero h1,
.ltplus-referral-hero h1 {
    color: #ffffff;
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 900;
}

.ltplus-feature-row span,
.ltplus-live-card,
.ltplus-referral-score {
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    background: rgba(2, 6, 23, 0.34) !important;
    backdrop-filter: blur(14px);
}

.ltplus-duration-card,
.ltplus-payment-methods label,
.ltplus-bank-area,
.ltplus-bank-box {
    border-color: rgba(148, 163, 184, 0.2) !important;
    background: rgba(15, 23, 42, 0.72) !important;
    color: var(--lt-text);
}

.ltplus-duration-card:has(input:checked),
.ltplus-payment-methods label:has(input:checked) {
    border-color: rgba(24, 199, 184, 0.78) !important;
    box-shadow: 0 0 0 3px rgba(24, 199, 184, 0.16) !important;
}

.ltplus-duration-card strong {
    color: #6ff7e8;
}

.woo-gift-center {
    display: grid;
    gap: 16px;
    margin: 18px 0 26px;
}

.woo-gift-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 16px;
    align-items: stretch;
    padding: 22px;
    border: 1px solid rgba(24, 199, 184, .24);
    border-radius: 22px;
    background:
        radial-gradient(circle at 12% 0%, rgba(244,63,94,.16), transparent 32%),
        radial-gradient(circle at 90% 20%, rgba(24,199,184,.18), transparent 34%),
        linear-gradient(135deg, rgba(15,23,42,.96), rgba(7,17,30,.98));
}

.woo-gift-head span,
.woo-gift-card-head span,
.woo-gift-history header span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6ff7e8;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.woo-gift-head h2 {
    margin: 8px 0 6px;
    color: #fff;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.08;
}

.woo-gift-head p {
    margin: 0;
    max-width: 720px;
    color: #b8c7dc;
    line-height: 1.55;
}

.woo-gift-head aside {
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(2,6,23,.34);
}

.woo-gift-head aside small,
.woo-gift-note,
.woo-gift-row small,
.woo-gift-row span {
    color: #9fb0c8;
}

.woo-gift-head aside strong {
    color: #fff;
    font-size: 34px;
    line-height: 1;
}

.woo-gift-head aside b {
    color: #6ff7e8;
    font-size: 12px;
}

.woo-gift-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    gap: 16px;
}

.woo-gift-card,
.woo-gift-history {
    padding: 18px;
    border: 1px solid var(--lt-line) !important;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(17,24,39,.9), rgba(10,15,30,.96)) !important;
}

.woo-gift-card-head {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.woo-gift-card-head > i {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: rgba(24,199,184,.13);
    color: #6ff7e8;
    font-size: 24px;
}

.woo-gift-card h3,
.woo-gift-history h3 {
    margin: 2px 0 0;
    color: #fff;
    font-size: 22px;
}

.woo-gift-card label {
    display: block;
    margin: 12px 0 7px;
    color: #dbeafe;
    font-weight: 800;
}

.woo-gift-card label small {
    color: #6ff7e8;
}

.woo-gift-card input[type="text"],
.woo-gift-card textarea {
    width: 100%;
    border: 1px solid rgba(148,163,184,.2);
    border-radius: 14px;
    background: rgba(15,23,42,.72);
    color: #fff;
    outline: 0;
    padding: 12px 14px;
}

.woo-gift-days {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.woo-gift-days label {
    margin: 0;
}

.woo-gift-days input {
    display: none;
}

.woo-gift-days span {
    display: grid;
    place-items: center;
    min-height: 44px;
    border: 1px solid rgba(148,163,184,.2);
    border-radius: 13px;
    background: rgba(15,23,42,.72);
    color: #dbeafe;
    cursor: pointer;
}

.woo-gift-days input:checked + span {
    border-color: rgba(24,199,184,.78);
    background: rgba(24,199,184,.14);
    color: #6ff7e8;
    box-shadow: 0 0 0 3px rgba(24,199,184,.12);
}

.woo-gift-card button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 48px;
    margin-top: 14px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #18c7b8, #f43f5e);
    color: #fff;
    font-weight: 900;
}

.woo-gift-card button:disabled {
    opacity: .48;
    cursor: not-allowed;
}

.woo-gift-note {
    margin: 10px 0 0;
    font-size: 12px;
    line-height: 1.45;
}

.woo-gift-list {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.woo-gift-row {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(180px, .85fr) 110px;
    gap: 12px;
    align-items: center;
    padding: 13px;
    border: 1px solid rgba(148,163,184,.18);
    border-radius: 16px;
    background: rgba(15,23,42,.62);
}

.woo-gift-row b {
    display: block;
    color: #fff;
    font-size: 15px;
}

.woo-gift-row small,
.woo-gift-row span {
    display: block;
    font-size: 12px;
}

.woo-gift-row-actions {
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

.woo-gift-row strong {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(24,199,184,.12);
    color: #6ff7e8;
    font-size: 12px;
}

.woo-gift-row.is-redeemed strong {
    background: rgba(244,63,94,.12);
    color: #fecdd3;
}

.woo-gift-row.is-pending strong {
    background: rgba(251,191,36,.13);
    color: #fbbf24;
}

.woo-gift-row-actions button {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(148,163,184,.2);
    border-radius: 11px;
    background: rgba(15,23,42,.72);
    color: #6ff7e8;
}

.woo-gift-empty {
    display: grid;
    justify-items: center;
    gap: 7px;
    padding: 28px 14px;
    border: 1px dashed rgba(148,163,184,.22);
    border-radius: 18px;
    color: #9fb0c8;
    text-align: center;
}

.woo-gift-empty i {
    color: #6ff7e8;
    font-size: 30px;
}

.woo-gift-empty strong {
    color: #fff;
}

.ltplus-payment-status-card {
    display: grid;
    gap: 16px;
    border: 1px solid rgba(24, 199, 184, .18);
    border-radius: 22px;
    background:
        radial-gradient(circle at 85% 0%, rgba(24, 199, 184, .18), transparent 30%),
        linear-gradient(180deg, rgba(17, 24, 39, .9), rgba(8, 13, 26, .96));
    padding: 18px;
    box-shadow: 0 18px 44px rgba(0,0,0,.24);
}

.ltplus-payment-status-list {
    display: grid;
    gap: 10px;
}

.ltplus-payment-status {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    border: 1px solid rgba(148, 163, 184, .18);
    border-radius: 16px;
    background: rgba(15, 23, 42, .72);
    padding: 12px;
}

.ltplus-payment-status b,
.ltplus-payment-empty strong {
    color: #fff;
}

.ltplus-payment-status span,
.ltplus-payment-status small,
.ltplus-payment-empty span {
    display: block;
    color: #9fb0c8;
    font-size: 12px;
}

.ltplus-payment-status strong {
    border-radius: 999px;
    background: rgba(24, 199, 184, .12);
    color: #6ff7e8;
    padding: 8px 10px;
    font-size: 12px;
    white-space: nowrap;
}

.ltplus-payment-status.is-approved strong {
    background: rgba(34, 197, 94, .14);
    color: #86efac;
}

.ltplus-payment-status.is-rejected strong {
    background: rgba(244, 63, 94, .14);
    color: #fb7185;
}

.ltplus-payment-empty {
    display: grid;
    justify-items: center;
    gap: 7px;
    border: 1px dashed rgba(148, 163, 184, .22);
    border-radius: 18px;
    padding: 26px 14px;
    text-align: center;
}

.ltplus-payment-empty i {
    color: #6ff7e8;
    font-size: 28px;
}

.woo-panel-page {
    width: min(1180px, calc(100% - 28px));
    margin: 28px auto 38px;
    color: var(--lt-text);
}

.woo-panel-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 16px;
    align-items: stretch;
    margin-bottom: 14px;
    border: 1px solid rgba(24, 199, 184, .22);
    border-radius: 22px;
    background:
        radial-gradient(circle at 8% 0%, rgba(244, 63, 94, .18), transparent 32%),
        radial-gradient(circle at 92% 20%, rgba(24, 199, 184, .16), transparent 34%),
        linear-gradient(135deg, rgba(15, 23, 42, .96), rgba(7, 17, 30, .98));
    padding: 22px;
    box-shadow: 0 22px 54px rgba(0, 0, 0, .26);
}

.woo-panel-kicker,
.woo-form-head span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6ff7e8;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.woo-panel-hero h1 {
    margin: 8px 0 4px;
    color: #fff;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 950;
}

.woo-panel-hero p {
    margin: 0;
    max-width: 620px;
    color: #b8c7dc;
    font-size: 16px;
}

.woo-panel-status,
.woo-mini-card {
    display: grid;
    align-content: center;
    gap: 5px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(2, 6, 23, .36);
    padding: 16px;
}

.woo-panel-status small,
.woo-mini-card span,
.woo-mini-card small,
.woo-help-text,
.woo-feed-item span,
.woo-empty-state span {
    color: #9fb0c8;
}

.woo-panel-status strong,
.woo-mini-card strong {
    color: #fff;
    font-size: 32px;
    line-height: 1;
}

.woo-panel-status span {
    color: #6ff7e8;
    font-size: 12px;
    font-weight: 800;
}

.woo-panel-message {
    margin-bottom: 14px;
}

.woo-panel-message:empty {
    display: none;
}

.woo-panel-message .alert {
    margin: 0;
    border: 1px solid rgba(24,199,184,.24) !important;
    border-radius: 16px !important;
    background: rgba(15,23,42,.92) !important;
    color: #dbeafe !important;
    padding: 13px 46px 13px 16px;
    box-shadow: 0 16px 34px rgba(0,0,0,.18);
}

.woo-panel-message .btn-close {
    filter: invert(1);
    opacity: .75;
}

.woo-panel-grid {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr) 300px;
    gap: 16px;
    align-items: start;
}

.woo-panel-side,
.woo-panel-feed {
    display: grid;
    gap: 14px;
}

.woo-feature-list,
.woo-action-card,
.woo-panel-feed section {
    border: 1px solid var(--lt-line);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(17, 24, 39, .9), rgba(10, 15, 30, .96));
    box-shadow: 0 18px 44px rgba(0,0,0,.2);
}

.woo-feature-list {
    display: grid;
    gap: 8px;
    padding: 14px;
}

.woo-feature-list div {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 9px;
    align-items: center;
    border-radius: 13px;
    background: rgba(24, 199, 184, .08);
    padding: 10px;
    color: #dbeafe;
    font-weight: 800;
}

.woo-feature-list i {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: rgba(24, 199, 184, .14);
    color: #6ff7e8;
}

.woo-action-card {
    padding: 16px;
}

.woo-action-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 16px;
    border-radius: 16px;
    background: rgba(2, 6, 23, .34);
    padding: 6px;
}

.woo-action-tabs button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    color: #9fb0c8;
    font-weight: 900;
}

.woo-action-tabs button.is-active {
    border-color: rgba(24, 199, 184, .38);
    background: linear-gradient(135deg, rgba(24,199,184,.22), rgba(244,63,94,.16));
    color: #fff;
}

.woo-panel-form {
    display: none;
    gap: 14px;
}

.woo-panel-form.is-active {
    display: grid;
}

.woo-form-head h2 {
    margin: 4px 0 0;
    color: #fff;
    font-size: 28px;
    font-weight: 950;
}

.woo-plan-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.woo-plan-grid input,
.woo-payment-methods input {
    display: none;
}

.woo-plan-grid span,
.woo-payment-methods span {
    display: grid;
    gap: 3px;
    min-height: 86px;
    border: 1px solid rgba(148,163,184,.2);
    border-radius: 15px;
    background: rgba(15,23,42,.72);
    color: #dbeafe;
    padding: 12px;
    cursor: pointer;
}

.woo-plan-grid b,
.woo-feed-item b {
    color: #fff;
}

.woo-plan-grid strong {
    color: #6ff7e8;
    font-size: 18px;
}

.woo-plan-grid small {
    color: #9fb0c8;
}

.woo-plan-grid input:checked + span,
.woo-payment-methods input:checked + span {
    border-color: rgba(24,199,184,.78);
    background: rgba(24,199,184,.13);
    box-shadow: 0 0 0 3px rgba(24,199,184,.12);
}

.woo-payment-block {
    display: grid;
    gap: 10px;
}

.woo-payment-block h3,
.woo-panel-feed h3 {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 950;
}

.woo-payment-methods {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.woo-payment-methods span {
    place-items: center;
    min-height: 54px;
    text-align: center;
    font-weight: 900;
}

.woo-bank-area {
    display: grid;
    gap: 10px;
    border: 1px dashed rgba(148,163,184,.22);
    border-radius: 16px;
    background: rgba(2,6,23,.24);
    padding: 12px;
}

.woo-bank-box {
    display: grid;
    gap: 4px;
    border-radius: 13px;
    background: rgba(24,199,184,.09);
    padding: 11px;
    color: #b8c7dc;
}

.woo-bank-box b {
    color: #fff;
}

.woo-inline-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.woo-panel-form input[type="text"],
.woo-panel-form input[type="file"] {
    width: 100%;
    border: 1px solid rgba(148,163,184,.2);
    border-radius: 14px;
    background: rgba(15,23,42,.72);
    color: #fff;
    outline: 0;
    padding: 12px 14px;
}

.woo-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #18c7b8, #f43f5e);
    color: #fff;
    font-weight: 950;
    box-shadow: 0 14px 30px rgba(244, 63, 94, .18);
}

.woo-redeem-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 10px;
}

.woo-panel-feed section {
    display: grid;
    gap: 12px;
    padding: 14px;
}

.woo-feed-list {
    display: grid;
    gap: 9px;
}

.woo-feed-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    border: 1px solid rgba(148,163,184,.18);
    border-radius: 14px;
    background: rgba(15,23,42,.66);
    padding: 11px;
}

.woo-feed-item span {
    display: block;
    font-size: 12px;
}

.woo-feed-item em {
    display: block;
    margin-top: 5px;
    border-left: 2px solid rgba(24,199,184,.5);
    color: #dbeafe;
    font-size: 12px;
    font-style: normal;
    line-height: 1.35;
    padding-left: 8px;
}

.woo-feed-item strong,
.woo-feed-item button {
    border: 0;
    border-radius: 999px;
    background: rgba(24,199,184,.12);
    color: #6ff7e8;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 900;
}

.woo-feed-item.is-rejected strong,
.woo-feed-item.is-redeemed strong {
    background: rgba(244,63,94,.13);
    color: #fb7185;
}

.woo-feed-item.is-pending strong {
    background: rgba(251,191,36,.13);
    color: #fbbf24;
}

.woo-empty-state {
    display: grid;
    justify-items: center;
    gap: 7px;
    border: 1px dashed rgba(148,163,184,.22);
    border-radius: 16px;
    padding: 24px 12px;
    text-align: center;
}

.woo-empty-state i {
    color: #6ff7e8;
    font-size: 26px;
}

.ltplus-referral-copy {
    display: grid;
    grid-template-columns: 1fr 132px;
    gap: 10px;
}

.ltplus-referral-copy button {
    margin-top: 0;
}

.ltplus-progress-track {
    height: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.18);
}

.ltplus-progress-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--lt-cyan), var(--lt-gold), var(--lt-rose));
}

.left-sidebar,
.sidebar,
.channels-sidebar,
.private-sidebar,
.right-sidebar,
.chat-info-panel,
.chat-list-panel {
    border-color: rgba(148, 163, 184, 0.14) !important;
    background: rgba(9, 14, 27, 0.88) !important;
    backdrop-filter: blur(14px);
}

.topbar,
.topbar-channels,
.topbar-private,
.chat-header,
.message-header {
    border-bottom: 1px solid rgba(148, 163, 184, 0.14) !important;
    background: rgba(15, 23, 42, 0.76) !important;
    backdrop-filter: blur(14px);
}

.message-box,
.chat-form,
.chat-input,
.message-editor,
.editor-footer,
.bottom-message-form {
    border-top: 1px solid rgba(148, 163, 184, 0.14) !important;
    background: rgba(9, 14, 27, 0.9) !important;
}

.chat-box,
.message-list,
.chat-history,
.chat-content {
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.3), rgba(2, 6, 23, 0.26)),
        transparent !important;
}

.chat-bubble,
.message-bubble,
.chat-message,
.message-content {
    border-radius: 18px !important;
}

.sent .message-content,
.message.sent,
.chat-bubble.sent,
.mine .message-content {
    background: linear-gradient(135deg, var(--lt-blue), var(--lt-cyan)) !important;
    color: #ffffff !important;
}

.received .message-content,
.message.received,
.chat-bubble.received {
    border: 1px solid rgba(148, 163, 184, 0.16) !important;
    background: rgba(30, 41, 59, 0.86) !important;
    color: var(--lt-text) !important;
}

.disc-header,
.section-title {
    color: #ffffff;
    font-weight: 900;
}

.disc-cat-list a,
.channel-container a,
.user-list a,
.dropdown-item {
    border-radius: 12px;
}

.disc-cat-list a:hover,
.channel-container a:hover,
.user-list a:hover,
.dropdown-item:hover {
    background: rgba(24, 199, 184, 0.12) !important;
}

.modal-content,
.dropdown-menu {
    border: 1px solid rgba(148, 163, 184, 0.18) !important;
    background: rgba(15, 23, 42, 0.98) !important;
    color: var(--lt-text);
    box-shadow: var(--lt-shadow);
}

.table {
    color: var(--lt-text);
}

.table thead th {
    color: #b6c7dd;
}

.table td,
.table th {
    border-color: rgba(148, 163, 184, 0.14) !important;
}

.container-tight {
    max-width: 470px;
}

.container-tight .card,
.container-tight form,
.auth-card {
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 24px;
}

.bg-cover {
    position: relative;
}

.bg-cover:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(24, 199, 184, 0.22), rgba(244, 93, 130, 0.18));
}

@media (max-width: 900px) {
    .ltplus-referral-copy {
        grid-template-columns: 1fr;
    }

    .woo-gift-head,
    .woo-gift-grid,
    .woo-gift-row,
    .ltplus-checkout-shell,
    .ltplus-payment-status {
        grid-template-columns: 1fr;
    }

    .woo-gift-days {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .woo-gift-row-actions {
        justify-content: flex-start;
    }

    .navbar .nav-link {
        border-radius: 12px;
    }
}

@media (max-width: 640px) {
    .ltplus-premium-page,
    .ltplus-referral-page,
    .woo-panel-page {
        width: calc(100% - 16px);
        margin: 12px auto;
    }

    .btn,
    .form-control,
    .form-select {
        min-height: 42px;
    }
}

@media (max-width: 1080px) {
    .woo-panel-grid {
        grid-template-columns: 1fr;
    }

    .woo-panel-side {
        grid-template-columns: minmax(0, .65fr) minmax(0, 1fr);
    }
}

@media (max-width: 760px) {
    .woo-panel-hero,
    .woo-panel-side,
    .woo-plan-grid,
    .woo-payment-methods,
    .woo-inline-fields,
    .woo-redeem-box {
        grid-template-columns: 1fr;
    }

    .woo-action-tabs {
        grid-template-columns: 1fr;
    }

    .woo-panel-hero {
        padding: 16px;
    }
}

.lt-roles-panel {
    display: grid;
    gap: 18px;
}

.lt-roles-hero,
.lt-role-builder,
.lt-role-list-item,
.lt-empty-roles {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.72));
    box-shadow: 0 18px 50px rgba(2, 6, 23, 0.28);
}

.lt-roles-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    overflow: hidden;
}

.lt-roles-hero h2 {
    margin: 4px 0;
    font-size: 26px;
}

.lt-roles-hero p,
.lt-empty-roles span,
.lt-role-list-item span,
.lt-permission-card small {
    color: rgba(226, 232, 240, 0.72);
}

.lt-roles-kicker {
    color: #22d3ee;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
}

.lt-roles-badge {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    color: white;
    background: linear-gradient(135deg, #22c55e, #06b6d4, #6366f1);
    font-size: 30px;
}

.lt-role-builder {
    padding: 18px;
}

.lt-permission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
}

.lt-permission-card {
    display: flex;
    gap: 10px;
    min-height: 78px;
    padding: 12px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.62);
    cursor: pointer;
}

.lt-permission-card input {
    margin-top: 4px;
}

.lt-permission-card strong,
.lt-permission-card small {
    display: block;
}

.lt-role-list {
    display: grid;
    gap: 10px;
}

.lt-role-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    border-left: 4px solid var(--role-color);
}

.lt-role-list-item strong {
    color: var(--role-color);
}

.lt-empty-roles {
    display: grid;
    place-items: center;
    gap: 4px;
    min-height: 140px;
    padding: 20px;
    text-align: center;
}

.lt-empty-roles i {
    font-size: 34px;
    color: #22d3ee;
}

.lt-member-action-stack {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.lt-role-pill-row,
.lt-role-remove-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.lt-role-pill,
.lt-role-remove {
    border: 1px solid color-mix(in srgb, var(--role-color) 70%, transparent);
    border-radius: 999px;
    padding: 4px 8px;
    color: var(--role-color);
    background: color-mix(in srgb, var(--role-color) 14%, transparent);
    font-size: 12px;
    font-weight: 800;
}

.lt-role-remove {
    cursor: pointer;
}

.lt-role-assign {
    display: inline-grid;
    grid-template-columns: minmax(130px, 1fr) 40px;
    gap: 6px;
    align-items: center;
    min-width: 190px;
}

.lt-user-role-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 6px;
}

.lt-user-role-badge {
    display: inline-flex;
    align-items: center;
    max-width: 120px;
    border: 1px solid color-mix(in srgb, var(--role-color, #22c55e) 70%, transparent);
    border-radius: 999px;
    padding: 3px 7px;
    overflow: hidden;
    color: var(--role-color, #22c55e);
    background: color-mix(in srgb, var(--role-color, #22c55e) 14%, transparent);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lt-profile-role-box {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 14px;
    padding: 10px;
    background: rgba(15, 23, 42, 0.42);
}

.lt-profile-role-title {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #22d3ee;
    font-size: 12px;
    font-weight: 900;
}

[data-bs-theme="light"] .lt-roles-hero,
[data-bs-theme="light"] .lt-role-builder,
[data-bs-theme="light"] .lt-role-list-item,
[data-bs-theme="light"] .lt-empty-roles,
body.light .lt-roles-hero,
body.light .lt-role-builder,
body.light .lt-role-list-item,
body.light .lt-empty-roles {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 249, 0.88));
    color: #0f172a;
}

[data-bs-theme="light"] .lt-roles-hero p,
[data-bs-theme="light"] .lt-empty-roles span,
[data-bs-theme="light"] .lt-role-list-item span,
[data-bs-theme="light"] .lt-permission-card small,
body.light .lt-roles-hero p,
body.light .lt-empty-roles span,
body.light .lt-role-list-item span,
body.light .lt-permission-card small {
    color: #64748b;
}

[data-bs-theme="light"] .lt-permission-card,
body.light .lt-permission-card {
    background: rgba(248, 250, 252, 0.9);
}

[data-bs-theme="light"] .lt-profile-role-box,
body.light .lt-profile-role-box {
    background: rgba(248, 250, 252, 0.92);
}

@media (max-width: 640px) {
    .lt-roles-hero {
        align-items: flex-start;
        padding: 18px;
    }

    .lt-roles-badge {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .lt-role-assign {
        width: 100%;
    }
}

.cht.sent .message-data:before,
.cht.replies .message-data:after,
.sent .message-data:before,
.replies .message-data:after,
.sent .chat-txt:before,
.replies .chat-txt:after {
    display: none !important;
    content: none !important;
}

.cht .message-data {
    background: transparent !important;
    box-shadow: none !important;
}

.cht .chat-txt {
    border-radius: 14px !important;
    padding: 8px 12px !important;
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.cht.sent .chat-txt {
    background: linear-gradient(135deg, #2563eb, #14b8a6) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.18);
}

.cht.replies .chat-txt {
    background: rgba(15, 23, 42, 0.88) !important;
    color: #e5edf7 !important;
}

[data-bs-theme="light"] .cht.replies .chat-txt,
body.light .cht.replies .chat-txt {
    background: #ffffff !important;
    color: #0f172a !important;
    border-color: rgba(15, 23, 42, 0.12);
}

.lt-room-action {
    align-items: center;
    justify-content: center;
    min-height: 30px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 6px 11px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(2, 6, 23, 0.16);
    transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.lt-room-action:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.lt-room-action-danger {
    background: linear-gradient(135deg, #ef4444, #f97316);
}

.lt-room-action-warning {
    background: linear-gradient(135deg, #f59e0b, #eab308);
    color: #172033;
}

.lt-room-action-info {
    background: linear-gradient(135deg, #06b6d4, #2563eb);
}

.lt-room-action-ban {
    background: rgba(127, 29, 29, 0.14);
    border-color: #ef4444;
    color: #ff6b6b;
    box-shadow: none;
}

[data-bs-theme="light"] .lt-room-action-ban,
body.light .lt-room-action-ban {
    background: rgba(254, 226, 226, 0.85);
    color: #b91c1c;
}

.lt-message-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.82);
    color: #dbeafe;
    box-shadow: 0 8px 22px rgba(2, 6, 23, 0.2);
}

.lt-message-menu-btn i {
    margin: 0 !important;
    color: inherit !important;
    font-size: 18px !important;
}

.chat-actions {
    opacity: 1 !important;
    gap: 7px;
}

.chat-actions .dropdown-menu {
    min-width: 180px;
    padding: 8px;
    border-radius: 14px !important;
}

.chat-actions .dropdown-item {
    border-radius: 10px;
    padding: 9px 10px;
    font-weight: 800;
}

.lt-edited-label {
    display: inline-flex;
    align-items: center;
    color: rgba(148, 163, 184, 0.9);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.message-meta {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
    min-height: 14px;
}

.cht.sent .message-meta {
    right: 42px !important;
    bottom: -17px !important;
}

.cht.replies .message-meta {
    left: 42px !important;
    bottom: -17px !important;
}

.message-time {
    color: rgba(148, 163, 184, 0.95) !important;
    font-size: 11px !important;
    font-weight: 700;
}

.message-status .ti {
    color: rgba(148, 163, 184, 0.95);
    font-size: 14px !important;
}

.cht .chat-txt {
    min-width: 44px;
    text-align: left;
}

.cht.lt-swipe-reply .message-data {
    transform: translateX(16px);
    transition: transform 0.22s ease;
}

[data-bs-theme="light"] .lt-message-menu-btn,
body.light .lt-message-menu-btn {
    background: #ffffff;
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.12);
}

.lt-info-tabs {
    padding: 8px 10px;
}

.lt-info-tabs-title {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 900;
}

.lt-info-tabs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
}

.lt-info-tabs-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 7px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.62);
    color: #e5edf7;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.lt-info-tabs-grid a:hover {
    border-color: rgba(56, 189, 248, 0.45);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.35), rgba(20, 184, 166, 0.28));
    color: #ffffff;
}

.lt-contact-fixed {
    display: flex !important;
    align-items: center;
    gap: 6px;
    font-weight: 800;
}

[data-bs-theme="light"] .lt-info-tabs-title,
body.light .lt-info-tabs-title {
    color: #64748b;
}

[data-bs-theme="light"] .lt-info-tabs-grid a,
body.light .lt-info-tabs-grid a {
    border-color: rgba(15, 23, 42, 0.1);
    background: #f8fafc;
    color: #0f172a;
}

.voice-only-chat-state {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #cbd5e1;
    text-align: center;
    padding: 24px;
}

.voice-only-chat-state i {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.22), rgba(37, 99, 235, 0.26));
    color: #67e8f9;
    font-size: 28px;
}

.voice-only-chat-state strong {
    color: #f8fafc;
    font-size: 18px;
    font-weight: 900;
}

.voice-only-chat-state span {
    max-width: 430px;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 700;
}

[data-bs-theme="light"] .voice-only-chat-state,
body.light .voice-only-chat-state {
    color: #334155;
}

[data-bs-theme="light"] .voice-only-chat-state strong,
body.light .voice-only-chat-state strong {
    color: #0f172a;
}

.group-chat .wrapper,
.group-chat .main-panel {
    min-height: 0;
}

.container-fluid.group-chat {
    flex: 1 1 auto;
    min-height: 0;
    height: calc((var(--vh, 1vh) * 100) - 50px);
    overflow: hidden;
}

.container-fluid.private-chat {
    flex: 1 1 auto;
    min-height: 0;
    height: calc((var(--vh, 1vh) * 100) - 50px);
    overflow: hidden;
}

.container-fluid.group-chat > .wrapper {
    height: 100%;
    width: 100%;
}

.container-fluid.private-chat > .wrapper {
    height: 100%;
    width: 100%;
}

.group-chat .main-panel {
    height: 100% !important;
    max-height: 100%;
    overflow: hidden;
}

.private-chat .main-panel {
    height: 100% !important;
    max-height: 100%;
    overflow: hidden;
}

.group-chat .chat-scroll {
    flex: 1 1 auto;
    min-height: 0;
    height: auto !important;
    overflow-y: auto;
    overflow-x: hidden;
}

.private-chat .chat-scroll {
    flex: 1 1 auto;
    min-height: 0;
    height: auto !important;
    overflow-y: auto;
    overflow-x: hidden;
}

.group-chat .room-editor {
    flex: 0 0 auto;
    position: sticky;
    bottom: 0;
    z-index: 3;
}

.private-chat .private-editor {
    flex: 0 0 auto;
    position: sticky;
    bottom: 0;
    z-index: 3;
}

.group-chat .editor-container {
    flex-shrink: 0;
}

.private-chat .editor-container {
    flex-shrink: 0;
}

.room-editor .editor-container.editor-controller,
.private-editor .editor-container.editor-controller {
    align-items: center !important;
    gap: 8px;
    min-height: 52px !important;
    max-height: 78px;
    padding: 7px 10px !important;
    margin: 10px 14px 12px !important;
    overflow: visible;
}

.room-editor .attachment-col,
.room-editor .emoji-col,
.room-editor .send-col,
.private-editor .attachment-col,
.private-editor .emoji-col,
.private-editor .send-col {
    flex: 0 0 auto;
    min-height: 38px;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center;
}

.room-editor .editor-col,
.private-editor .editor-col {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
}

.room-editor .note-editor.note-frame,
.private-editor .note-editor.note-frame {
    width: 100% !important;
    min-height: 32px !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.room-editor .note-editor.note-frame .note-editing-area,
.room-editor .note-editor.note-frame .note-editable,
.private-editor .note-editor.note-frame .note-editing-area,
.private-editor .note-editor.note-frame .note-editable {
    min-height: 28px !important;
}

.room-editor .note-editor.note-frame .note-editable,
.private-editor .note-editor.note-frame .note-editable {
    max-height: 58px !important;
    height: auto !important;
    padding: 5px 8px !important;
    overflow-y: auto !important;
    line-height: 1.45 !important;
}

.room-editor .note-editor.note-frame .note-placeholder,
.private-editor .note-editor.note-frame .note-placeholder {
    padding: 5px 8px !important;
}

.room-editor .editor-icon,
.private-editor .editor-icon {
    width: 22px;
    height: 22px;
    margin-left: 6px !important;
}

.room-editor .lt-send-message,
.private-editor .lt-send-message {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    border-radius: 12px !important;
}

.room-editor .editor-container.editor-controller[style*="display: block"],
.room-editor .editor-container.editor-controller[style*="display:block"],
.private-editor .editor-container.editor-controller[style*="display: block"],
.private-editor .editor-container.editor-controller[style*="display:block"] {
    display: flex !important;
    align-items: center !important;
}

.room-editor .editor-container.editor-controller,
.private-editor .editor-container.editor-controller {
    width: auto !important;
}

body.voice-active .group-chat .chat-scroll {
    min-height: 0;
}

body.lt-game-active .room-editor,
body.lt-game-active .editor-container,
body.lt-game-active .editor-controller,
body.lt-game-active .reply-msg-row,
body.lt-game-active .attachments-container,
body.lt-game-active .gse-container {
    display: none !important;
}

body.lt-game-active .group-chat .main-panel,
body.lt-game-active .group-chat .chat-scroll {
    min-height: 0;
    overflow: hidden;
}

body.lt-game-active .chats {
    min-height: 100%;
}

#sidebar-wrapper {
    position: relative;
    overflow: hidden;
    padding-bottom: 56px;
}

#voice-channel-container.voice-channel-container {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 64px;
    width: auto;
    z-index: 20;
    border-radius: 16px;
}

.voice-member {
    gap: 7px;
}

.voice-member-name {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.voice-volume-dropdown {
    flex: 0 0 auto;
    margin-left: auto;
}

.voice-volume-toggle {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 54, 95, 0.34);
    border-radius: 10px;
    color: #ff365f;
    background: rgba(255, 54, 95, 0.1);
    box-shadow: 0 8px 18px rgba(255, 54, 95, 0.13);
}

.voice-volume-toggle:hover,
.voice-volume-toggle:focus {
    color: #fff;
    background: linear-gradient(135deg, #ff365f, #ff6b7f);
}

.voice-volume-menu {
    min-width: 190px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(24, 24, 31, 0.98);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.voice-volume-menu-title,
.voice-volume-mute,
.voice-member .voice-volume-control,
.lt-game-player .voice-volume-control {
    display: flex;
    align-items: center;
    gap: 6px;
}

.voice-volume-menu-title {
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 8px;
}

.voice-volume-mute {
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 6px 8px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.voice-member .voice-volume-control,
.lt-game-player .voice-volume-control {
    width: 100%;
    padding: 5px 7px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
}

.voice-volume-control i {
    color: #ff365f;
    font-size: 14px;
}

.voice-volume-slider {
    width: 100%;
    height: 4px;
    accent-color: #ff365f;
    cursor: pointer;
}

.voice-volume-value {
    min-width: 34px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    font-weight: 800;
    text-align: right;
}

.voice-volume-control.is-muted {
    opacity: 0.65;
}

.lt-game-player .voice-volume-control {
    justify-content: center;
}

.lt-game-player .voice-volume-dropdown {
    margin: 7px auto 0;
}

html.light .voice-member .voice-volume-control,
html.light .lt-game-player .voice-volume-control,
html.light .voice-volume-menu {
    border-color: rgba(148, 163, 184, 0.26);
    background: rgba(255, 255, 255, 0.78);
}

html.light .voice-volume-menu-title,
html.light .voice-volume-mute,
html.light .voice-volume-value {
    color: #334155;
}

html.light .voice-volume-mute {
    background: rgba(241, 245, 249, 0.9);
}

#sidebar-wrapper .channel-list-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    width: 100%;
    background: rgba(15, 23, 42, 0.96);
    border-top: 1px solid rgba(148, 163, 184, 0.16) !important;
}

body.voice-active .sidebar-room .channel-container {
    padding-bottom: 132px;
}

body.incall {
    --woo-call-panel-height: clamp(340px, 44vh, 500px);
}

body.incall .video-call-container {
    position: fixed;
    top: 78px;
    right: 24px;
    left: auto;
    width: min(920px, calc(100vw - 330px));
    height: min(520px, calc(100dvh - 112px));
    min-height: 340px;
    z-index: 6200;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 26px;
    background:
        radial-gradient(circle at 16% 12%, rgba(244, 63, 94, 0.18), transparent 32%),
        radial-gradient(circle at 84% 22%, rgba(20, 184, 166, 0.13), transparent 28%),
        linear-gradient(135deg, #07101d 0%, #111827 46%, #0b1020 100%);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.05), 0 30px 90px rgba(0, 0, 0, 0.46);
    cursor: grab;
    backdrop-filter: blur(18px);
    resize: both;
}

body.incall .video-call-container.is-dragging-call {
    cursor: grabbing;
    user-select: none;
}

body.incall .video-call-container::before {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.58), rgba(2, 6, 23, 0.2));
    pointer-events: none;
}

body.incall .video-call-container::after {
    content: attr(data-call-drag-label);
    position: absolute;
    top: 14px;
    left: 18px;
    z-index: 7;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    color: rgba(226, 232, 240, 0.72);
    background: rgba(2, 6, 23, 0.48);
    font-size: 11px;
    font-weight: 900;
    pointer-events: none;
}

body.incall #media-div {
    width: 100%;
    margin: 0 auto;
    padding: 22px 230px 86px 22px;
    align-items: stretch;
}

body.incall .video-call-container.is-audio-only {
    width: auto !important;
    height: auto !important;
    min-height: 0;
    padding: 10px;
    border-radius: 20px;
    resize: none;
}

body.incall .video-call-container.is-audio-only::before,
body.incall .video-call-container.is-audio-only::after,
body.incall .video-call-container.is-audio-only #media-div,
body.incall .video-call-container.is-audio-only .call-msg {
    display: none;
}

body.incall .video-call-container.is-audio-only .call-controllers {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    padding: 8px;
    border-radius: 18px;
}

body.incall .remote-video {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: #020617;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

body.incall .remote-video:empty::before {
    content: "Waiting for video";
    color: rgba(226, 232, 240, 0.62);
    font-weight: 900;
}

body.incall .agora-player,
body.incall #media-div video,
body.incall #media-div canvas,
body.incall #media-div iframe {
    border-radius: inherit;
}

body.incall .local-video {
    top: 24px;
    right: 24px;
    bottom: auto;
    width: clamp(180px, 14vw, 240px);
    height: clamp(128px, 10.5vw, 168px);
    z-index: 8;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: #000;
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.42);
}

body.incall .local-video::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

body.incall .video-caller-name {
    top: 10px;
    left: 10px;
    opacity: 1;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 5px 9px;
    background: rgba(2, 6, 23, 0.68);
    color: #e5e7eb;
    backdrop-filter: blur(10px);
    font-weight: 900;
}

body.incall .call-msg {
    top: 50px;
    left: 30px;
    z-index: 9;
    max-width: min(520px, calc(100% - 320px));
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #fff;
    background: rgba(2, 6, 23, 0.54);
    backdrop-filter: blur(12px);
    font-weight: 900;
}

body.incall .call-controllers {
    bottom: 22px;
    z-index: 10;
    gap: 10px;
    padding: 10px;
    opacity: 1;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(2, 6, 23, 0.68);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(18px);
}

body.incall .call-controll {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    border: 0;
    border-radius: 16px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

body.incall .call-controll:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.18);
}

body.incall .call-controll.hangup,
body.incall .call-toggle-cam.btn-danger,
body.incall .call-toggle-mic.btn-danger {
    background: linear-gradient(135deg, #ef4444, #be123c);
}

body.incall .call-toggle-screen {
    background: linear-gradient(135deg, #2563eb, #14b8a6);
}

body.incall .call-toggle-fc {
    background: linear-gradient(135deg, #64748b, #334155);
}

body.incall .call-size-preset {
    width: 42px;
    height: 42px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 950;
    font-size: 12px;
}

body.incall .call-size-preset[data-call-size="small"] {
    border-radius: 14px 0 0 14px;
}

body.incall .call-size-preset[data-call-size="full"] {
    border-radius: 0 14px 14px 0;
}

body.incall .call-controll.is-pending {
    opacity: 0.55;
    pointer-events: none;
}

body.incall .video-call-container.has-screen-share::after,
body.incall .video-call-container.has-screen-share .call-msg,
body.incall .video-call-container.has-screen-share #media-div {
    display: none !important;
}

body.incall .video-call-container .whitoo-screen-share-stage.is-in-call-panel {
    position: absolute;
    inset: 16px 16px 86px 16px;
    width: auto !important;
    height: auto !important;
    left: 16px !important;
    top: 16px !important;
    right: 16px !important;
    bottom: 86px !important;
    z-index: 12;
    pointer-events: auto;
    resize: none;
}

body.incall .video-call-container .whitoo-screen-share-stage.is-in-call-panel .whitoo-screen-share-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
}

body.incall .video-call-container .whitoo-screen-share-stage.is-in-call-panel .screen-size-preset,
body.incall .video-call-container .whitoo-screen-share-stage.is-in-call-panel .screen-stage-minimize,
body.incall .video-call-container .whitoo-screen-share-stage.is-in-call-panel .screen-stage-close {
    display: none;
}

body.incall .video-call-container .whitoo-screen-share-stage.is-in-call-panel .whitoo-screen-share-head {
    cursor: default;
}

body.incall .video-call-container .whitoo-screen-share-stage.is-in-call-panel .whitoo-screen-share-body {
    flex: 1 1 auto;
    height: auto;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
}

body.incall .video-call-container .whitoo-screen-share-stage.is-in-call-panel:not(.has-multiple-screens) .screen-rail {
    display: none;
}

body.incall .video-call-container .whitoo-screen-share-stage.is-in-call-panel .screen-main,
body.incall .video-call-container .whitoo-screen-share-stage.is-in-call-panel .screen-tile,
body.incall .video-call-container .whitoo-screen-share-stage.is-in-call-panel .screen-main .screen-tile {
    min-height: 0;
    height: 100%;
}

body.incall .video-call-container .whitoo-screen-share-stage.is-in-call-panel .screen-tile video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

body.incall .video-call-container .whitoo-screen-share-stage.is-in-call-panel .screen-quality-toggle {
    display: inline-flex !important;
}

body.incall .main-panel,
body.incall .height-scroll-rpanel {
    height: calc((var(--vh, 1vh) * 100) - 48px) !important;
}

body.incall .page-content-wrapper {
    height: calc((var(--vh, 1vh) * 100)) !important;
}

@media (max-width: 991px) {
    body.incall {
        --woo-call-panel-height: clamp(330px, 48vh, 480px);
    }

    body.incall .video-call-container {
        top: 74px;
        left: 10px;
        right: 10px;
        width: auto;
        height: min(440px, calc(100dvh - 96px));
        min-height: 320px;
    }

    body.incall #media-div {
        padding: 18px 18px 88px;
    }

    body.incall .local-video {
        width: 132px;
        height: 96px;
        top: 18px;
        right: 18px;
    }

    body.incall .call-msg {
        left: 22px;
        max-width: calc(100% - 180px);
    }
}

@media (max-width: 767px) {
    body.incall .video-call-container.has-screen-share {
        top: max(8px, env(safe-area-inset-top));
        left: 8px !important;
        right: 8px !important;
        bottom: max(8px, env(safe-area-inset-bottom));
        width: auto !important;
        height: auto !important;
        min-height: 0;
        border-radius: 18px;
        resize: none;
    }

    body.incall .video-call-container .whitoo-screen-share-stage.is-in-call-panel {
        inset: 8px 8px 78px 8px;
        left: 8px !important;
        top: 8px !important;
        right: 8px !important;
        bottom: 78px !important;
    }

    body.incall .video-call-container .whitoo-screen-share-stage.is-in-call-panel .whitoo-screen-share-card {
        border-radius: 16px;
    }

    body.incall .video-call-container .whitoo-screen-share-stage.is-in-call-panel .whitoo-screen-share-head {
        min-height: 54px;
        padding: 9px 10px;
        gap: 8px;
    }

    body.incall .video-call-container .whitoo-screen-share-stage.is-in-call-panel .screen-kicker,
    body.incall .video-call-container .whitoo-screen-share-stage.is-in-call-panel .screen-subtitle {
        display: none;
    }

    body.incall .video-call-container .whitoo-screen-share-stage.is-in-call-panel .screen-title {
        font-size: 14px;
        white-space: nowrap;
    }

    body.incall .video-call-container .whitoo-screen-share-stage.is-in-call-panel .screen-quality-toggle {
        min-width: 74px;
        height: 34px;
        padding: 0 10px;
        border-radius: 12px;
        font-size: 12px;
    }

    body.incall .video-call-container .whitoo-screen-share-stage.is-in-call-panel .whitoo-screen-share-body {
        padding: 8px;
        gap: 8px;
    }

    body.incall .video-call-container .whitoo-screen-share-stage.is-in-call-panel.has-multiple-screens .whitoo-screen-share-body {
        grid-template-rows: minmax(0, 1fr) 76px;
    }

    body.incall .video-call-container .whitoo-screen-share-stage.is-in-call-panel .screen-rail {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 0 2px;
    }

    body.incall .video-call-container .whitoo-screen-share-stage.is-in-call-panel .screen-rail .screen-tile {
        flex: 0 0 118px;
        min-height: 68px;
        border-radius: 10px;
    }

    body.incall .video-call-container .whitoo-screen-share-stage.is-in-call-panel .screen-label {
        left: 8px;
        bottom: 8px;
        max-width: calc(100% - 16px);
        padding: 6px 9px;
        font-size: 12px;
    }

    body.incall .video-call-container .whitoo-screen-share-stage.is-in-call-panel .screen-local-preview {
        padding: 14px;
    }

    body.incall .video-call-container .whitoo-screen-share-stage.is-in-call-panel .screen-local-preview-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        font-size: 23px;
    }

    body.incall .video-call-container .whitoo-screen-share-stage.is-in-call-panel .screen-local-preview strong {
        font-size: 15px;
    }

    body.incall .video-call-container .whitoo-screen-share-stage.is-in-call-panel .screen-local-preview span {
        font-size: 11px;
    }

    body.incall .video-call-container.has-screen-share .call-controllers {
        left: 50%;
        right: auto;
        bottom: max(12px, env(safe-area-inset-bottom));
        max-width: calc(100% - 24px);
        padding: 8px;
        gap: 7px;
        border-radius: 18px;
        transform: translateX(-50%);
        overflow-x: auto;
    }

body.incall .video-call-container.has-screen-share .call-controll {
        flex: 0 0 38px;
        width: 38px;
        height: 38px;
        border-radius: 13px;
    }
}

.call-alert,
.group-call-alert {
    position: fixed !important;
    top: max(18px, env(safe-area-inset-top)) !important;
    right: max(18px, env(safe-area-inset-right)) !important;
    left: auto !important;
    width: min(390px, calc(100vw - 28px));
    min-height: 104px;
    display: none;
    align-items: center;
    gap: 14px;
    padding: 14px;
    overflow: hidden;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background:
        radial-gradient(circle at 14% 20%, rgba(255, 43, 82, 0.32), transparent 36%),
        radial-gradient(circle at 92% 18%, rgba(34, 199, 216, 0.22), transparent 30%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(111, 19, 45, 0.88));
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(22px);
    z-index: 12000 !important;
}

.call-alert::before,
.group-call-alert::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 42%);
}

.call-alert[style*="display: block"],
.group-call-alert[style*="display: block"],
.call-alert[style*="display:block"],
.group-call-alert[style*="display:block"] {
    display: flex !important;
}

.call-alert .animbox,
.group-call-alert .animbox {
    position: relative;
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
    display: grid;
    place-items: center;
}

.call-alert .phone,
.group-call-alert .phone {
    position: relative;
    z-index: 2;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 22px;
    background: linear-gradient(135deg, #ff2b52, #1da7ff);
    box-shadow: 0 18px 46px rgba(255, 43, 82, 0.32);
    animation: whitooCallPulse 1.2s ease-in-out infinite alternate;
}

.call-alert .call-anim,
.group-call-alert .call-anim {
    position: absolute;
    inset: 4px;
    width: auto;
    height: auto;
    border-radius: 26px;
    background: rgba(255, 43, 82, 0.26);
    animation: whitooCallRing 1.8s ease-out infinite;
}

.call-alert .circle2,
.group-call-alert .circle2 {
    animation-delay: 0.55s;
}

.call-alert .call-avatar img,
.group-call-alert .call-avatar img {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    object-fit: cover;
}

.call-alert .call-actions,
.group-call-alert .call-actions {
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 0;
    width: auto;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    line-height: 1.2;
}

.call-alert .caller-name,
.group-call-alert .caller-name {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 800;
}

.call-alert .caller-name-text,
.group-call-alert .caller-name-text {
    display: block;
    max-width: 100%;
    margin-bottom: 2px;
    overflow: hidden;
    color: #ffffff;
    font-size: 18px;
    font-weight: 950;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.call-alert .call-controlls,
.group-call-alert .call-controlls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.call-alert .call-controll,
.group-call-alert .call-controll {
    min-width: 0;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 0 !important;
    padding: 0 12px;
    border: 0;
    border-radius: 14px;
    color: #ffffff;
    font-weight: 900;
    box-shadow: none;
}

.call-alert .call-controll.answer,
.group-call-alert .call-controll.answer,
.call-alert .call-controll.btn-success,
.group-call-alert .call-controll.btn-success {
    background: linear-gradient(135deg, #10b981, #14b8a6);
}

.call-alert .call-controll.hangup,
.group-call-alert .call-controll.hangup,
.call-alert .call-controll.btn-danger,
.group-call-alert .call-controll.btn-danger {
    background: linear-gradient(135deg, #ff2b52, #be123c);
}

.call-alert .call-controll i,
.group-call-alert .call-controll i {
    font-size: 20px;
}

@keyframes whitooCallPulse {
    from {
        transform: translateY(0) scale(1);
    }
    to {
        transform: translateY(-2px) scale(1.03);
    }
}

@keyframes whitooCallRing {
    from {
        opacity: 0.62;
        transform: scale(0.72);
    }
    to {
        opacity: 0;
        transform: scale(1.42);
    }
}

@media (max-width: 767px) {
    .call-alert,
    .group-call-alert {
        top: max(10px, env(safe-area-inset-top)) !important;
        right: 10px !important;
        left: 10px !important;
        width: auto;
        min-height: 96px;
        padding: 12px;
        border-radius: 22px;
    }

    .call-alert .animbox,
    .group-call-alert .animbox {
        width: 64px;
        height: 64px;
        flex-basis: 64px;
    }

    .call-alert .phone,
    .group-call-alert .phone {
        width: 54px;
        height: 54px;
        border-radius: 18px;
    }

    .call-alert .caller-name-text,
    .group-call-alert .caller-name-text {
        font-size: 16px;
    }

    .call-alert .call-controll,
    .group-call-alert .call-controll {
        height: 38px;
        padding: 0 8px;
        font-size: 12px;
    }
}

@supports (height: 100dvh) {
    .container-fluid.group-chat {
        height: calc(100dvh - 50px);
    }
}

.lt-game-room-shell {
    min-height: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 28px;
    color: #eef6ff;
    background:
        radial-gradient(circle at 50% 18%, rgba(124, 58, 237, 0.34), transparent 34%),
        radial-gradient(circle at 78% 42%, rgba(14, 165, 233, 0.22), transparent 28%),
        linear-gradient(135deg, rgba(2, 6, 23, 0.98), rgba(15, 23, 42, 0.94));
}

.lt-game-hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    max-width: 980px;
    margin: 0 auto 22px;
}

.lt-game-kicker {
    color: #22d3ee;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.lt-game-hero h2 {
    margin: 4px 0 8px;
    font-size: 30px;
    font-weight: 950;
}

.lt-game-hero p {
    max-width: 560px;
    margin: 0;
    color: #b6c7da;
    font-weight: 700;
}

.lt-game-meta,
.lt-game-controls,
.lt-game-join {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.lt-game-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    color: #dbeafe;
    font-weight: 900;
}

.lt-game-arena {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
    gap: 14px;
}

.lt-game-player {
    min-height: 178px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.66);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.lt-game-player img {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #8b5cf6;
    box-shadow: 0 0 28px rgba(139, 92, 246, 0.64);
}

.lt-game-player strong {
    max-width: 92%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
}

.lt-game-player span {
    color: #93c5fd;
    font-size: 12px;
    font-weight: 800;
}

.lt-game-player.is-empty {
    border-style: dashed;
    color: #94a3b8;
}

.lt-game-player.is-empty i {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(148, 163, 184, 0.12);
    font-size: 24px;
}

.lt-game-controls {
    max-width: 980px;
    margin: 22px auto 0;
    justify-content: center;
}

.lt-game-audio {
    max-width: 980px;
    margin: 22px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.lt-game-audio-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(15, 23, 42, 0.76);
    color: #dbeafe;
    font-weight: 950;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
    transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.lt-game-audio-btn:hover {
    transform: translateY(-1px);
}

.lt-game-audio-btn.is-on {
    border-color: rgba(34, 197, 94, 0.52);
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.92), rgba(20, 184, 166, 0.88));
    color: #ecfdf5;
}

.lt-game-audio-btn.is-off {
    border-color: rgba(248, 113, 113, 0.46);
    background: rgba(127, 29, 29, 0.74);
    color: #fee2e2;
}

.lt-game-action {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    border: 1px solid rgba(34, 211, 238, 0.32);
    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb, #14b8a6);
    color: #fff;
    font-weight: 950;
}

.lt-game-play {
    background: linear-gradient(135deg, #0ea5a4, #2563eb);
    border-color: rgba(45, 212, 191, 0.42);
    text-decoration: none;
}

.lt-game-play:hover {
    color: #fff;
    filter: brightness(1.08);
}

.lt-game-leave {
    background: linear-gradient(135deg, #ef4444, #f97316);
    border-color: rgba(248, 113, 113, 0.4);
}

.lt-game-password {
    min-height: 42px;
    width: 220px;
    padding: 0 12px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 14px;
    background: rgba(2, 6, 23, 0.72);
    color: #fff;
    outline: none;
}

@media (max-width: 900px) {
    .lt-game-room-shell {
        padding: 18px;
        overflow-y: auto;
    }

    .lt-game-hero {
        flex-direction: column;
    }

    .lt-game-arena {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

body.in-voice .main-tab-pane:not(#main-room):not(#main-private) .page-content-wrapper {
    height: calc((var(--vh, 1vh) * 100) - 50px) !important;
    min-height: 0;
    overflow-x: auto !important;
    overflow-y: auto !important;
}

body.in-voice .main-tab-pane:not(#main-room):not(#main-private) .main-panel,
body.in-voice .main-tab-pane:not(#main-room):not(#main-private) .height-scroll,
body.in-voice .main-tab-pane:not(#main-room):not(#main-private) .height-scroll-rpanel {
    height: calc((var(--vh, 1vh) * 100) - 50px) !important;
    min-height: 0;
    overflow-x: auto !important;
    overflow-y: auto !important;
}

body.in-voice .main-tab-pane:not(#main-room):not(#main-private) .rightbar-wrapper {
    min-height: 0 !important;
}

@supports (height: 100dvh) {
    body.in-voice .main-tab-pane:not(#main-room):not(#main-private) .page-content-wrapper,
    body.in-voice .main-tab-pane:not(#main-room):not(#main-private) .main-panel,
    body.in-voice .main-tab-pane:not(#main-room):not(#main-private) .height-scroll,
    body.in-voice .main-tab-pane:not(#main-room):not(#main-private) .height-scroll-rpanel {
        height: calc(100dvh - 50px) !important;
    }
}

.woo-cinema-shell {
    min-height: 100%;
    padding: 24px;
    color: #fff;
    background:
        radial-gradient(circle at 18% 0%, rgba(239, 68, 68, .22), transparent 34%),
        radial-gradient(circle at 92% 18%, rgba(255, 255, 255, .10), transparent 28%),
        linear-gradient(135deg, rgba(8, 12, 24, .96), rgba(42, 9, 18, .92) 48%, rgba(8, 12, 24, .98));
}

.woo-cinema-hero,
.woo-cinema-stage,
.woo-cinema-tab,
.woo-cinema-chat-panel {
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(15, 23, 42, .74);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .28);
}

.woo-cinema-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
    border-radius: 20px;
}

.woo-cinema-kicker {
    color: #fb7185;
    font-weight: 950;
    text-transform: uppercase;
    font-size: 12px;
}

.woo-cinema-hero h2 {
    margin: 4px 0;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 950;
}

.woo-cinema-hero p {
    margin: 0;
    color: rgba(226, 232, 240, .78);
}

.woo-cinema-chat-toggle {
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    padding: 0 18px;
    color: #fff;
    background: linear-gradient(135deg, #e11d48, #fb7185);
    font-weight: 900;
}

.woo-cinema-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin: 16px 0;
}

.woo-cinema-tab {
    min-height: 58px;
    border-radius: 16px;
    color: rgba(255, 255, 255, .82);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 900;
}

.woo-cinema-tab.is-active {
    border-color: rgba(251, 113, 133, .72);
    background: linear-gradient(135deg, rgba(225, 29, 72, .82), rgba(15, 23, 42, .72));
}

.woo-cinema-live,
.woo-cinema-off {
    border-radius: 999px;
    padding: 3px 7px;
    font-size: 10px;
}

.woo-cinema-live {
    background: rgba(34, 197, 94, .18);
    color: #86efac;
}

.woo-cinema-off {
    background: rgba(148, 163, 184, .14);
    color: #cbd5e1;
}

.woo-cinema-stage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 16px;
    border-radius: 22px;
    padding: 16px;
}

.woo-cinema-player {
    position: relative;
    min-height: 460px;
    border-radius: 18px;
    overflow: hidden;
    background: #020617 center/cover no-repeat;
    display: grid;
    place-items: center;
}

.woo-cinema-video {
    width: 100%;
    height: 100%;
    min-height: 460px;
    background: #000;
}

.woo-cinema-empty {
    display: grid;
    place-items: center;
    gap: 8px;
    color: rgba(226, 232, 240, .78);
    text-align: center;
}

.woo-cinema-empty i {
    font-size: 48px;
    color: #fb7185;
}

.woo-cinema-chat-panel {
    display: flex;
    flex-direction: column;
    min-height: 460px;
    max-height: 620px;
    border-radius: 18px;
    overflow: hidden;
}

.woo-cinema-chat-head,
.woo-cinema-chat-form {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.woo-cinema-chat-close {
    margin-left: auto;
    border: 0;
    background: transparent;
    color: #fff;
}

.woo-cinema-spoiler-note {
    margin: 12px;
    padding: 10px;
    border-radius: 12px;
    color: #fecdd3;
    background: rgba(225, 29, 72, .12);
}

.woo-cinema-chat-list {
    flex: 1;
    overflow-y: auto;
    padding: 0 12px 12px;
}

.woo-cinema-chat-msg {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.woo-cinema-chat-msg img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.woo-cinema-chat-msg p {
    margin: 2px 0 0;
    color: rgba(226, 232, 240, .86);
}

.woo-cinema-chat-form {
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 0;
}

.woo-cinema-chat-form input {
    flex: 1;
    min-width: 0;
    border-radius: 999px !important;
}

.woo-cinema-chat-form button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #e11d48, #fb7185);
}

@media (max-width: 1100px) {
    .woo-cinema-stage {
        grid-template-columns: 1fr;
    }

    .woo-cinema-chat-panel {
        display: none;
    }

    .woo-cinema-chat-panel.is-open {
        display: flex;
        position: fixed;
        inset: 76px 12px 18px;
        z-index: 1050;
    }

    .woo-cinema-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.woo-cinema-landing {
    min-height: calc(100vh - 120px);
    display: grid;
    place-items: center;
    padding: 42px 18px;
    background:
        radial-gradient(circle at 18% 18%, rgba(244, 63, 94, .18), transparent 32%),
        radial-gradient(circle at 86% 12%, rgba(255, 255, 255, .08), transparent 28%),
        #070a13;
}

.woo-cinema-landing-card {
    width: min(900px, 100%);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 28px;
    padding: clamp(28px, 5vw, 64px);
    background: linear-gradient(135deg, rgba(18, 23, 38, .94), rgba(58, 18, 30, .86));
    box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
}

.woo-cinema-landing-card > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff4d6d;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.woo-cinema-landing-card h1 {
    margin: 14px 0;
    color: #fff;
    font-size: clamp(34px, 6vw, 72px);
    line-height: 1;
}

.woo-cinema-landing-card p {
    max-width: 720px;
    color: rgba(255, 255, 255, .78);
    font-size: 17px;
}

.woo-cinema-page {
    min-height: calc(100vh - 78px);
    padding: 110px clamp(14px, 4vw, 46px) 46px;
    background:
        radial-gradient(circle at 10% 12%, rgba(244, 63, 94, .20), transparent 28%),
        radial-gradient(circle at 90% 4%, rgba(255, 255, 255, .08), transparent 24%),
        linear-gradient(135deg, #070a13 0%, #11131f 48%, #1c0a12 100%);
}

.woo-cinema-public-hero {
    width: min(1420px, 100%);
    margin: 0 auto 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(13, 19, 34, .92), rgba(69, 20, 32, .72));
    box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
}

.woo-cinema-public-hero h1 {
    margin: 10px 0;
    color: #fff;
    font-size: clamp(32px, 5vw, 64px);
    line-height: .98;
}

.woo-cinema-public-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 16px;
}

.woo-cinema-home-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    border-radius: 999px;
    padding: 12px 16px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
}

.woo-cinema-home-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, .14);
}

.woo-cinema-public-shell {
    width: min(1420px, 100%);
    margin: 0 auto;
}

.woo-cinema-public-shell .woo-cinema-stage,
.woo-cinema-public-shell .woo-cinema-player,
.woo-cinema-public-shell .woo-cinema-video-wrap,
.woo-cinema-public-shell .woo-cinema-chat-panel {
    min-width: 0;
}

.woo-cinema-public-shell .woo-cinema-tab {
    justify-content: flex-start;
    padding: 10px 12px;
    text-align: left;
}

.woo-cinema-public-shell .woo-cinema-tab strong {
    white-space: nowrap;
}

.woo-cinema-public-shell .woo-cinema-tab span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.woo-cinema-public-shell .woo-cinema-tab .woo-cinema-live,
.woo-cinema-public-shell .woo-cinema-tab .woo-cinema-off {
    flex: 0 0 auto;
    margin-left: auto;
}

.woo-cinema-now {
    position: absolute;
    left: 18px;
    bottom: 18px;
    max-width: calc(100% - 36px);
    padding: 12px 14px;
    border-radius: 16px;
    color: #fff;
    background: rgba(7, 10, 19, .74);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(14px);
}

.woo-cinema-now strong,
.woo-cinema-now span {
    display: block;
}

.woo-cinema-now span {
    margin-top: 2px;
    color: rgba(255, 255, 255, .68);
}

.woo-cinema-player .woo-cinema-now {
    top: 70px;
    right: 16px;
    bottom: auto;
    left: auto;
    z-index: 4;
    max-width: min(440px, calc(100% - 150px));
}

.woo-cinema-public-shell .woo-cinema-player .woo-cinema-now {
    top: auto;
    right: 16px;
    bottom: 84px;
    max-width: min(230px, calc(100% - 32px));
}

.woo-cinema-hero-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.woo-cinema-video-wrap {
    position: absolute;
    inset: 0;
    background: #000;
}

.woo-cinema-player {
    aspect-ratio: 16 / 9;
    min-height: 420px;
}

.woo-cinema-video {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    background: #000;
}

.woo-cinema-public-shell .woo-cinema-video {
    max-width: 100%;
}

.woo-cinema-live-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    z-index: 3;
    padding: 8px 12px;
    border-radius: 999px;
    color: #fff;
    font-weight: 950;
    font-size: 12px;
    text-transform: uppercase;
    background: linear-gradient(135deg, rgba(225, 29, 72, .94), rgba(251, 113, 133, .82));
    box-shadow: 0 12px 32px rgba(225, 29, 72, .34);
}

.woo-cinema-view-tools {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 8;
    display: inline-flex;
    gap: 6px;
}

.woo-cinema-view-tools button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    color: #fff;
    background: rgba(8, 11, 20, .72);
    backdrop-filter: blur(14px);
}

.woo-cinema-view-tools button:hover,
.woo-cinema-view-tools button.is-active {
    border-color: rgba(251, 113, 133, .6);
    background: rgba(225, 29, 72, .28);
}

.woo-cinema-drag-handle {
    display: none !important;
    cursor: grab;
    touch-action: none;
}

.woo-cinema-player.is-floating {
    position: fixed;
    z-index: 1090;
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: min(430px, calc(100vw - 28px));
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(251, 113, 133, .4);
    border-radius: 18px;
    overflow: hidden;
    background: #020617;
    box-shadow: 0 24px 75px rgba(0, 0, 0, .68);
}

.woo-cinema-player.is-floating.is-dragging {
    user-select: none;
}

.woo-cinema-player.is-floating .woo-cinema-video-wrap {
    position: absolute;
    inset: 0;
    border-radius: inherit;
}

.woo-cinema-player.is-floating .woo-cinema-drag-handle {
    display: inline-flex !important;
}

.woo-cinema-player.is-floating .woo-cinema-now,
.woo-cinema-player.is-floating .woo-cinema-select-wrap,
.woo-cinema-player.is-floating .woo-cinema-control-note,
.woo-cinema-player.is-floating .woo-cinema-subtitle-toggle {
    display: none;
}

.woo-cinema-player.is-floating .woo-cinema-live-badge {
    top: 12px;
    left: 12px;
    padding: 6px 9px;
    font-size: 10px;
}

.woo-cinema-player.is-floating .woo-cinema-view-tools {
    top: 9px;
    right: 9px;
}

.woo-cinema-player.is-floating .woo-cinema-view-tools button {
    width: 34px;
    height: 34px;
    border-radius: 10px;
}

.woo-cinema-player.is-floating .woo-cinema-controls {
    left: 9px;
    right: 9px;
    bottom: 9px;
    min-height: 42px;
    gap: 8px;
    padding: 5px;
    border-radius: 13px;
}

.woo-cinema-player.is-floating .woo-cinema-control-btn {
    min-width: 34px;
    height: 34px;
    border-radius: 9px;
}

.woo-cinema-player.is-floating .woo-cinema-volume {
    width: min(130px, 35vw);
}

.woo-cinema-video-wrap:fullscreen,
.woo-cinema-video-wrap:-webkit-full-screen,
.woo-cinema-video-wrap.is-screen-mode {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    background: #000;
}

.woo-cinema-video-wrap:fullscreen .woo-cinema-video,
.woo-cinema-video-wrap:-webkit-full-screen .woo-cinema-video,
.woo-cinema-video-wrap.is-screen-mode .woo-cinema-video {
    height: 100%;
}

body.woo-cinema-screen-active {
    overflow: hidden;
}

.woo-cinema-start {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    padding: 13px 18px;
    color: #fff;
    font-weight: 950;
    background: linear-gradient(135deg, rgba(225, 29, 72, .96), rgba(251, 113, 133, .86));
    box-shadow: 0 20px 60px rgba(0, 0, 0, .42);
}

.woo-cinema-start[hidden] {
    display: none;
}

.woo-cinema-resume {
    position: absolute;
    inset: 50% auto auto 50%;
    z-index: 6;
    width: min(410px, calc(100% - 32px));
    transform: translate(-50%, -50%);
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 20px;
    color: #fff;
    background: rgba(8, 11, 20, .9);
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 65px rgba(0, 0, 0, .48);
}

.woo-cinema-resume[hidden] {
    display: none;
}

.woo-cinema-resume strong {
    font-size: 18px;
}

.woo-cinema-resume span {
    color: rgba(226, 232, 240, .76);
    font-size: 13px;
}

.woo-cinema-resume div {
    display: flex;
    gap: 8px;
    margin-top: 5px;
}

.woo-cinema-resume button {
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    padding: 0 13px;
    color: #fff;
    font-weight: 800;
    background: rgba(255, 255, 255, .07);
}

.woo-cinema-resume button:first-child {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-color: rgba(251, 113, 133, .48);
    background: linear-gradient(135deg, #e11d48, #fb7185);
}

.woo-cinema-controls {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    background: rgba(8, 11, 20, .72);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .34);
}

.woo-cinema-control-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    font-weight: 900;
}

.woo-cinema-control-btn:hover,
.woo-cinema-control-btn.is-active {
    border-color: rgba(251, 113, 133, .62);
    background: rgba(225, 29, 72, .28);
}

.woo-cinema-volume {
    width: min(190px, 22vw);
    accent-color: #fb7185;
}

.woo-cinema-select-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 0 auto;
    color: rgba(255, 255, 255, .76);
    font-size: 12px;
    font-weight: 900;
}

.woo-cinema-quality {
    min-width: 116px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    padding: 0 10px;
    outline: 0;
}

.woo-cinema-quality option {
    color: #111827;
}

.woo-cinema-control-note {
    margin-left: auto;
    color: rgba(255, 255, 255, .64);
    font-weight: 800;
}

.woo-cinema-chat-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.woo-cinema-chat-panel {
    min-height: 420px;
}

.woo-cinema-chat-list {
    scrollbar-width: thin;
    scrollbar-color: rgba(251, 113, 133, .55) transparent;
}

@media (max-width: 760px) {
    .woo-cinema-page {
        padding-top: 92px;
    }

    .woo-cinema-public-hero {
        align-items: flex-start;
        flex-direction: column;
        padding: 22px;
    }

    .woo-cinema-tabs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1100px) {
    .woo-cinema-player {
        min-height: 0;
    }

    .woo-cinema-chat-panel.is-open {
        inset: auto 10px 10px;
        max-height: 58dvh;
        min-height: 0;
        border-radius: 22px;
    }
}

@media (max-width: 760px) {
    .woo-cinema-public-hero h1 {
        font-size: 34px;
    }

    .woo-cinema-shell {
        padding: 14px;
    }

    .woo-cinema-stage {
        padding: 10px;
        border-radius: 18px;
    }

    .woo-cinema-controls {
        align-items: stretch;
        flex-wrap: wrap;
        min-height: 0;
        border-radius: 16px;
    }

    .woo-cinema-volume {
        flex: 1;
        min-width: 120px;
        width: auto;
    }

    .woo-cinema-select-wrap {
        order: 4;
        width: 100%;
        margin-left: 0;
        justify-content: space-between;
    }

    .woo-cinema-quality {
        flex: 1;
    }

    .woo-cinema-control-note {
        margin-left: 0;
        line-height: 42px;
    }

    .woo-cinema-now {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        max-width: none;
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 760px) {
    .woo-cinema-page {
        min-height: 100dvh;
        padding: 76px 10px 24px;
    }

    .woo-cinema-public-hero {
        gap: 14px;
        margin-bottom: 10px;
        padding: 17px 16px;
        border-radius: 18px;
    }

    .woo-cinema-kicker {
        font-size: 11px;
    }

    .woo-cinema-public-hero h1 {
        margin: 7px 0 8px;
        font-size: 27px;
        line-height: 1.1;
    }

    .woo-cinema-public-hero p {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        font-size: 13px;
        line-height: 1.45;
    }

    .woo-cinema-hero-actions {
        width: 100%;
    }

    .woo-cinema-chat-toggle,
    .woo-cinema-home-link {
        flex: 1;
        min-height: 42px;
        padding: 0 14px;
        font-size: 13px;
    }

    .woo-cinema-shell {
        padding: 10px;
        border-radius: 18px;
    }

    .woo-cinema-tabs {
        display: flex;
        gap: 8px;
        margin: 0 0 10px;
        padding: 0 0 4px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .woo-cinema-tabs::-webkit-scrollbar {
        display: none;
    }

    .woo-cinema-tab {
        flex: 0 0 132px;
        min-height: 56px;
        padding: 8px 9px;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 4px 7px;
        border-radius: 13px;
        scroll-snap-align: start;
        text-align: left;
    }

    .woo-cinema-tab strong {
        font-size: 12px;
    }

    .woo-cinema-tab span {
        order: 3;
        width: 100%;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 11px;
        font-weight: 600;
        color: rgba(226, 232, 240, .7);
    }

    .woo-cinema-live,
    .woo-cinema-off {
        margin-left: auto;
        padding: 2px 6px;
    }

    .woo-cinema-stage {
        display: block;
        padding: 7px;
        border-radius: 15px;
    }

    .woo-cinema-player {
        display: block;
        overflow: visible;
        aspect-ratio: auto;
        border-radius: 12px;
        background: transparent;
    }

    .woo-cinema-empty {
        min-height: min(50vw, 190px);
        padding: 20px 14px;
        border-radius: 12px;
        background: #020617;
    }

    .woo-cinema-empty i {
        font-size: 34px;
    }

    .woo-cinema-video-wrap {
        position: relative;
        inset: auto;
        overflow: hidden;
        border-radius: 12px;
        background: #020617;
    }

    .woo-cinema-video {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .woo-cinema-live-badge {
        top: 10px;
        left: 10px;
        padding: 6px 9px;
        font-size: 10px;
    }

    .woo-cinema-view-tools {
        top: 8px;
        right: 8px;
        gap: 5px;
    }

    .woo-cinema-view-tools button {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .woo-cinema-start {
        padding: 11px 14px;
        gap: 7px;
        font-size: 12px;
    }

    .woo-cinema-resume {
        width: calc(100% - 20px);
        padding: 13px;
        border-radius: 14px;
    }

    .woo-cinema-resume strong {
        font-size: 15px;
    }

    .woo-cinema-resume div {
        display: grid;
        grid-template-columns: 1fr;
    }

    .woo-cinema-resume button {
        width: 100%;
        justify-content: center;
        min-height: 38px;
        font-size: 12px;
    }

    .woo-cinema-controls {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr) auto;
        gap: 8px;
        margin: 7px;
        padding: 7px;
        border-radius: 13px;
        background: rgba(8, 11, 20, .9);
    }

    .woo-cinema-control-btn {
        height: 40px;
        min-width: 40px;
        border-radius: 11px;
        font-size: 12px;
    }

    .woo-cinema-volume {
        width: 100%;
        min-width: 0;
        align-self: center;
    }

    .woo-cinema-select-wrap {
        grid-column: 1 / -1;
        order: initial;
        gap: 10px;
        width: 100%;
    }

    .woo-cinema-quality {
        min-width: 0;
        height: 40px;
    }

    .woo-cinema-control-note {
        margin: 0;
        font-size: 12px;
        line-height: 40px;
    }

    .woo-cinema-subtitle-toggle {
        grid-column: 3;
        grid-row: 1;
    }

    .woo-cinema-now {
        margin: 8px 0 0;
        padding: 10px 11px;
        border-radius: 12px;
        font-size: 13px;
    }

    .woo-cinema-chat-panel.is-open {
        inset: auto 8px max(8px, env(safe-area-inset-bottom));
        max-height: min(66dvh, 530px);
        border-radius: 18px;
        box-shadow: 0 -16px 48px rgba(0, 0, 0, .52);
    }

    .woo-cinema-player.is-floating {
        width: min(360px, calc(100vw - 18px));
        right: 9px;
        bottom: max(9px, env(safe-area-inset-bottom));
        border-radius: 14px;
    }

    .woo-cinema-player.is-floating .woo-cinema-live-badge {
        display: none;
    }

    .woo-cinema-player.is-floating .woo-cinema-controls {
        display: flex;
        margin: 0;
    }

    .woo-cinema-player.is-floating .woo-cinema-view-tools button {
        width: 31px;
        height: 31px;
    }

    .woo-cinema-chat-head,
    .woo-cinema-chat-form {
        padding: 10px;
    }

    .woo-cinema-spoiler-note {
        margin: 9px;
        padding: 8px 9px;
        font-size: 12px;
    }
}
