


.theme-online-main .theme-shell {
    padding-inline: 24px;
}

.theme-online-main {
    --theme-online-accent-primary: var(--theme-accent-primary-data);
    --theme-online-accent-primary-soft: rgb(var(--theme-accent-primary-data-rgb) / 0.14);
    --theme-online-accent-highlight: var(--theme-accent-highlight-data);
    --theme-online-accent-highlight-soft: rgb(var(--theme-accent-highlight-data-rgb) / 0.18);
    --theme-online-accent-secondary: var(--theme-accent-secondary-data);
    --theme-online-accent-secondary-soft: rgb(var(--theme-accent-secondary-data-rgb) / 0.14);
    --theme-online-panel: rgb(var(--theme-panel-rgb) / 0.86);
    --theme-online-border: rgb(var(--theme-accent-highlight-data-rgb) / 0.24);
    --theme-online-muted: var(--theme-muted);
    min-height: 100vh;
    background:
        radial-gradient(
            circle at 12% 12%,
            rgb(var(--theme-accent-primary-data-rgb) / 0.09),
            transparent 30rem
        ),
        radial-gradient(
            circle at 88% 8%,
            rgb(var(--theme-accent-secondary-data-rgb) / 0.08),
            transparent 28rem
        ),
        var(--theme-section-2);
}

.theme-online-hero {
    position: relative;
    overflow: hidden;
    padding: 76px 0 66px;
    border-bottom: 1px solid rgb(var(--theme-accent-highlight-data-rgb) / 0.16);
}

.theme-online-hero::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgb(var(--theme-section-2-rgb) / 0.98) 0%,
            rgb(var(--theme-section-4-rgb) / 0.88) 56%,
            rgb(var(--theme-background-soft-rgb) / 0.62) 100%
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 79px,
            rgb(var(--theme-accent-highlight-data-rgb) / 0.025) 80px
        );
    content: "";
    pointer-events: none;
}

.theme-online-hero::after {
    position: absolute;
    right: -120px;
    top: -170px;
    width: 520px;
    height: 520px;
    border: 1px solid rgb(var(--theme-accent-highlight-data-rgb) / 0.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 48px rgb(var(--theme-accent-primary-data-rgb) / 0.018),
        0 0 0 96px rgb(var(--theme-accent-secondary-data-rgb) / 0.014);
    content: "";
    pointer-events: none;
}

.theme-online-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 48px;
    align-items: center;
}

.theme-online-eyebrow {
    margin: 0 0 10px;
    color: var(--theme-online-accent-highlight);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.theme-online-hero h1 {
    margin: 0;
    color: var(--theme-text);
    font-family: var(--theme-serif);
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 0.98;
}

.theme-online-hero-lead {
    max-width: 640px;
    margin: 24px 0 0;
    color: var(--theme-text-dim);
    font-size: 15px;
    line-height: 1.9;
}

.theme-online-count-card {
    min-width: 220px;
    padding: 24px 30px 27px;
    border: 1px solid rgb(var(--theme-accent-highlight-data-rgb) / 0.42);
    border-radius: 12px;
    background:
        linear-gradient(
            145deg,
            rgb(var(--theme-accent-primary-data-rgb) / 0.07),
            rgb(var(--theme-accent-secondary-data-rgb) / 0.04)
        ),
        rgb(var(--theme-section-3-rgb) / 0.76);
    box-shadow:
        inset 0 0 0 1px rgb(var(--theme-text-rgb) / 0.025),
        0 20px 60px rgb(var(--theme-background-deep-rgb) / 0.26);
    text-align: center;
}

.theme-online-count-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--theme-text-soft);
    font-size: 12px;
}

.theme-online-count-label i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--theme-online-accent-secondary);
    box-shadow: 0 0 14px rgb(var(--theme-accent-secondary-data-rgb) / 0.85);
}

