:root {
    --wcity-bg: #08090d;
    --wcity-bg-soft: #11131b;
    --wcity-card: #161925;
    --wcity-border: rgba(255, 255, 255, 0.08);
    --wcity-text: #f4f5f7;
    --wcity-muted: #a3a8b8;
    --wcity-accent: #e50914;
    --wcity-accent-2: #ffb300;
    --wcity-radius: 18px;
}

/* WCity global font lock: keeps frontend, content, forms and WP blocks on Vazirmatn without touching icon fonts. */
html,
body,
button,
input,
select,
textarea,
option,
.wcity-site,
.wcity-main,
.wcity-content,
.entry-content,
.wp-block,
.wp-block *:not(.fa):not(.fas):not(.far):not(.fab):not([class^="fa-"]):not([class*=" fa-"]) {
    font-family: Vazirmatn, Tahoma, Arial, sans-serif;
}

.wcity-content :where(p, li, a, span, div, blockquote, figcaption, table, th, td, h1, h2, h3, h4, h5, h6),
.entry-content :where(p, li, a, span, div, blockquote, figcaption, table, th, td, h1, h2, h3, h4, h5, h6) {
    font-family: Vazirmatn, Tahoma, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--wcity-bg);
    color: var(--wcity-text);
    font-family: Vazirmatn, Tahoma, Arial, sans-serif;
    direction: rtl;
    text-align: right;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.wcity-site {
    min-height: 100vh;
}

.wcity-container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.wcity-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(8, 9, 13, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--wcity-border);
}

.wcity-header__inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.wcity-logo {
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.wcity-logo span {
    color: var(--wcity-accent);
}

.wcity-main {
    padding: 34px 0;
}

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

.wcity-card {
    background: var(--wcity-card);
    border: 1px solid var(--wcity-border);
    border-radius: var(--wcity-radius);
    overflow: hidden;
}

.wcity-card__poster {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    background: #0d0f16;
}

.wcity-card__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wcity-card__noimage {
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--wcity-muted);
}

.wcity-card__rating {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    border: 1px solid var(--wcity-border);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
}

.wcity-card__title {
    margin: 0;
    padding: 12px;
    font-size: 14px;
    line-height: 1.8;
}

.wcity-single-hero {
    position: relative;
    border: 1px solid var(--wcity-border);
    border-radius: 28px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(8, 9, 13, 0.98), rgba(8, 9, 13, 0.72)),
        var(--wcity-hero-bg);
    background-size: cover;
    background-position: center;
    padding: 40px;
    margin-bottom: 24px;
}

.wcity-single-hero__content {
    max-width: 760px;
}

.wcity-single-title {
    margin: 0 0 14px;
    font-size: clamp(26px, 4vw, 44px);
    line-height: 1.35;
}

.wcity-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--wcity-muted);
    font-size: 14px;
}

.wcity-term-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0;
}

.wcity-term-badges a {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--wcity-border);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 13px;
}

.wcity-content {
    background: var(--wcity-bg-soft);
    border: 1px solid var(--wcity-border);
    border-radius: 24px;
    padding: 24px;
    line-height: 2.1;
    margin-bottom: 24px;
}


.wcity-footer {
    border-top: 1px solid var(--wcity-border);
    color: var(--wcity-muted);
    padding: 24px 0;
    margin-top: 40px;
}

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

@media (max-width: 820px) {
    .wcity-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .wcity-single-hero {
        padding: 26px;
    }
}

@media (max-width: 560px) {
    .wcity-container {
        width: min(100% - 22px, 1200px);
    }

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

    .wcity-card__title {
        font-size: 13px;
    }

    .wcity-download-item {
        align-items: stretch;
        flex-direction: column;
    }

    .wcity-download-item__actions {
        width: 100%;
    }

    .wcity-download-btn,
    .wcity-download-lock__actions a {
        flex: 1;
    }
}
/* WCity status badges */
.wcity-status-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
}

.wcity-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .07);
    color: #fff;
}

.wcity-status-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 0 18px currentColor;
}

.wcity-status-badge.is-ok {
    color: #7dffb2;
    background: rgba(36, 190, 105, .12);
    border-color: rgba(36, 190, 105, .25);
}