.theme-online-count-card strong {
    display: block;
    margin-top: 7px;
    color: var(--theme-text);
    font-family: var(--theme-serif);
    font-size: 58px;
    font-weight: 400;
    line-height: 1;
    text-shadow: 0 0 22px rgb(var(--theme-accent-secondary-data-rgb) / 0.16);
}

.theme-online-count-card small {
    display: block;
    margin-top: 8px;
    color: var(--theme-online-muted);
    font-size: 11px;
}

.theme-online-directory {
    padding: 58px 0 82px;
}

.theme-online-section-heading {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: flex-end;
    margin-bottom: 24px;
}

.theme-online-section-heading h2 {
    margin: 0;
    color: var(--theme-text-soft);
    font-family: var(--theme-serif);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
}

.theme-online-result-count {
    display: flex;
    gap: 7px;
    align-items: baseline;
    color: var(--theme-online-muted);
    font-size: 12px;
}

.theme-online-result-count strong {
    color: var(--theme-online-accent-primary);
    font-family: var(--theme-serif);
    font-size: 28px;
    font-weight: 400;
}

.theme-online-filters {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr))
        auto;
    gap: 12px;
    margin-bottom: 28px;
    padding: 16px;
    border: 1px solid var(--theme-online-border);
    border-radius: 12px;
    background:
        linear-gradient(
            180deg,
            rgb(var(--theme-text-rgb) / 0.025),
            transparent
        ),
        var(--theme-online-panel);
    box-shadow: 0 18px 52px rgb(var(--theme-background-deep-rgb) / 0.18);
}

.theme-online-filter {
    min-width: 0;
}

.theme-online-filter label {
    display: block;
    margin-bottom: 7px;
    color: var(--theme-text-dim);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.theme-online-filter select {
    width: 100%;
    min-height: 42px;
    padding: 0 38px 0 12px;
    border: 1px solid rgb(var(--theme-accent-highlight-data-rgb) / 0.24);
    border-radius: 7px;
    outline: none;
    background: var(--theme-background-soft);
    color: var(--theme-text-soft);
    font: inherit;
    font-size: 13px;
}

.theme-online-filter select:focus {
    border-color: rgb(var(--theme-accent-primary-data-rgb) / 0.72);
    box-shadow: 0 0 0 2px rgb(var(--theme-accent-primary-data-rgb) / 0.09);
}


.theme-online-filter-clear {
    display: flex;
    align-items: flex-end;
}

.theme-online-clear {
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgb(var(--theme-accent-secondary-data-rgb) / 0.38);
    border-radius: 7px;
    background: rgb(var(--theme-accent-secondary-data-rgb) / 0.055);
    color: var(--theme-text-dim);
    font: inherit;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition:
        border-color 160ms ease,
        background 160ms ease,
        color 160ms ease;
}

.theme-online-clear:hover {
    border-color: rgb(var(--theme-accent-secondary-data-rgb) / 0.72);
    background: rgb(var(--theme-accent-secondary-data-rgb) / 0.11);
    color: var(--theme-accent-secondary-pale);
}

.theme-online-clear:focus-visible {
    outline: 2px solid var(--theme-online-accent-secondary);
    outline-offset: 2px;
}

.theme-online-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.theme-online-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgb(var(--theme-accent-highlight-data-rgb) / 0.22);
    border-radius: 10px;
    background: var(--theme-background-soft);
    box-shadow:
        inset 0 1px rgb(var(--theme-text-rgb) / 0.02),
        0 12px 30px rgb(var(--theme-background-deep-rgb) / 0.18);
    transition:
        transform 170ms ease,
        border-color 170ms ease,
        box-shadow 170ms ease;
}

.theme-online-card:hover {
    transform: translateY(-3px);
    border-color: rgb(var(--theme-accent-highlight-data-rgb) / 0.5);
    box-shadow:
        0 18px 38px rgb(var(--theme-background-deep-rgb) / 0.28),
        0 0 24px rgb(var(--theme-accent-primary-data-rgb) / 0.045);
}

.theme-online-card[hidden] {
    display: none !important;
}

.theme-online-card > a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.theme-online-card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background:
        radial-gradient(
            circle at center,
            rgb(var(--theme-accent-primary-data-rgb) / 0.08),
            transparent 60%
        ),
        var(--theme-section-1);
}

.theme-online-card-media::after {
    position: absolute;
    inset: auto 0 0;
    height: 52%;
    background:
        linear-gradient(
            180deg,
            transparent,
            rgb(var(--theme-background-deep-rgb) / 0.58)
        );
    content: "";
    pointer-events: none;
}

.theme-online-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}

.theme-online-card:hover .theme-online-card-media img {
    transform: scale(1.025);
}

.theme-online-card-top {
    position: absolute;
    z-index: 2;
    top: 9px;
    right: 9px;
    left: 9px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    pointer-events: none;
}

.theme-online-live-badge,
.theme-online-vr-badge,
.theme-online-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.045em;
}

.theme-online-live-badge {
    border: 1px solid rgb(var(--theme-accent-secondary-data-rgb) / 0.78);
    background: rgb(var(--theme-accent-secondary-deep-rgb) / 0.72);
    color: var(--theme-text);
    box-shadow: 0 0 14px rgb(var(--theme-accent-secondary-data-rgb) / 0.18);
}

.theme-online-vr-badge {
    margin-left: auto;
    border: 1px solid rgb(var(--theme-accent-highlight-data-rgb) / 0.62);
    background: rgb(var(--theme-on-highlight-rgb) / 0.72);
    color: var(--theme-accent-highlight-soft);
}

.theme-online-viewers {
    position: absolute;
    z-index: 2;
    right: 9px;
    bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 7px;
    border: 1px solid rgb(var(--theme-text-rgb) / 0.12);
    border-radius: 999px;
    background: rgb(var(--theme-section-1-rgb) / 0.72);
    color: var(--theme-text);
    font-size: 10px;
    font-weight: 700;
    backdrop-filter: blur(7px);
}

.theme-online-viewers span {
    color: var(--theme-online-accent-highlight);
}

.theme-online-card-body {
    padding: 12px 12px 13px;
}

.theme-online-card-name {
    display: flex;
    gap: 8px;
    align-items: center;
    min-width: 0;
}

.theme-online-card-name strong {
    overflow: hidden;
    color: var(--theme-text-soft);
    font-family: var(--theme-serif);
    font-size: 17px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.theme-online-gender {
    flex: 0 0 auto;
    color: var(--theme-online-accent-primary);
    font-size: 11px;
}

.theme-online-card-meta {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
    margin-top: 10px;
}

.theme-online-status {
    border: 1px solid rgb(var(--theme-accent-primary-data-rgb) / 0.4);
    background: rgb(var(--theme-accent-primary-data-rgb) / 0.07);
    color: var(--theme-accent-primary-pale);
}

.theme-online-status[data-status="private"] {
    border-color: rgb(var(--theme-accent-secondary-data-rgb) / 0.48);
    background: rgb(var(--theme-accent-secondary-data-rgb) / 0.08);
    color: var(--theme-accent-secondary-pale);
}

.theme-online-status[data-status="group_show"] {
    border-color: rgb(var(--theme-accent-highlight-data-rgb) / 0.5);
    background: rgb(var(--theme-accent-highlight-data-rgb) / 0.08);
    color: var(--theme-accent-highlight-soft);
}

.theme-online-favorite {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    color: var(--theme-muted);
    font-size: 10px;
}

.theme-online-favorite span {
    color: var(--theme-online-accent-secondary);
}

.theme-online-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 38px;
}

.theme-online-load-more {
    min-width: 210px;
    min-height: 48px;
    padding: 10px 24px;
    border: 1px solid rgb(var(--theme-accent-highlight-data-rgb) / 0.48);
    border-radius: 7px;
    background:
        linear-gradient(
            180deg,
            rgb(var(--theme-accent-highlight-data-rgb) / 0.09),
            rgb(var(--theme-accent-primary-data-rgb) / 0.03)
        );
    color: var(--theme-accent-highlight-pale);
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition:
        border-color 160ms ease,
        background 160ms ease,
        color 160ms ease;
}