.wcity-status-badge.is-waiting {
    color: #ffd166;
    background: rgba(255, 193, 7, .12);
    border-color: rgba(255, 193, 7, .25);
}

.wcity-status-badge.is-off {
    color: #b9becd;
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .10);
}

.wcity-status-badge.is-info {
    color: #8ec5ff;
    background: rgba(63, 151, 255, .12);
    border-color: rgba(63, 151, 255, .25);
}

.wcity-status-badge.is-audio {
    color: #d8a7ff;
    background: rgba(178, 91, 255, .14);
    border-color: rgba(178, 91, 255, .28);
}

@media (max-width: 560px) {
    .wcity-status-badges {
        gap: 7px;
    }

    .wcity-status-badge {
        min-height: 31px;
        padding: 6px 10px;
        font-size: 12px;
    }
}

/* WCity download box */
.wcity-downloads,
.wcity-download-lock,
.wcity-download-empty {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--wcity-border);
    border-radius: 26px;
    margin: 24px 0;
    background: linear-gradient(135deg, rgba(17, 19, 27, .98), rgba(8, 9, 13, .98));
}

.wcity-downloads::before,
.wcity-download-lock::before,
.wcity-download-empty::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at top right, rgba(229, 9, 20, .17), transparent 34%),
        radial-gradient(circle at bottom left, rgba(255, 179, 0, .08), transparent 32%);
}

.wcity-downloads > *,
.wcity-download-lock > *,
.wcity-download-empty > * {
    position: relative;
    z-index: 1;
}

.wcity-downloads__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
    border-bottom: 1px solid var(--wcity-border);
}

.wcity-downloads__eyebrow {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--wcity-accent-2);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .3px;
}

.wcity-downloads__head h2 {
    margin: 0 0 7px;
    color: #fff;
    font-size: clamp(21px, 3vw, 30px);
    line-height: 1.45;
}

.wcity-downloads__head p {
    margin: 0;
    color: var(--wcity-muted);
    line-height: 1.9;
}

.wcity-downloads__count {
    display: grid;
    grid-template-columns: auto auto;
    gap: 5px 8px;
    align-items: center;
    min-width: 120px;
    padding: 13px 15px;
    border: 1px solid var(--wcity-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, .055);
}

.wcity-downloads__count strong {
    color: #fff;
    font-size: 19px;
    line-height: 1;
}

.wcity-downloads__count span {
    color: var(--wcity-muted);
    font-size: 12px;
    font-weight: 850;
}

.wcity-downloads__body {
    display: grid;
    gap: 12px;
    padding: 18px;
}

.wcity-download-group {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .085);
    border-radius: 20px;
    background: rgba(255, 255, 255, .045);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
}

.wcity-download-group[open] {
    background: rgba(255, 255, 255, .065);
}

.wcity-download-group__title {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    padding: 16px;
    cursor: pointer;
}

.wcity-download-group__title::-webkit-details-marker {
    display: none;
}

.wcity-download-group__icon {
    position: relative;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(229, 9, 20, .92), rgba(255, 179, 0, .72));
    box-shadow: 0 12px 28px rgba(229, 9, 20, .24);
}

.wcity-download-group__icon::before {
    content: "â†“";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: 950;
}

.wcity-download-group--report .wcity-download-group__icon {
    background: linear-gradient(135deg, rgba(178, 91, 255, .95), rgba(229, 9, 20, .74));
}

.wcity-download-group--report .wcity-download-group__icon::before {
    content: "Ú¯";
}

.wcity-download-group--archive .wcity-download-group__icon {
    background: linear-gradient(135deg, rgba(63, 151, 255, .95), rgba(22, 201, 137, .72));
}

.wcity-download-group--archive .wcity-download-group__icon::before {
    content: "Ø¢";
}

.wcity-download-group__text {
    display: grid;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.wcity-download-group__text strong {
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.wcity-download-group__text em {
    color: var(--wcity-muted);
    font-size: 12px;
    font-style: normal;
}

.wcity-download-group__arrow {
    position: relative;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .075);
}

.wcity-download-group__arrow::before,
.wcity-download-group__arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    width: 12px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transform: translate(50%, -50%);
    transition: .18s ease;
}

.wcity-download-group__arrow::after {
    transform: translate(50%, -50%) rotate(90deg);
}

.wcity-download-group[open] .wcity-download-group__arrow::after {
    transform: translate(50%, -50%) rotate(0deg);
    opacity: 0;
}

.wcity-download-group__items {
    display: grid;
    gap: 10px;
    padding: 0 16px 16px;
}

.wcity-download-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    min-height: 66px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, .075);
    border-radius: 16px;
    background: rgba(0, 0, 0, .18);
}

.wcity-download-item--no-title {
    grid-template-columns: 1fr;
}

.wcity-download-item--report-audio {
    border-color: rgba(178, 91, 255, .22);
    background: radial-gradient(circle at top right, rgba(178, 91, 255, .11), transparent 38%), rgba(0, 0, 0, .18);
}

.wcity-download-item__info {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.wcity-download-item__type {
    width: max-content;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 9px;
    border-radius: 999px;
    color: var(--wcity-muted);
    background: rgba(255, 255, 255, .08);
    font-size: 11px;
    font-weight: 950;
}

.wcity-download-item--audio .wcity-download-item__type,
.wcity-download-item__type--audio {
    color: #d8a7ff;
    background: rgba(178, 91, 255, .14);
}

.wcity-download-item--video .wcity-download-item__type {
    color: #7dffb2;
    background: rgba(36, 190, 105, .13);
}

.wcity-download-item__info strong {
    color: #fff;
    font-size: 14px;
    line-height: 1.8;
    word-break: break-word;
}

.wcity-download-item__actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.wcity-download-item--no-title .wcity-download-item__actions {
    justify-content: flex-start;
}

.wcity-download-btn,
.wcity-download-soon {
    min-height: 40px;
    border-radius: 13px;
    padding: 10px 15px;
    white-space: nowrap;
}

.wcity-download-btn,
.wcity-download-lock__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    color: #fff;
    font-weight: 950;
    text-decoration: none;
}

.wcity-download-btn {
    position: relative;
    overflow: hidden;
}

.wcity-download-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
    transform: translateX(100%);
    transition: .35s ease;
}

.wcity-download-btn:hover::before {
    transform: translateX(-100%);
}

.wcity-download-btn::after {
    position: relative;
    z-index: 1;
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .16);
    font-size: 12px;
    font-weight: 950;
}

.wcity-download-btn span {
    position: relative;
    z-index: 1;
}

.wcity-download-btn--download {
    background: linear-gradient(135deg, #e50914, #b70710);
}

.wcity-download-btn--download::after {
    content: "â†“";
}

.wcity-download-btn--audio {
    background: linear-gradient(135deg, #8f3dff, #b70710);
}

.wcity-download-btn--audio::after {
    content: "ðŸŽ™";
    background: rgba(255, 255, 255, .18);
}

.wcity-download-btn--audio {
    min-width: 46px;
    width: 46px;
    padding-inline: 10px;
}

.wcity-download-btn--audio::after {
    content: none;
}

.wcity-download-audio-icon {
    position: relative;
    z-index: 1;
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    font-size: 18px;
    line-height: 1;
}

.wcity-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.wcity-download-btn--play {
    color: #111;
    background: linear-gradient(135deg, #ffb300, #ff8f00);
}

.wcity-download-btn--play::after {
    content: "â–¶";
    color: #111;
    background: rgba(0, 0, 0, .12);
}

.wcity-download-soon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .075);
    color: var(--wcity-muted);
    font-weight: 950;
}

.wcity-download-lock,
.wcity-download-empty {
    padding: 18px;
}

.wcity-download-lock {
    display: flex;
    gap: 16px;
    align-items: center;
}

.wcity-download-lock strong {
    display: block;
    color: #fff;
    font-size: 16px;
    line-height: 2;
}

.wcity-download-lock__icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(229, 9, 20, .9), rgba(255, 179, 0, .72));
    box-shadow: 0 14px 34px rgba(229, 9, 20, .24);
}

.wcity-download-lock__content {
    display: grid;
    gap: 8px;
}

.wcity-download-lock__content span,
.wcity-download-empty span {
    color: var(--wcity-muted);
    line-height: 1.9;
}