.theme-online-load-more:hover {
    border-color: var(--theme-online-accent-highlight);
    background:
        linear-gradient(
            180deg,
            rgb(var(--theme-accent-highlight-data-rgb) / 0.15),
            rgb(var(--theme-accent-primary-data-rgb) / 0.055)
        );
    color: var(--theme-text-soft);
}

.theme-online-load-more[hidden] {
    display: none;
}

.theme-online-empty {
    padding: 70px 20px;
    border: 1px solid rgb(var(--theme-accent-highlight-data-rgb) / 0.18);
    border-radius: 12px;
    background: rgb(var(--theme-background-soft-rgb) / 0.7);
    text-align: center;
}

.theme-online-empty[hidden] {
    display: none;
}

.theme-online-empty h2,
.theme-online-empty h3 {
    margin: 0;
    color: var(--theme-text-soft);
    font-family: var(--theme-serif);
    font-weight: 400;
}

.theme-online-empty p {
    margin: 10px 0 0;
    color: var(--theme-online-muted);
}

.theme-online-newsletter {
    padding: 0 0 82px;
}

.theme-online-newsletter-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: center;
    padding: 26px 30px;
    border: 1px solid rgb(var(--theme-accent-secondary-data-rgb) / 0.34);
    border-radius: 12px;
    background:
        radial-gradient(
            circle at 8% 50%,
            rgb(var(--theme-accent-secondary-data-rgb) / 0.12),
            transparent 26rem
        ),
        linear-gradient(
            90deg,
            rgb(var(--theme-panel-contrast-rgb) / 0.75),
            rgb(var(--theme-panel-rgb) / 0.84)
        );
}

.theme-online-newsletter h2 {
    margin: 0;
    color: var(--theme-text-soft);
    font-family: var(--theme-serif);
    font-size: 26px;
    font-weight: 400;
}

.theme-online-newsletter p:not(.theme-online-eyebrow) {
    margin: 7px 0 0;
    color: var(--theme-muted);
    font-size: 12px;
}

.theme-online-newsletter-cta {
    display: inline-flex;
    min-width: 170px;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 1px solid rgb(var(--theme-accent-secondary-data-rgb) / 0.7);
    border-radius: 7px;
    background:
        linear-gradient(
            135deg,
            rgb(var(--theme-accent-secondary-data-rgb) / 0.88),
            rgb(var(--theme-accent-secondary-deep-rgb) / 0.88)
        );
    box-shadow: 0 0 22px rgb(var(--theme-accent-secondary-data-rgb) / 0.12);
    color: var(--theme-text);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 1180px) {
    .theme-online-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .theme-online-hero {
        padding: 58px 0 52px;
    }

    .theme-online-hero-inner {
        grid-template-columns: 1fr;
    }

    .theme-online-count-card {
        width: min(100%, 280px);
        min-width: 0;
        text-align: left;
    }

    .theme-online-count-label {
        justify-content: flex-start;
    }

    .theme-online-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .theme-online-filter-clear {
        align-items: stretch;
    }

    .theme-online-clear {
        width: 100%;
    }

    .theme-online-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .theme-online-hero {
        padding: 46px 0 42px;
    }

    .theme-online-hero h1 {
        font-size: clamp(44px, 14vw, 66px);
    }

    .theme-online-directory {
        padding: 42px 0 62px;
    }

    .theme-online-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .theme-online-filters {
        grid-template-columns: 1fr 1fr;
        gap: 9px;
        padding: 12px;
    }

    .theme-online-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .theme-online-card-body {
        padding: 10px;
    }

    .theme-online-card-name strong {
        font-size: 14px;
    }

    .theme-online-card-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .theme-online-newsletter-inner {
        grid-template-columns: 1fr;
        padding: 23px 20px;
    }

    .theme-online-newsletter-cta {
        width: 100%;
    }
}