.wcity-download-lock__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.wcity-download-lock__actions a {
    min-height: 40px;
    padding: 10px 16px;
    border-radius: 13px;
    background: var(--wcity-accent);
}

.wcity-download-lock--guest .wcity-download-lock__actions a:first-child {
    background: var(--wcity-card);
    border: 1px solid var(--wcity-border);
}

.wcity-download-empty {
    display: grid;
    gap: 6px;
}

.wcity-download-empty strong {
    color: #fff;
}

.wcity-player-is-open {
    overflow: hidden;
}

.wcity-player-modal[hidden] {
    display: none;
}

.wcity-player-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 18px;
}

.wcity-player-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .78);
    backdrop-filter: blur(10px);
}

.wcity-player-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(1040px, 100%);
    overflow: hidden;
    border: 1px solid var(--wcity-border);
    border-radius: 24px;
    background: #08090d;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .65);
}

.wcity-player-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--wcity-border);
    background: linear-gradient(135deg, rgba(17, 19, 27, .98), rgba(8, 9, 13, .98));
}

.wcity-player-modal__head strong {
    color: #fff;
    line-height: 1.8;
    overflow-wrap: anywhere;
}

.wcity-player-modal__head button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 13px;
    color: #fff;
    background: rgba(229, 9, 20, .18);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.wcity-player-modal__frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
}

.wcity-player-modal__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: #000;
}

@media (max-width: 700px) {
    .wcity-downloads__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .wcity-downloads__count {
        width: 100%;
        grid-template-columns: auto 1fr auto 1fr;
    }

    .wcity-download-item {
        grid-template-columns: 1fr;
    }

    .wcity-download-item__actions,
    .wcity-download-item--no-title .wcity-download-item__actions {
        justify-content: stretch;
    }

    .wcity-download-item__actions a,
    .wcity-download-soon {
        flex: 1;
    }

    .wcity-download-lock {
        align-items: flex-start;
        flex-direction: column;
    }

    .wcity-player-modal {
        padding: 10px;
    }

    .wcity-player-modal__dialog {
        border-radius: 18px;
    }
}

/* WCity public user profile */
.wcity-public-profile {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--wcity-border);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(17, 19, 27, .98), rgba(8, 9, 13, .98));
}

.wcity-public-profile::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at top right, rgba(229, 9, 20, .17), transparent 35%),
        radial-gradient(circle at bottom left, rgba(255, 179, 0, .08), transparent 32%);
}

.wcity-public-profile > * {
    position: relative;
    z-index: 1;
}

.wcity-public-profile--message {
    display: grid;
    gap: 10px;
    padding: 34px;
}

.wcity-public-profile--message h1,
.wcity-public-profile--message p {
    margin: 0;
}

.wcity-public-profile--message p {
    color: var(--wcity-muted);
    line-height: 2;
}

.wcity-public-profile__cover {
    min-height: 270px;
    background:
        linear-gradient(135deg, rgba(229, 9, 20, .18), rgba(255, 179, 0, .08)),
        rgba(255, 255, 255, .045);
    background-size: cover;
    background-position: center;
}

.wcity-public-profile__shade {
    min-height: inherit;
    background: linear-gradient(0deg, rgba(8, 9, 13, .94), transparent 72%);
}

.wcity-public-profile__body {
    display: grid;
    gap: 22px;
    padding: 0 26px 26px;
    margin-top: -72px;
}

.wcity-public-profile__header {
    display: flex;
    align-items: flex-end;
    gap: 18px;
}

.wcity-public-profile__avatar {
    flex: 0 0 148px;
    width: 148px;
    height: 148px;
    overflow: hidden;
    border: 4px solid rgba(8, 9, 13, .96);
    border-radius: 34px;
    background: var(--wcity-bg-soft);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
}

.wcity-public-profile__avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.wcity-public-profile__identity {
    display: grid;
    gap: 6px;
    min-width: 0;
    padding-bottom: 14px;
}

.wcity-public-profile__identity h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(27px, 4vw, 44px);
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.wcity-public-profile__identity p {
    margin: 0;
    color: var(--wcity-muted);
    direction: ltr;
    text-align: right;
}

.wcity-public-profile__private-badge {
    width: max-content;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #ffd166;
    background: rgba(255, 193, 7, .12);
    font-size: 12px;
    font-weight: 950;
}

.wcity-public-profile__stats,
.wcity-public-profile__grid {
    display: grid;
    gap: 14px;
}

.wcity-public-profile__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wcity-public-profile__stats div,
.wcity-public-profile__about,
.wcity-public-profile__empty,
.wcity-public-interest-card {
    border: 1px solid var(--wcity-border);
    border-radius: 22px;
    background: rgba(255, 255, 255, .045);
}

.wcity-public-profile__stats div {
    display: grid;
    gap: 6px;
    padding: 17px;
}

.wcity-public-profile__stats span {
    color: var(--wcity-muted);
    font-size: 13px;
}

.wcity-public-profile__stats strong {
    color: #fff;
    line-height: 1.7;
}

.wcity-public-profile__about,
.wcity-public-profile__empty {
    padding: 22px;
}

.wcity-public-profile__about h2,
.wcity-public-profile__empty h2,
.wcity-public-interest-card h3 {
    margin: 0;
    color: #fff;
}

.wcity-public-profile__about p,
.wcity-public-profile__empty p {
    margin: 10px 0 0;
    color: var(--wcity-muted);
    line-height: 2;
}

.wcity-public-profile__section-head {
    margin-bottom: 14px;
}

.wcity-public-profile__section-head span {
    color: var(--wcity-accent-2);
    font-size: 12px;
    font-weight: 950;
}

.wcity-public-profile__section-head h2 {
    margin: 6px 0 0;
    color: #fff;
    font-size: 28px;
}

.wcity-public-profile__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wcity-public-interest-card {
    display: grid;
    gap: 12px;
    padding: 18px;
}

.wcity-public-interest-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.wcity-public-interest-card li {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #fff;
    background: rgba(229, 9, 20, .13);
    border: 1px solid rgba(229, 9, 20, .22);
    font-size: 13px;
    font-weight: 850;
}

.wcity-comment-author-profile {
    color: var(--wcity-accent-2);
    font-weight: 900;
}

@media (max-width: 760px) {
    .wcity-public-profile__cover,
    .wcity-public-profile__shade {
        min-height: 220px;
    }

    .wcity-public-profile__body {
        padding: 0 18px 20px;
        margin-top: -58px;
    }

    .wcity-public-profile__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .wcity-public-profile__avatar {
        flex-basis: 116px;
        width: 116px;
        height: 116px;
        border-radius: 28px;
    }

    .wcity-public-profile__identity {
        padding-bottom: 0;
    }

    .wcity-public-profile__stats,
    .wcity-public-profile__grid {
        grid-template-columns: 1fr;
    }
}


/* WCity final public profile cleanup */
.wcity-public-profile__section-head > span {
    display: none !important;
}