@media (max-width: 440px) {
    .theme-online-filters {
        grid-template-columns: 1fr;
    }
}


.theme-online-trends {
    padding: 38px 0 0;
}

.theme-online-trends-panel {
    padding: 25px;
    border: 1px solid rgb(var(--theme-accent-highlight-data-rgb) / 0.25);
    border-radius: 12px;
    background:
        radial-gradient(
            circle at 82% 14%,
            rgb(var(--theme-accent-secondary-data-rgb) / 0.08),
            transparent 26rem
        ),
        linear-gradient(
            135deg,
            rgb(var(--theme-panel-alt-rgb) / 0.94),
            rgb(var(--theme-section-3-rgb) / 0.92)
        );
    box-shadow: 0 20px 55px rgb(var(--theme-background-deep-rgb) / 0.18);
}

.theme-online-trends-heading {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: flex-end;
}

.theme-online-trends-heading h2 {
    margin: 0;
    color: var(--theme-text-soft);
    font-family: var(--theme-serif);
    font-size: 30px;
    font-weight: 400;
}

.theme-online-trends-heading p:not(.theme-online-eyebrow) {
    max-width: 620px;
    margin: 8px 0 0;
    color: var(--theme-online-muted);
    font-size: 12px;
    line-height: 1.7;
}

.theme-online-trends-link {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 9px;
    padding: 0 13px;
    border: 1px solid rgb(var(--theme-accent-highlight-data-rgb) / 0.34);
    border-radius: 7px;
    color: var(--theme-accent-highlight-pale);
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.theme-online-trends-link span {
    color: var(--theme-online-accent-primary);
    font-size: 17px;
}

.theme-online-trend-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
}

.theme-online-trend-stat {
    padding: 15px 16px;
    border: 1px solid rgb(var(--theme-accent-primary-data-rgb) / 0.13);
    border-radius: 8px;
    background: rgb(var(--theme-section-2-rgb) / 0.6);
}

.theme-online-trend-stat span {
    display: block;
    color: var(--theme-muted-deep);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.theme-online-trend-stat strong {
    display: block;
    margin-top: 7px;
    color: var(--theme-text-soft);
    font-family: var(--theme-serif);
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
}

.theme-online-status-breakdown {
    margin-top: 18px;
}

.theme-online-status-bar {
    display: flex;
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: rgb(var(--theme-text-rgb) / 0.045);
}

.theme-online-status-bar span {
    display: block;
    height: 100%;
}

.theme-online-status-bar-public {
    background: var(--theme-online-accent-primary);
}

.theme-online-status-bar-private {
    background: var(--theme-online-accent-secondary);
}

.theme-online-status-bar-group {
    background: var(--theme-online-accent-highlight);
}

.theme-online-status-bar-other {
    background: var(--theme-muted-deep);
}

.theme-online-status-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
    color: var(--theme-muted-deep);
    font-size: 9px;
}

.theme-online-status-legend span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.theme-online-status-legend i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.theme-online-status-legend .is-public {
    background: var(--theme-online-accent-primary);
}

.theme-online-status-legend .is-private {
    background: var(--theme-online-accent-secondary);
}

.theme-online-status-legend .is-group {
    background: var(--theme-online-accent-highlight);
}

.theme-online-status-legend .is-other {
    background: var(--theme-muted-deep);
}


@media (max-width: 760px) {
    .theme-online-trends-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .theme-online-trends-link {
        width: 100%;
        justify-content: center;
    }

    .theme-online-trend-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 440px) {
    .theme-online-trends-panel {
        padding: 18px;
    }
}



@media (max-width: 680px) {
    .theme-online-main .theme-shell {
        padding-inline: 16px;
    }

    .theme-online-hero {
        padding: 48px 0 44px;
    }

    .theme-online-hero-lead {
        font-size: 15px;
        line-height: 1.8;
    }

    .theme-online-count-card {
        width: 100%;
        padding: 22px;
    }

    .theme-online-count-card strong {
        font-size: 54px;
    }

    .theme-online-trends {
        padding-top: 28px;
    }

    .theme-online-trends-panel {
        padding: 20px;
    }

    .theme-online-trends-heading h2 {
        font-size: 28px;
    }

    .theme-online-trends-link {
        min-height: 44px;
        font-size: 12px;
    }

    .theme-online-trend-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .theme-online-trend-stat {
        padding: 16px 14px;
    }

    .theme-online-trend-stat span {
        font-size: 10px;
    }

    .theme-online-trend-stat strong {
        margin-top: 8px;
        font-size: 27px;
    }

    .theme-online-status-legend {
        gap: 12px;
        font-size: 10px;
        line-height: 1.6;
    }

    .theme-online-directory {
        padding: 46px 0 66px;
    }

    .theme-online-section-heading {
        gap: 12px;
        margin-bottom: 20px;
    }

    .theme-online-section-heading h2 {
        font-size: 32px;
    }

    .theme-online-result-count {
        font-size: 12px;
    }

    .theme-online-filters {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 24px;
        padding: 16px;
    }

    .theme-online-filter label {
        margin-bottom: 8px;
        font-size: 12px;
    }

    .theme-online-filter select,
    .theme-online-clear {
        min-height: 48px;
        font-size: 14px;
    }

    .theme-online-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .theme-online-card-body {
        padding: 14px;
    }

    .theme-online-card-name strong {
        font-size: 16px;
    }

    .theme-online-card-meta {
        margin-top: 11px;
    }

    .theme-online-status,
    .theme-online-favorite,
    .theme-online-viewers {
        font-size: 11px;
    }

    .theme-online-newsletter {
        padding-bottom: 66px;
    }
}

@media (max-width: 520px) {
    .theme-online-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .theme-online-card-media {
        aspect-ratio: 16 / 9;
    }

    .theme-online-card-name strong {
        font-size: 18px;
    }

    .theme-online-card-body {
        padding: 15px 16px 16px;
    }

    .theme-online-status,
    .theme-online-favorite,
    .theme-online-viewers {
        font-size: 12px;
    }

    .theme-online-trend-stats {
        grid-template-columns: 1fr;
    }
}

.theme-online-gender .theme-icon { width: 16px; height: 16px; }
.theme-online-viewers > span .theme-icon { width: 13px; height: 13px; vertical-align: -0.18em; }
.theme-online-favorite .theme-icon { width: 12px; height: 12px; vertical-align: -0.16em; }


.theme-online-hero h1 { font-size: clamp(40px, 5.3vw, 64px); line-height: 1.18; }
.theme-online-count-card strong { font-size: 50px; }
.theme-online-section-heading h2 { font-size: clamp(24px, 2.7vw, 34px); line-height: 1.3; }
.theme-online-live-badge,
.theme-online-vr-badge,
.theme-online-status,
.theme-online-viewers,
.theme-online-favorite,
.theme-online-trend-stat span,
.theme-online-status-legend { font-size: 11px; }
@media (max-width: 680px) {
    .theme-online-hero h1 { font-size: clamp(34px, 10vw, 44px); }
    .theme-online-count-card strong { font-size: 44px; }
    .theme-online-section-heading h2 { font-size: 24px; }
}

@media (min-width: 961px) {
    .theme-online-hero h1 { font-size: clamp(42px, 5.3vw, 66px); }
    .theme-online-count-card strong { font-size: 52px; }
    .theme-online-section-heading h2 { font-size: clamp(26px, 2.7vw, 36px); }
    .theme-online-live-badge,
    .theme-online-vr-badge,
    .theme-online-status,
    .theme-online-viewers,
    .theme-online-favorite,
    .theme-online-trend-stat span,
    .theme-online-status-legend { font-size: 12px; }
}