.wcity-public-interest-card li {
    box-shadow: 0 0 18px rgba(255,255,255,.04);
}
.wcity-public-interest-card:nth-child(1) li:nth-child(1) { background: linear-gradient(135deg, #ef444433, #7f1d1dcc); border-color: #ef444488; box-shadow: 0 0 22px #ef444422; }
.wcity-public-interest-card:nth-child(1) li:nth-child(2) { background: linear-gradient(135deg, #f9731633, #7c2d12cc); border-color: #f9731688; box-shadow: 0 0 22px #f9731622; }
.wcity-public-interest-card:nth-child(1) li:nth-child(3) { background: linear-gradient(135deg, #f59e0b33, #78350fcc); border-color: #f59e0b88; box-shadow: 0 0 22px #f59e0b22; }
.wcity-public-interest-card:nth-child(2) li:nth-child(1) { background: linear-gradient(135deg, #eab30833, #713f12cc); border-color: #eab30888; box-shadow: 0 0 22px #eab30822; }
.wcity-public-interest-card:nth-child(2) li:nth-child(2) { background: linear-gradient(135deg, #84cc1633, #365314cc); border-color: #84cc1688; box-shadow: 0 0 22px #84cc1622; }
.wcity-public-interest-card:nth-child(2) li:nth-child(3) { background: linear-gradient(135deg, #22c55e33, #14532dcc); border-color: #22c55e88; box-shadow: 0 0 22px #22c55e22; }
.wcity-public-interest-card:nth-child(3) li:nth-child(1) { background: linear-gradient(135deg, #10b98133, #064e3bcc); border-color: #10b98188; box-shadow: 0 0 22px #10b98122; }
.wcity-public-interest-card:nth-child(3) li:nth-child(2) { background: linear-gradient(135deg, #14b8a633, #134e4acc); border-color: #14b8a688; box-shadow: 0 0 22px #14b8a622; }
.wcity-public-interest-card:nth-child(3) li:nth-child(3) { background: linear-gradient(135deg, #06b6d433, #164e63cc); border-color: #06b6d488; box-shadow: 0 0 22px #06b6d422; }
.wcity-public-interest-card:nth-child(4) li:nth-child(1) { background: linear-gradient(135deg, #0ea5e933, #075985cc); border-color: #0ea5e988; box-shadow: 0 0 22px #0ea5e922; }
.wcity-public-interest-card:nth-child(4) li:nth-child(2) { background: linear-gradient(135deg, #3b82f633, #1e3a8acc); border-color: #3b82f688; box-shadow: 0 0 22px #3b82f622; }
.wcity-public-interest-card:nth-child(4) li:nth-child(3) { background: linear-gradient(135deg, #6366f133, #312e81cc); border-color: #6366f188; box-shadow: 0 0 22px #6366f122; }
.wcity-public-interest-card:nth-child(5) li:nth-child(1) { background: linear-gradient(135deg, #8b5cf633, #4c1d95cc); border-color: #8b5cf688; box-shadow: 0 0 22px #8b5cf622; }
.wcity-public-interest-card:nth-child(5) li:nth-child(2) { background: linear-gradient(135deg, #a855f733, #581c87cc); border-color: #a855f788; box-shadow: 0 0 22px #a855f722; }
.wcity-public-interest-card:nth-child(5) li:nth-child(3) { background: linear-gradient(135deg, #d946ef33, #701a75cc); border-color: #d946ef88; box-shadow: 0 0 22px #d946ef22; }
.wcity-public-interest-card:nth-child(6) li:nth-child(1) { background: linear-gradient(135deg, #ec489933, #831843cc); border-color: #ec489988; box-shadow: 0 0 22px #ec489922; }
.wcity-public-interest-card:nth-child(6) li:nth-child(2) { background: linear-gradient(135deg, #f43f5e33, #881337cc); border-color: #f43f5e88; box-shadow: 0 0 22px #f43f5e22; }
.wcity-public-interest-card:nth-child(6) li:nth-child(3) { background: linear-gradient(135deg, #fb718533, #881337cc); border-color: #fb718588; box-shadow: 0 0 22px #fb718522; }
.wcity-public-interest-card:nth-child(7) li:nth-child(1) { background: linear-gradient(135deg, #fb923c33, #7c2d12cc); border-color: #fb923c88; box-shadow: 0 0 22px #fb923c22; }
.wcity-public-interest-card:nth-child(7) li:nth-child(2) { background: linear-gradient(135deg, #facc1533, #713f12cc); border-color: #facc1588; box-shadow: 0 0 22px #facc1522; }
.wcity-public-interest-card:nth-child(7) li:nth-child(3) { background: linear-gradient(135deg, #4ade8033, #14532dcc); border-color: #4ade8088; box-shadow: 0 0 22px #4ade8022; }
.wcity-public-interest-card:nth-child(8) li:nth-child(1) { background: linear-gradient(135deg, #2dd4bf33, #134e4acc); border-color: #2dd4bf88; box-shadow: 0 0 22px #2dd4bf22; }
.wcity-public-interest-card:nth-child(8) li:nth-child(2) { background: linear-gradient(135deg, #38bdf833, #075985cc); border-color: #38bdf888; box-shadow: 0 0 22px #38bdf822; }
.wcity-public-interest-card:nth-child(8) li:nth-child(3) { background: linear-gradient(135deg, #c084fc33, #581c87cc); border-color: #c084fc88; box-shadow: 0 0 22px #c084fc22; }
