.weirdo-members-page,
.weirdo-profile-page {
    --w2w-ui-text: var(--w2w-text-on-light);
    --w2w-ui-muted: var(--w2w-text-on-light-muted);
    --w2w-ui-page: #f4f0ec;
    --w2w-ui-surface: #ffffff;
    --w2w-ui-brand: var(--w2w-accent);
    --w2w-ui-brand-strong: var(--w2w-accent);
    --w2w-ui-border-soft: #ded8d2;
    --w2w-ui-radius-card: 8px;
    --w2w-ui-radius-control: 7px;
    --w2w-ui-radius-sheet: 18px;
    --w2w-ui-shadow-card: 0 2px 7px rgba(0, 0, 0, 0.12);
    --w2w-ui-shadow-card-strong: 0 5px 12px rgba(0, 0, 0, 0.16);
    --w2w-ui-shadow-modal: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.weirdo-members-page {
    --weirdo-bg: #10171d;
    --weirdo-panel: #121c23;
    --weirdo-line: #30414c;
    --weirdo-text: var(--w2w-text-on-light);
    --weirdo-muted: var(--w2w-text-on-light-muted);
    --weirdo-blue: #37bdf8;
    --weirdo-green: #00df58;
    --weirdo-orange: var(--w2w-accent);
    background: var(--weirdo-bg);
    color: var(--weirdo-text);
    min-height: 100vh;
    padding: 0 0 56px;
    font-family: var(--w2w-font-main);
}

.weirdo-members-shell {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.weirdo-members-hero {
    padding: 34px 0 18px;
    text-align: center;
}

.weirdo-members-hero h1 {
    color: var(--w2w-text-on-dark-soft);
    font-size: var(--w2w-fs-2xl);
    line-height: 1.18;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0;
}

.weirdo-members-hero p {
    color: var(--weirdo-muted);
    margin: 8px 0 0;
    font-size: var(--w2w-fs-sm);
}

.weirdo-members-section {
    padding-top: 28px;
}

.weirdo-members-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--weirdo-line);
    margin-bottom: 20px;
    padding-bottom: 8px;
}

.weirdo-members-heading h2 {
    color: var(--w2w-text-on-dark-soft);
    font-size: var(--w2w-fs-sm);
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 1.8px;
    margin: 0;
    text-transform: uppercase;
}

.weirdo-period-tabs {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.weirdo-period-tabs button {
    border: 1px solid transparent;
    background: transparent;
    color: var(--weirdo-muted);
    min-height: 32px;
    padding: 0 10px;
    border-radius: 4px;
    font: inherit;
    font-size: var(--w2w-fs-xs);
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}

.weirdo-period-tabs button.is-active,
.weirdo-period-tabs button:hover {
    border-color: #405462;
    color: var(--weirdo-text);
    background: #17232c;
}

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

.weirdo-member-grid[hidden] {
    display: none;
}

.weirdo-member-card {
    min-width: 0;
    text-align: center;
}

.weirdo-member-avatar-link {
    display: block;
    width: min(152px, 100%);
    aspect-ratio: 1;
    margin: 0 auto 12px;
}

.weirdo-member-avatar {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    background: #263641;
    border: 1px solid #3d4d58;
}

.weirdo-member-name {
    display: block;
    color: var(--w2w-text-on-dark);
    font-size: var(--w2w-fs-base);
    line-height: 1.25;
    font-weight: 800;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.weirdo-member-name:hover {
    color: var(--w2w-text-on-dark-soft);
}

.weirdo-member-summary {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 10px;
    color: var(--weirdo-muted);
    font-size: var(--w2w-fs-sm);
    line-height: 1.35;
    margin-top: 4px;
}

.weirdo-member-posters {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    margin-top: 12px;
}

.weirdo-member-posters img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 2px;
    background: #263641;
}

.weirdo-member-list {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.weirdo-member-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 44px;
    align-items: center;
    gap: 18px;
    min-height: 70px;
    border-bottom: 1px solid #273640;
}

.weirdo-member-row__identity {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 12px;
    color: var(--w2w-text-on-dark);
    text-decoration: none;
}

.weirdo-member-row__avatar {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 50%;
    object-fit: cover;
    background: #263641;
}

.weirdo-member-row__text {
    min-width: 0;
    display: grid;
}

.weirdo-member-row__text strong {
    color: var(--w2w-text-on-dark);
    font-size: var(--w2w-fs-base);
    line-height: 1.25;
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.weirdo-member-row__text small {
    color: var(--weirdo-muted);
    font-size: var(--w2w-fs-xs);
    line-height: 1.35;
    margin-top: 2px;
}

.weirdo-member-row__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(56px, auto));
    align-items: center;
    gap: 18px;
    color: var(--weirdo-muted);
    font-size: var(--w2w-fs-sm);
}

.weirdo-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.weirdo-stat i {
    width: 14px;
    height: 14px;
    display: inline-block;
    position: relative;
}

.weirdo-stat--score i::before {
    content: "";
    position: absolute;
    inset: 3px 1px;
    border-radius: 50%;
    border: 2px solid var(--weirdo-green);
}

.weirdo-stat--score i::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    left: 5px;
    top: 5px;
    border-radius: 50%;
    background: var(--weirdo-green);
}

.weirdo-stat--posts i {
    background:
        linear-gradient(var(--weirdo-blue), var(--weirdo-blue)) 0 0 / 6px 6px no-repeat,
        linear-gradient(var(--weirdo-blue), var(--weirdo-blue)) 8px 0 / 6px 6px no-repeat,
        linear-gradient(var(--weirdo-blue), var(--weirdo-blue)) 0 8px / 6px 6px no-repeat,
        linear-gradient(var(--weirdo-blue), var(--weirdo-blue)) 8px 8px / 6px 6px no-repeat;
}

.weirdo-stat--votes i::before,
.weirdo-stat--votes i::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 11px;
    top: 2px;
    background: var(--weirdo-orange);
    border-radius: 8px 8px 0 0;
}

.weirdo-stat--votes i::before {
    left: 2px;
    transform: rotate(-45deg);
}

.weirdo-stat--votes i::after {
    right: 2px;
    transform: rotate(45deg);
}

.weirdo-member-row__follow {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--w2w-text-on-light);
    background: #a9bac8;
    font-size: var(--w2w-fs-xl);
    line-height: 1;
    font-weight: 600;
    text-decoration: none;
}

.weirdo-member-row__follow:hover {
    background: #d2e4ef;
    color: var(--w2w-text-on-light);
}

.weirdo-load-more-wrap {
    text-align: center;
    margin-top: 24px;
}

.weirdo-load-more {
  min-height: 42px;
  border: 0;
  border-radius: var(--w2w-ui-radius-control);
  background: var(--w2w-ui-brand-strong);
  color: var(--w2w-text-on-light);
  padding: 0 22px;
  font: inherit;
  font-size: var(--w2w-fs-base);
  font-weight: 800;
  cursor: pointer;
}

.weirdo-load-more:hover,
.weirdo-load-more:focus {
    filter: brightness(0.96);
}

.weirdo-load-more[disabled] {
    cursor: wait;
    opacity: 0.68;
}

@media (min-width: 1024px) {
    .weirdo-load-more {
        font-size: var(--w2w-fs-md);
    }
}

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

@media (max-width: 640px) {
    .weirdo-members-page {
        padding-bottom: 40px;
    }

    .weirdo-members-shell {
        width: min(100% - 28px, 1120px);
    }

    .weirdo-members-hero {
        padding-top: 24px;
        text-align: left;
    }

    .weirdo-members-hero h1 {
        font-size: var(--w2w-fs-xl);
    }

    .weirdo-members-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .weirdo-member-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 16px;
    }

    .weirdo-member-avatar-link {
        width: min(132px, 100%);
    }

    .weirdo-member-row {
        grid-template-columns: minmax(0, 1fr) 34px;
        gap: 12px;
        padding: 12px 0;
    }

    .weirdo-member-row__stats {
        grid-column: 1 / -1;
        order: 3;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .weirdo-member-row__follow {
        grid-column: 2;
        grid-row: 1;
    }
}

@media (max-width: 380px) {
    .weirdo-member-grid {
        grid-template-columns: 1fr;
    }
}

.weirdo-profile-page {
    --weirdo-profile-ink: var(--w2w-ui-text);
    --weirdo-profile-muted: #a7a19c;
    --weirdo-profile-paper: var(--w2w-ui-page);
    --weirdo-profile-orange: var(--w2w-ui-brand);
    background: var(--weirdo-profile-paper);
    color: var(--weirdo-profile-ink);
    min-height: 100vh;
    padding: 46px 0 72px;
    font-family: var(--w2w-font-main);
}

.weirdo-profile-shell {
    width: min(1220px, calc(100% - 48px));
    margin: 0 auto;
}

.weirdo-profile-breadcrumb {
    color: var(--w2w-text-on-light-muted);
    font-size: var(--w2w-fs-sm);
    line-height: 1;
    margin: 0 0 12px;
}

.weirdo-profile-frame {
    position: relative;
    background: #111;
    overflow: visible;
    border-radius: var(--w2w-ui-radius-card);
    box-shadow: var(--w2w-ui-shadow-card-strong);
}

.weirdo-profile-topbar {
    height: 84px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 clamp(20px, 4vw, 34px);
    background: #101010;
}

.weirdo-profile-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--w2w-text-on-dark);
    text-decoration: none;
}

.weirdo-profile-logo span {
    color: var(--weirdo-profile-orange);
    font-family: var(--w2w-font-main);
    font-size: clamp(34px, 7vw, 48px);
    line-height: 0.9;
    font-weight: 700;
}

.weirdo-profile-logo small {
    color: var(--w2w-text-on-dark);
    font-size: var(--w2w-fs-xs);
    line-height: 0.9;
    font-weight: 900;
}

.weirdo-profile-actions {
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

.weirdo-profile-search {
    position: relative;
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    border: 3px solid #fff;
    border-radius: 50%;
}

.weirdo-profile-search::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 3px;
    right: -8px;
    bottom: -3px;
    border-radius: 999px;
    background: #fff;
    transform: rotate(45deg);
}

.weirdo-profile-dot {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    background: #d9d9d9;
}

.weirdo-profile-hero {
    position: relative;
    min-height: clamp(360px, 42vw, 470px);
    background-color: #292929;
    background-position: center;
    background-size: cover;
}

.weirdo-profile-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.62)),
        linear-gradient(90deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.06) 45%, rgba(0, 0, 0, 0.38));
}

.weirdo-profile-name {
    position: absolute;
    right: clamp(18px, 5vw, 58px);
    bottom: 62px;
    z-index: 1;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 4px;
    max-width: calc(100% - 180px);
    color: var(--w2w-text-on-dark);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.52);
}

.weirdo-profile-name strong,
.weirdo-profile-name span {
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.1;
    font-weight: 900;
}

.weirdo-profile-card {
    position: relative;
    z-index: 2;
    width: min(720px, calc(100% - 48px));
    margin: -56px auto 0;
    min-height: 280px;
    background: var(--w2w-ui-surface);
    border-radius: var(--w2w-ui-radius-card);
    box-shadow: var(--w2w-ui-shadow-card-strong);
    padding: 0 clamp(18px, 5vw, 42px) 32px;
}

.weirdo-profile-avatar {
    width: clamp(92px, 18vw, 120px);
    height: clamp(92px, 18vw, 120px);
    display: block;
    border-radius: 50%;
    object-fit: cover;
    background: #d9d9d9;
    margin: -54px 0 0 clamp(150px, 22vw, 235px);
    border: 0;
}

.weirdo-profile-bio {
    width: min(360px, 100%);
    margin: -34px auto 0;
    color: var(--w2w-text-on-light);
    font-size: var(--w2w-fs-md);
    line-height: 1.42;
}

.weirdo-profile-bio strong {
    display: block;
    font-size: var(--w2w-fs-lg);
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 24px;
}

.weirdo-profile-bio p {
    margin: 0;
    color: var(--w2w-text-on-light-soft);
}

.weirdo-profile-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 18px;
    margin-top: 34px;
    text-align: center;
}

.weirdo-profile-stats div {
    min-width: 0;
}

.weirdo-profile-stats strong {
    display: block;
    color: var(--w2w-text-on-light);
    font-size: clamp(22px, 5vw, 28px);
    line-height: 1.05;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.weirdo-profile-stats span {
    display: block;
    color: var(--weirdo-profile-muted);
    font-size: clamp(14px, 3.4vw, 19px);
    line-height: 1.2;
    margin-top: 3px;
}

.weirdo-profile-section {
    margin-top: 38px;
}

.weirdo-profile-section__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.weirdo-profile-section__heading h2 {
    position: relative;
    color: var(--w2w-text-on-light);
    font-size: clamp(18px, 4vw, 24px);
    line-height: 1.15;
    font-weight: 900;
    margin: 0;
    padding-bottom: 9px;
    letter-spacing: 0;
}

.weirdo-profile-section__heading h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: min(145px, 100%);
    height: 7px;
    background: var(--w2w-ui-brand);
}

.weirdo-profile-section__heading a {
    color: var(--w2w-text-on-light-muted);
    font-size: var(--w2w-fs-md);
    text-decoration: none;
}

.weirdo-profile-movies {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(10px, 1.6vw, 18px);
}

.weirdo-profile-movie {
    display: block;
    min-width: 0;
    color: var(--w2w-text-on-light);
    text-decoration: none;
    border-radius: 5px;
    overflow: hidden;
    background: #ded8d2;
    box-shadow: var(--w2w-ui-shadow-card-strong);
}

.weirdo-profile-movie img {
    display: block;
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.weirdo-profile-movie span {
    display: grid;
    min-height: 160px;
    place-items: center;
    padding: 10px;
    text-align: center;
    font-weight: 800;
}

.weirdo-profile-empty {
    color: var(--w2w-text-on-light-muted);
    background: rgba(255, 255, 255, 0.52);
    border-radius: var(--w2w-ui-radius-card);
    padding: 18px;
}

@media (min-width: 900px) {
    .weirdo-profile-frame {
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
        align-items: stretch;
        background: #101010;
    }

    .weirdo-profile-topbar {
        grid-column: 1 / -1;
    }

    .weirdo-profile-hero {
        min-height: 440px;
    }

    .weirdo-profile-card {
        align-self: end;
        width: calc(100% - 34px);
        margin: 0 17px 17px -44px;
        min-height: 390px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 34px;
    }

    .weirdo-profile-avatar {
        position: absolute;
        top: 34px;
        left: -60px;
        width: 120px;
        height: 120px;
        margin: 0;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
    }

    .weirdo-profile-name {
        right: 40px;
        bottom: 36px;
        max-width: calc(100% - 80px);
    }

    .weirdo-profile-bio {
        width: 100%;
        margin: 0;
        padding-left: 34px;
    }

    .weirdo-profile-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 42px;
    }

    .weirdo-profile-stats div:nth-child(5) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .weirdo-profile-page {
        padding-top: 0;
    }

    .weirdo-profile-shell {
        width: 100%;
    }

    .weirdo-profile-breadcrumb,
    .weirdo-profile-topbar {
        display: none;
    }

    .weirdo-profile-frame {
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        width: 100vw;
        margin-left: calc(50% - 50vw);
    }

    .weirdo-profile-hero {
        min-height: clamp(220px, 55vw, 280px);
        background-position: center top;
    }

    .weirdo-profile-hero__shade {
        background:
            linear-gradient(180deg, rgba(20, 23, 28, 0) 52%, rgba(20, 23, 28, 0.72) 86%, #14171C 100%),
            linear-gradient(90deg, rgba(20, 23, 28, 0.3), rgba(20, 23, 28, 0.08) 45%, rgba(20, 23, 28, 0.36));
    }

    .weirdo-profile-name {
        right: 16px;
        bottom: 34px;
        max-width: calc(100% - 126px);
    }

    .weirdo-profile-name strong,
    .weirdo-profile-name span {
        font-size: clamp(16px, 4.2vw, 20px);
    }

    .weirdo-profile-card {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-top: -54px;
        background: #14171C;
        border-radius: 0;
        box-shadow: none;
        padding-bottom: 38px;
        padding-top: 46px;
        overflow: visible;
    }

    .weirdo-profile-card::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: -144px;
        height: 144px;
        pointer-events: none;
        background: linear-gradient(180deg, rgba(20, 23, 28, 0) 0%, rgba(20, 23, 28, 0) 42%, rgba(20, 23, 28, 0.62) 74%, #14171C 100%);
    }

    .weirdo-profile-avatar {
        margin-left: 24px;
    }

    .weirdo-profile-bio {
        margin-top: 14px;
        padding-left: 128px;
        font-size: var(--w2w-fs-base);
    }

    .weirdo-profile-bio strong {
        margin-bottom: 10px;
        font-size: var(--w2w-fs-md);
    }

    .weirdo-profile-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 14px;
    }

    .weirdo-profile-section {
        width: calc(100% - 24px);
        margin: 28px auto 0;
    }

    .weirdo-profile-movies {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
    }
}

@media (max-width: 430px) {
    .weirdo-profile-actions {
        gap: 14px;
    }

    .weirdo-profile-dot {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }

    .weirdo-profile-movies {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.weirdo-profile-intro {
    width: min(430px, 100%);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    justify-content: center;
    gap: 18px;
    margin: -54px auto 0;
}

.weirdo-profile-intro .weirdo-profile-avatar {
    position: static;
    width: clamp(104px, 18vw, 120px);
    height: clamp(104px, 18vw, 120px);
    margin: 0;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.weirdo-profile-meta {
    min-width: 0;
    padding-top: 48px;
}

.weirdo-profile-intro .weirdo-profile-name {
    position: static;
    max-width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 4px;
    color: var(--w2w-text-on-light);
    text-shadow: none;
}

.weirdo-profile-intro .weirdo-profile-name strong,
.weirdo-profile-intro .weirdo-profile-name span {
    color: var(--w2w-text-on-light);
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 1.1;
}

.weirdo-profile-intro .weirdo-profile-name strong {
    font-weight: 900;
}

.weirdo-profile-intro .weirdo-profile-name span {
    font-weight: 400;
}

.weirdo-profile-intro .weirdo-profile-bio {
    width: 100%;
    margin: 8px 0 0;
    padding: 0;
}

.weirdo-profile-intro .weirdo-profile-bio strong {
    margin-bottom: 18px;
}

@media (min-width: 900px) {
    .weirdo-profile-card {
        padding-top: 0;
    }

    .weirdo-profile-intro {
        width: min(440px, 100%);
        margin-top: -42px;
    }

    .weirdo-profile-meta {
        padding-top: 46px;
    }
}

@media (max-width: 640px) {
    .weirdo-profile-intro {
        width: min(360px, calc(100% - 40px));
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 18px;
        margin-top: -74px;
        position: relative;
        z-index: 1;
    }

    .weirdo-profile-meta {
        padding-top: 10px;
    }

    .weirdo-profile-intro .weirdo-profile-name {
        justify-content: flex-start;
    }

    .weirdo-profile-intro .weirdo-profile-avatar {
        width: 96px;
        height: 96px;
    }

    .weirdo-profile-intro .weirdo-profile-bio {
        margin-top: 10px;
        font-size: var(--w2w-fs-base);
    }

    .weirdo-profile-intro .weirdo-profile-bio strong {
        margin-bottom: 10px;
    }

    .weirdo-profile-intro .weirdo-profile-name strong,
    .weirdo-profile-intro .weirdo-profile-name span,
    .weirdo-profile-intro .weirdo-profile-bio,
    .weirdo-profile-intro .weirdo-profile-bio strong,
    .weirdo-profile-intro .weirdo-profile-bio p,
    .weirdo-profile-stats strong,
    .weirdo-profile-stats span {
        color: var(--w2w-text-on-dark);
    }

    .weirdo-profile-stats span {
        opacity: 0.82;
    }

    .weirdo-profile-stats {
        width: min(360px, calc(100% - 40px));
        margin: 34px auto 0;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 26px 12px;
    }

    .weirdo-profile-stats div {
        grid-column: span 2;
    }

    .weirdo-profile-stats div:nth-child(4) {
        grid-column: 2 / span 2;
    }

    .weirdo-profile-stats div:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

@media (max-width: 430px) {
    .weirdo-profile-intro {
        width: min(330px, calc(100% - 32px));
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 16px;
    }

    .weirdo-profile-intro .weirdo-profile-avatar {
        width: 92px;
        height: 92px;
    }
}

.weirdo-profile-description {
    color: var(--w2w-text-on-dark);
    font-size: var(--w2w-fs-base);
    line-height: 1.45;
    text-align: center;
    margin: 0;
}

@media (max-width: 640px) {
    .weirdo-profile-intro {
        width: min(330px, calc(100% - 40px));
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .weirdo-profile-intro .weirdo-profile-avatar {
        width: 72px;
        height: 72px;
    }

    .weirdo-profile-intro .weirdo-profile-name strong {
        font-size: var(--w2w-fs-lg);
    }

    .weirdo-profile-intro .weirdo-profile-name span {
        font-size: var(--w2w-fs-xs);
        line-height: 1;
        position: relative;
        top: -0.45em;
    }

    .weirdo-profile-intro .weirdo-profile-bio strong {
        font-size: var(--w2w-fs-md);
        opacity: 0.72;
    }

    .weirdo-profile-stats {
        margin-top: 26px;
    }

    .weirdo-profile-stats .weirdo-profile-description {
        grid-column: 1 / -1;
        margin: 0 auto 8px;
        width: min(300px, 100%);
    }

    .weirdo-profile-stats div {
        grid-column: span 2;
    }

    .weirdo-profile-stats div:nth-child(4),
    .weirdo-profile-stats div:nth-child(5) {
        grid-column: span 2;
    }

    .weirdo-profile-stats div:nth-of-type(4) {
        grid-column: 2 / span 2;
    }

    .weirdo-profile-stats div:nth-of-type(5) {
        grid-column: 4 / span 2;
    }
}

@media (max-width: 430px) {
    .weirdo-profile-intro {
        grid-template-columns: 69px minmax(0, 1fr);
    }

    .weirdo-profile-intro .weirdo-profile-avatar {
        width: 69px;
        height: 69px;
    }
}

.weirdo-profile-intro .weirdo-profile-bio strong,
.weirdo-profile-description {
    font-weight: 400;
}

@media (max-width: 640px) {
    .weirdo-profile-intro .weirdo-profile-name span {
        font-size: var(--w2w-fs-xs);
        font-weight: 400;
    }

    .weirdo-profile-intro .weirdo-profile-bio strong {
        font-size: var(--w2w-fs-sm);
        font-weight: 400;
        opacity: 0.68;
    }

    .weirdo-profile-stats .weirdo-profile-description {
        font-size: var(--w2w-fs-sm);
        font-weight: 400;
    }
}

.weirdo-profile-page {
    min-height: 100vh;
    background: #f5f0eb;
    color: var(--w2w-text-on-light);
    font-family: var(--w2w-font-main);
}

.weirdo-profile-hero {
    position: relative;
    min-height: 276px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-position: center top;
    background-size: cover;
}

.weirdo-profile-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.72) 42%, #000000 74%, #111419 100%);
}

.weirdo-profile-hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 92px 28px 24px;
    color: var(--w2w-text-on-dark);
    text-align: left;
}

.weirdo-profile-identity {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
}

.weirdo-profile-avatar-link {
    width: 76px;
    height: 76px;
    display: block;
    border-radius: 50%;
    color: inherit;
    text-decoration: none;
}

.weirdo-profile-identity .weirdo-profile-avatar {
    width: 76px;
    height: 76px;
    display: block;
    margin: 0;
    position: static;
    transform: none;
    border-radius: 50%;
    object-fit: cover;
    background: #d9d9d9;
    border: 0;
}

.weirdo-profile-account {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.weirdo-profile-account h1 {
    margin: 0;
    overflow: hidden;
    color: var(--w2w-text-on-dark);
    font-size: var(--w2w-fs-lg);
    font-weight: 800;
    line-height: 1.08;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.weirdo-profile-account h1 a {
    color: inherit;
    text-decoration: none;
}

.weirdo-profile-account p {
    margin: 4px 0 0;
    color: var(--w2w-text-on-dark-soft);
    font-size: var(--w2w-fs-sm);
    font-weight: 500;
    line-height: 1.25;
}

.weirdo-profile-taste {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 18px;
    color: var(--w2w-text-on-dark);
    font-size: var(--w2w-fs-base);
    line-height: 1.25;
}

.weirdo-profile-taste strong {
    font-weight: 800;
}

.weirdo-profile-description-wrap {
    margin-top: 8px;
    text-align: left;
}

.weirdo-profile-description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    margin: 0;
    color: var(--w2w-text-on-dark-soft);
    font-size: var(--w2w-fs-sm);
    font-weight: 400;
    line-height: 1.45;
    text-align: left;
}

.weirdo-profile-description.is-expanded {
    display: block;
}

.weirdo-profile-text-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--w2w-accent);
    cursor: pointer;
    font: 700 var(--w2w-fs-sm)/1.2 var(--w2w-font-main);
}

.weirdo-profile-text-toggle[hidden] {
    display: none;
}

.weirdo-profile-tabs {
    display: flex;
    gap: 0;
    overflow-x: auto;
    background: #111419;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    scrollbar-width: none;
}

.weirdo-profile-tabs::-webkit-scrollbar {
    display: none;
}

.weirdo-profile-tabs button {
    position: relative;
    flex: 0 0 auto;
    min-height: 50px;
    padding: 0 16px;
    border: 0;
    background: transparent;
    color: var(--w2w-text-on-dark);
    cursor: pointer;
    font: 800 var(--w2w-fs-sm)/1.15 var(--w2w-font-main);
    white-space: nowrap;
}

.weirdo-profile-tabs button.is-active::after {
    content: "";
    position: absolute;
    right: 16px;
    bottom: 0;
    left: 16px;
    height: 3px;
    background: var(--w2w-accent);
}

.weirdo-profile-tab-panel {
    display: none;
    padding: 0 16px 34px;
}

.weirdo-profile-tab-panel.is-active {
    display: block;
}

.weirdo-profile-stats {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px 0;
    width: 100%;
    box-sizing: border-box;
    padding: 14px 0 18px;
    background: #ffffff;
    border-radius: 10px;
}

.weirdo-profile-stats div {
    grid-column: span 2;
    min-width: 0;
    text-align: center;
}

.weirdo-profile-stats div:nth-child(4),
.weirdo-profile-stats div:nth-child(5) {
    grid-column: span 3;
}

.weirdo-profile-stats strong {
    display: block;
    color: var(--w2w-text-on-light-soft);
    font-size: var(--w2w-fs-xl);
    font-weight: 900;
    line-height: 1;
}

.weirdo-profile-stats span {
    display: block;
    margin-top: 4px;
    color: var(--w2w-text-on-light-soft);
    font-size: var(--w2w-fs-sm);
    line-height: 1.15;
}

.weirdo-profile-section {
    width: 100%;
    max-width: none;
    margin-top: 18px;
}

.weirdo-profile-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

.weirdo-profile-section-head h2 {
    position: relative;
    margin: 0;
    padding-bottom: 8px;
    color: var(--w2w-text-on-light);
    font-size: var(--w2w-fs-lg);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.weirdo-profile-section-head h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 2px;
    background: var(--w2w-accent);
}

.weirdo-profile-section-head--split label {
    display: block;
    text-align: right;
}

.weirdo-profile-section-head--split select {
    min-height: 32px;
    padding: 0 18px 0 0;
    border: 0;
    background: transparent;
    color: var(--w2w-text-on-light-soft);
    font: 500 var(--w2w-fs-base)/1 var(--w2w-font-main);
}

.weirdo-profile-favorites {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.weirdo-profile-favorite {
    display: block;
    min-width: 0;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 5px;
    background: #d8d8d8;
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.22);
}

.weirdo-profile-favorite.is-extra {
    display: none;
}

.weirdo-profile-favorites.is-expanded .weirdo-profile-favorite.is-extra {
    display: block;
}

.weirdo-profile-favorite img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.weirdo-profile-more {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    margin: 12px auto 0;
    padding: 0 18px;
    border: 0;
    border-radius: 7px;
    background: var(--w2w-accent);
    color: var(--w2w-text-on-light);
    cursor: pointer;
    font: 700 var(--w2w-fs-sm)/1 var(--w2w-font-main);
}

.weirdo-profile-reviews-section {
    padding-top: 8px;
    border-top: 1px solid #ded8d2;
}

.weirdo-profile-reviews {
    display: grid;
    gap: 18px;
}

.weirdo-profile-review {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
}

.weirdo-profile-review.is-hidden {
    display: none;
}

.weirdo-profile-review-poster {
    min-width: 0;
    color: inherit;
    text-decoration: none;
}

.weirdo-profile-review-poster img {
    display: block;
    width: 82px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 4px;
}

.weirdo-profile-review-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 82px;
    max-width: 82px;
    box-sizing: border-box;
    margin-top: 5px;
    color: var(--w2w-text-on-light-soft);
    font-size: var(--w2w-fs-xs);
    font-weight: 700;
    line-height: 1;
}

.weirdo-profile-stars {
    position: relative;
    display: inline-block;
    max-width: 54px;
    overflow: hidden;
    color: var(--w2w-text-on-light-muted);
    font-size: var(--w2w-fs-xs);
    letter-spacing: 0;
    line-height: 1;
}

.weirdo-profile-stars span:last-child {
    position: absolute;
    inset: 0 auto 0 0;
    overflow: hidden;
    color: var(--w2w-accent);
    white-space: nowrap;
}

.weirdo-profile-review-title {
    display: block;
    margin: 0 0 6px;
    color: var(--w2w-text-on-light);
    font-size: var(--w2w-fs-md);
    font-weight: 900;
    line-height: 1.05;
    text-decoration: none;
}

.weirdo-profile-review-body p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    margin: 0;
    color: var(--w2w-text-on-light);
    font-size: var(--w2w-fs-sm);
    line-height: 1.45;
}

.weirdo-profile-review-body p.is-expanded {
    display: block;
}

.weirdo-profile-empty {
    margin: 10px 0 0;
    color: var(--w2w-text-on-light-muted);
    font-size: var(--w2w-fs-sm);
    line-height: 1.4;
}

@media (min-width: 1024px) {
    .weirdo-profile-page {
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (min-width: 1024px) {
    .weirdo-profile-page {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
        background: #f5f0eb;
    }

    .weirdo-profile-hero {
        min-height: 470px;
        background-position: center center;
    }

    .weirdo-profile-hero__shade {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.08) 28%, rgba(0, 0, 0, 0.46) 64%, #111419 100%),
            linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.03) 45%, rgba(0, 0, 0, 0.2));
    }

    .weirdo-profile-hero__content {
        width: min(1220px, calc(100% - 64px));
        margin: 0 auto;
        padding: 0 0 28px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 12px 72px;
        align-items: end;
    }

    .weirdo-profile-identity {
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 18px;
        align-items: center;
    }

    .weirdo-profile-avatar-link {
        width: 112px;
        height: 112px;
    }

    .weirdo-profile-identity .weirdo-profile-avatar {
        width: 112px;
        height: 112px;
        box-shadow: none;
    }

    .weirdo-profile-account {
        gap: 0;
    }

    .weirdo-profile-account h1 {
        font-size: var(--w2w-fs-xl);
        font-weight: 900;
        line-height: 1.08;
    }

    .weirdo-profile-account p {
        margin-top: 12px;
        font-size: var(--w2w-fs-md);
        font-weight: 400;
        line-height: 1.22;
    }

    .weirdo-profile-taste {
        grid-column: 2;
        grid-row: 1;
        align-self: end;
        margin: 0 0 82px;
        gap: 0;
        font-size: var(--w2w-fs-md);
        line-height: 1.25;
    }

    .weirdo-profile-taste strong {
        font-weight: 900;
    }

    .weirdo-profile-taste strong::after {
        content: " ";
    }

    .weirdo-profile-taste span {
        color: var(--w2w-text-on-dark-soft);
        font-weight: 400;
    }

    .weirdo-profile-description-wrap {
        grid-column: 2;
        grid-row: 1;
        align-self: end;
        margin: 0;
        padding-top: 38px;
    }

    .weirdo-profile-description {
        -webkit-line-clamp: 4;
        max-height: 92px;
        color: var(--w2w-text-on-dark-muted);
        font-size: var(--w2w-fs-base);
        line-height: 1.42;
    }

    .weirdo-profile-description-wrap .weirdo-profile-text-toggle {
        display: none !important;
    }

    .weirdo-profile-tabs {
        justify-content: center;
        background: #111419;
        overflow: visible;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
    }

    .weirdo-profile-tabs button {
        min-height: 52px;
        padding: 0 28px;
        font-size: var(--w2w-fs-sm);
    }

    .weirdo-profile-tab-panel {
        padding: 24px 0 72px;
    }

    .weirdo-profile-content-grid {
        width: min(1220px, calc(100% - 64px));
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
        gap: 42px;
        align-items: start;
    }

    .weirdo-profile-content-main {
        min-width: 0;
    }

    .weirdo-profile-content-side {
        min-height: 1px;
    }

    .weirdo-profile-stats {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0;
        margin: 0;
        padding: 24px 26px;
        border-radius: 6px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
    }

    .weirdo-profile-stats div,
    .weirdo-profile-stats div:nth-child(4),
    .weirdo-profile-stats div:nth-child(5) {
        grid-column: auto;
    }

    .weirdo-profile-stats strong {
        font-size: var(--w2w-fs-xl);
        color: var(--w2w-text-on-light-soft);
    }

    .weirdo-profile-stats span {
        font-size: var(--w2w-fs-sm);
    }

    .weirdo-profile-section {
        margin-top: 32px;
    }

    .weirdo-profile-section-head {
        margin-bottom: 12px;
    }

    .weirdo-profile-section-head h2 {
        padding-bottom: 10px;
        font-size: var(--w2w-fs-xl);
    }

    .weirdo-profile-section-head h2::after {
        width: 116px;
        height: 4px;
    }

    .weirdo-profile-section-head--split {
        align-items: flex-start;
    }

    .weirdo-profile-section-head--split select {
        min-height: 26px;
        font-size: var(--w2w-fs-sm);
    }

    .weirdo-profile-favorites {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
    }

    .weirdo-profile-favorite {
        border-radius: 4px;
    }

    .weirdo-profile-more {
        margin-top: 14px;
    }

    .weirdo-profile-reviews-section {
        padding-top: 0;
        border-top: 0;
    }

    .weirdo-profile-review {
        grid-template-columns: 108px minmax(0, 1fr);
        gap: 16px;
        align-items: start;
    }

    .weirdo-profile-review-poster img {
        width: 108px;
    }

    .weirdo-profile-review-score {
        width: 108px;
        max-width: 108px;
        justify-content: flex-start;
        font-size: var(--w2w-fs-sm);
    }

    .weirdo-profile-stars {
        max-width: 64px;
        font-size: var(--w2w-fs-sm);
    }

    .weirdo-profile-review-title {
        margin-bottom: 8px;
        font-size: var(--w2w-fs-lg);
        line-height: 1.12;
    }

    .weirdo-profile-review-body p {
        -webkit-line-clamp: 6;
        font-size: var(--w2w-fs-sm);
        line-height: 1.55;
    }
}

@media (max-width: 1023px) {
    .weirdo-profile-page {
        background: #1d2022;
        color: var(--w2w-text-on-dark);
        padding: 0 0 34px;
    }

    .weirdo-profile-hero {
        width: 100%;
        min-height: 268px;
        margin: 0;
        align-items: flex-end;
        overflow: hidden;
        border-radius: 10px 10px 0 0;
        background-color: #1d2022;
        background-position: center top;
        background-size: cover;
    }

    .weirdo-profile-hero__shade {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0.72) 64%, #111419 88%, #111419 100%),
            linear-gradient(90deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.04));
    }

    .weirdo-profile-hero__content {
        display: grid;
        grid-template-columns: minmax(86px, 25%) minmax(0, 1fr);
        align-items: end;
        gap: 0 18px;
        width: 100%;
        box-sizing: border-box;
        padding: 0 22px 58px;
        color: var(--w2w-text-on-dark);
    }

    .weirdo-profile-identity {
        display: contents;
    }

    .weirdo-profile-avatar-link {
        grid-column: 1;
        grid-row: 1 / span 4;
        align-self: start;
        width: 100%;
        max-width: 170px;
        height: auto;
        aspect-ratio: 1;
        margin-top: 6px;
        border-radius: 50%;
    }

    .weirdo-profile-identity .weirdo-profile-avatar {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: #d9d9d9;
        object-fit: cover;
    }

    .weirdo-profile-account,
    .weirdo-profile-taste,
    .weirdo-profile-description-wrap {
        grid-column: 2;
        min-width: 0;
    }

    .weirdo-profile-account {
        display: grid;
        gap: 7px;
    }

    .weirdo-profile-account h1 {
        margin: 0;
        color: var(--w2w-text-on-dark);
        font-size: var(--w2w-fs-xl);
        font-weight: 900;
        line-height: 1.04;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .weirdo-profile-joined {
        display: none;
    }

    .weirdo-profile-level-desktop {
        display: none;
    }

    .weirdo-profile-account p {
        margin: 0;
    }

    .weirdo-profile-discord {
        display: flex;
        align-items: center;
        gap: 7px;
        min-height: 26px;
        font-size: var(--w2w-fs-md);
        font-weight: 500;
        line-height: 1.2;
    }

    .weirdo-profile-discord img {
        width: 23px;
        height: 23px;
        display: block;
    }

    .weirdo-profile-discord.is-connected {
        color: var(--w2w-success);
    }

    .weirdo-profile-discord.is-disconnected {
        color: var(--w2w-text-on-dark-muted);
    }

    .weirdo-profile-level {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 6px;
        color: var(--w2w-text-on-dark-soft);
        font-size: var(--w2w-fs-md);
        font-weight: 400;
        line-height: 1.18;
    }

    .weirdo-profile-level strong {
        color: var(--w2w-text-on-dark);
        font-weight: 900;
    }

    .weirdo-profile-level span {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #ff8a00;
    }

    .weirdo-profile-level-progress {
        width: min(204px, 100%);
        height: 16px;
        overflow: hidden;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.16);
    }

    .weirdo-profile-level-progress i {
        display: block;
        height: 100%;
        border-radius: inherit;
        background: var(--w2w-accent);
    }

    .weirdo-profile-taste {
        display: flex;
        flex-wrap: nowrap;
        gap: 4px;
        margin: 14px 0 0;
        color: var(--w2w-text-on-dark-soft);
        font-size: var(--w2w-fs-lg);
        line-height: 1.18;
        white-space: nowrap;
    }

    .weirdo-profile-taste strong {
        color: var(--w2w-accent);
        font-size: var(--w2w-fs-lg);
        font-weight: 900;
        text-transform: uppercase;
    }

    .weirdo-profile-taste span {
        min-width: 0;
        overflow: hidden;
        color: var(--w2w-text-on-dark-soft);
        text-overflow: ellipsis;
    }

    .weirdo-profile-description-wrap {
        display: none;
    }

    .weirdo-profile-description {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        max-height: none;
        overflow: hidden;
        color: var(--w2w-text-on-dark-muted);
        font-size: var(--w2w-fs-lg);
        font-style: italic;
        font-weight: 400;
        line-height: 1.28;
    }

    .weirdo-profile-description-wrap .weirdo-profile-text-toggle {
        display: none !important;
    }

    .weirdo-profile-tabs {
        position: relative;
        z-index: 4;
        display: flex;
        width: auto;
        margin: -44px 12px 0;
        padding: 0 10px;
        overflow: hidden;
        background: #1d2022;
        border: 0;
        border-radius: 16px 16px 0 0;
        box-shadow: none;
        scrollbar-width: none;
    }

    .weirdo-profile-tabs button {
        flex: 1 1 25%;
        min-width: 0;
        min-height: 48px;
        padding: 0 4px;
        color: var(--w2w-text-on-dark-soft);
        font-size: var(--w2w-fs-sm);
        font-weight: 500;
        line-height: 1.1;
        overflow: hidden;
        text-align: center;
        text-overflow: ellipsis;
    }

    .weirdo-profile-tabs button.is-active {
        color: var(--w2w-accent);
        font-weight: 800;
    }

    .weirdo-profile-tabs button.is-active::after {
        right: 0;
        left: 0;
        height: 4px;
        background: #ff8a00;
    }

    .weirdo-profile-tab-panel {
        background: #f5f0eb;
        color: var(--w2w-text-on-light);
        padding-top: 22px;
    }
}

@media (min-width: 1024px) {
    .weirdo-profile-page {
        display: none !important;
    }

    .weirdo-profile-discord,
    .weirdo-profile-level,
    .weirdo-profile-level-progress,
    .weirdo-profile-review-rating,
    .weirdo-profile-review-actions {
        display: none !important;
    }

    .weirdo-profile-review-action-label {
        display: none;
    }
}

@media (max-width: 520px) {
    .weirdo-profile-hero {
        min-height: 238px;
    }

    .weirdo-profile-hero__content {
        grid-template-columns: minmax(76px, 28%) minmax(0, 1fr);
        gap: 0 14px;
        padding: 0 16px 52px;
    }

    .weirdo-profile-account h1 {
        font-size: var(--w2w-fs-xl);
    }

    .weirdo-profile-discord {
        font-size: var(--w2w-fs-sm);
    }

    .weirdo-profile-level {
        font-size: var(--w2w-fs-sm);
    }

    .weirdo-profile-level-progress {
        height: 14px;
    }

    .weirdo-profile-taste,
    .weirdo-profile-taste strong,
    .weirdo-profile-description {
        font-size: var(--w2w-fs-base);
    }

    .weirdo-profile-description-wrap {
        margin-top: 20px;
    }

    .weirdo-profile-tabs {
        margin: -40px 8px 0;
        padding: 0 8px;
        border-radius: 14px 14px 0 0;
    }

    .weirdo-profile-tabs button {
        min-height: 44px;
        padding: 0 3px;
        font-size: var(--w2w-fs-sm);
    }
}

@media (max-width: 1023px) {
    .weirdo-profile-tab-panel {
        padding: 12px 16px 34px;
    }

    .weirdo-profile-content-grid,
    .weirdo-profile-content-main {
        min-width: 0;
    }

    .weirdo-profile-content-side {
        display: none;
    }

    .weirdo-profile-stats {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
        padding: 16px 8px 12px;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
    }

    .weirdo-profile-stats div,
    .weirdo-profile-stats div:nth-child(4) {
        grid-column: auto;
        display: grid;
        justify-items: center;
        gap: 7px;
        min-width: 0;
        text-align: center;
    }

    .weirdo-profile-stats div:nth-child(5) {
        display: none;
    }

    .weirdo-profile-stat-icon {
        display: grid !important;
        place-items: center;
        width: 28px;
        height: 28px;
        margin: 0;
        color: var(--w2w-text-on-light-muted);
    }

    .weirdo-profile-stat-icon svg {
        width: 27px;
        height: 27px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .weirdo-profile-stats strong {
        color: var(--w2w-text-on-light-muted);
        font-size: var(--w2w-fs-xl);
        font-weight: 800;
        line-height: 1;
    }

    .weirdo-profile-stats span:not(.weirdo-profile-stat-icon) {
        margin: 0;
        color: var(--w2w-text-on-light-soft);
        font-size: var(--w2w-fs-sm);
        font-weight: 400;
        line-height: 1.15;
    }

    .weirdo-profile-section {
        margin-top: 12px;
        padding: 13px 12px 18px;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
    }

    .weirdo-profile-section-head {
        margin-bottom: 12px;
    }

    .weirdo-profile-section-head h2 {
        position: relative;
        width: fit-content;
        margin: 0;
        padding: 0 0 5px;
        color: var(--w2w-text-on-light-soft);
        font-size: var(--w2w-fs-sm);
        font-weight: 900;
        line-height: 1.1;
        text-transform: uppercase;
    }

    .weirdo-profile-section-head h2::after {
        width: 70px;
        height: 1px;
        background: #ff8a00;
    }

    .weirdo-profile-section-head--split label {
        display: none;
    }

    .weirdo-profile-favorites {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 7px;
    }

    .weirdo-profile-favorite {
        border-radius: 5px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.28);
    }

    .weirdo-profile-favorite.is-extra,
    .weirdo-profile-favorites.is-expanded .weirdo-profile-favorite.is-extra,
    .weirdo-profile-section .weirdo-profile-more[data-weirdo-favorites-more] {
        display: none;
    }

    .weirdo-profile-reviews-section {
        padding-top: 13px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .weirdo-profile-reviews {
        gap: 16px;
    }

    .weirdo-profile-review {
        grid-template-columns: minmax(64px, 20%) minmax(0, 1fr);
        gap: 10px;
        align-items: start;
    }

    .weirdo-profile-review-poster img {
        width: 100%;
        aspect-ratio: 2 / 3;
        border-radius: 4px;
    }

    .weirdo-profile-review-poster .weirdo-profile-review-score {
        display: none;
    }

    .weirdo-profile-review-body {
        min-width: 0;
    }

    .weirdo-profile-review-head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 8px;
        min-width: 0;
        margin-bottom: 9px;
    }

    .weirdo-profile-review-title-wrap {
        min-width: 0;
    }

    .weirdo-profile-review-title {
        margin: 0 0 4px;
        color: var(--w2w-text-on-light-soft);
        font-size: var(--w2w-fs-base);
        font-weight: 500;
        line-height: 1.18;
    }

    .weirdo-profile-review-title strong {
        font-weight: 900;
    }

    .weirdo-profile-review-rating {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--w2w-text-on-light-soft);
        font-size: var(--w2w-fs-sm);
        font-weight: 700;
        line-height: 1;
    }

    .weirdo-profile-review-rating .weirdo-profile-stars {
        max-width: 88px;
        color: var(--w2w-text-on-light-muted);
        font-size: var(--w2w-fs-md);
    }

    .weirdo-profile-review-rating .weirdo-profile-stars span:last-child {
        color: var(--w2w-accent);
    }

    .weirdo-profile-review-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
        color: var(--w2w-text-on-light-muted);
        font-size: var(--w2w-fs-xs);
        font-weight: 600;
        line-height: 1;
        white-space: nowrap;
    }

    .weirdo-profile-review-actions button {
        width: 22px;
        height: 22px;
        display: grid;
        place-items: center;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--w2w-text-on-light-soft);
        cursor: pointer;
        font-size: var(--w2w-fs-lg);
        line-height: 1;
    }

    .weirdo-profile-review-body p {
        -webkit-line-clamp: 3;
        color: var(--w2w-text-on-light-soft);
        font-size: var(--w2w-fs-sm);
        font-style: italic;
        line-height: 1.5;
    }

    .weirdo-profile-review-body p.is-expanded {
        display: block;
    }

    .weirdo-profile-review-body .weirdo-profile-text-toggle {
        margin-top: 0;
        color: var(--w2w-text-on-light-soft);
        font-size: var(--w2w-fs-sm);
        font-style: italic;
        font-weight: 900;
    }

    .weirdo-profile-reviews-section > .weirdo-profile-more[data-weirdo-reviews-more] {
        min-height: 40px;
        margin-top: 24px;
        padding: 0 26px;
        border-radius: 9px;
        background: #e6aa27;
        color: var(--w2w-text-on-light);
        font-size: var(--w2w-fs-md);
        font-weight: 900;
    }
}

@media (max-width: 420px) {
    .weirdo-profile-tab-panel {
        padding-right: 10px;
        padding-left: 10px;
    }

    .weirdo-profile-stats strong {
        font-size: var(--w2w-fs-lg);
    }

    .weirdo-profile-stats span:not(.weirdo-profile-stat-icon) {
        font-size: var(--w2w-fs-xs);
    }

    .weirdo-profile-review-title {
        font-size: var(--w2w-fs-sm);
    }

    .weirdo-profile-review-actions {
        gap: 4px;
        font-size: var(--w2w-fs-xs);
    }

    .weirdo-profile-review-body p,
    .weirdo-profile-review-body .weirdo-profile-text-toggle {
        font-size: var(--w2w-fs-sm);
    }
}

@media (max-width: 1023px) {
    .weirdo-profile-content-side {
        display: none;
    }

    .weirdo-profile-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .weirdo-profile-stats div,
    .weirdo-profile-stats div:nth-child(4) {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .weirdo-profile-page {
        width: min(1220px, calc(100% - 56px));
        max-width: none;
        display: grid;
        grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
        gap: 12px 18px;
        align-items: start;
        margin: 0 auto;
        padding: 16px 0 72px;
        background: #f5f0eb;
    }

    .weirdo-profile-hero {
        grid-column: 1;
        min-height: 410px;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    }

    .weirdo-profile-hero__shade {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.42) 46%, rgba(0, 0, 0, 0.86) 82%, #111419 100%),
            linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.06) 56%, rgba(0, 0, 0, 0.2));
    }

    .weirdo-profile-hero__content {
        width: 100%;
        max-width: 640px;
        box-sizing: border-box;
        margin: 0;
        padding: 0 28px 64px;
        display: grid;
        grid-template-columns: 156px minmax(0, 1fr);
        gap: 0 16px;
        align-items: center;
    }

    .weirdo-profile-identity {
        display: contents;
    }

    .weirdo-profile-avatar-link {
        grid-column: 1;
        grid-row: 1 / span 3;
        width: 156px;
        height: 156px;
    }

    .weirdo-profile-identity .weirdo-profile-avatar {
        width: 156px;
        height: 156px;
        background: #d9d9d9;
    }

    .weirdo-profile-account,
    .weirdo-profile-taste,
    .weirdo-profile-description-wrap {
        grid-column: 2;
        min-width: 0;
    }

    .weirdo-profile-account h1 {
        font-size: var(--w2w-fs-2xl);
        line-height: 1.04;
    }

    .weirdo-profile-joined,
    .weirdo-profile-level-desktop {
        display: none;
    }

    .weirdo-profile-discord {
        display: flex;
        align-items: center;
        gap: 7px;
        margin-top: 7px;
        color: var(--w2w-success);
        font-size: var(--w2w-fs-sm);
        font-weight: 900;
    }

    .weirdo-profile-discord img {
        width: 22px;
        height: 22px;
    }

    .weirdo-profile-level {
        margin-top: 12px;
        font-size: var(--w2w-fs-sm);
    }

    .weirdo-profile-level-progress {
        width: min(190px, 100%);
        height: 13px;
        margin-top: 5px;
        overflow: hidden;
        border-radius: 2px;
        background: rgba(255, 255, 255, 0.18);
    }

    .weirdo-profile-level-progress i {
        display: block;
        height: 100%;
        background: #e7a323;
    }

    .weirdo-profile-taste {
        grid-row: auto;
        margin: 12px 0 0;
        color: var(--w2w-text-on-dark-soft);
        font-size: var(--w2w-fs-sm);
    }

    .weirdo-profile-taste strong {
        color: var(--w2w-accent);
        text-transform: uppercase;
    }

    .weirdo-profile-description-wrap {
        margin-top: 12px;
        padding: 0;
    }

    .weirdo-profile-description {
        -webkit-line-clamp: 2;
        max-height: none;
        font-size: var(--w2w-fs-sm);
        font-style: italic;
        line-height: 1.45;
    }

    .weirdo-profile-tabs {
        grid-column: 1;
        width: min(656px, calc(100% - 56px));
        justify-self: center;
        margin-top: -54px;
        z-index: 2;
        justify-content: stretch;
        overflow: hidden;
        border: 0;
        border-radius: 8px 8px 0 0;
        background: #181c1f;
        box-shadow: none;
    }

    .weirdo-profile-tabs button {
        flex: 1 1 25%;
        min-width: 0;
        min-height: 44px;
        padding: 0 10px;
        color: var(--w2w-text-on-dark);
        font-size: var(--w2w-fs-sm);
        font-weight: 500;
    }

    .weirdo-profile-tabs button.is-active {
        color: var(--w2w-accent);
        font-weight: 900;
    }

    .weirdo-profile-tabs button.is-active::after {
        right: 0;
        left: 0;
        height: 2px;
        background: #ff8a00;
    }

    .weirdo-profile-tab-panel {
        grid-column: 1 / -1;
        padding: 0;
    }

    .weirdo-profile-tab-panel.is-active {
        display: contents;
    }

    .weirdo-profile-content-grid {
        display: contents;
    }

    .weirdo-profile-content-main {
        grid-column: 1;
        min-width: 0;
    }

    .weirdo-profile-content-side {
        grid-column: 2;
        grid-row: 1 / span 4;
        display: grid;
        gap: 12px;
        min-width: 0;
    }

    .weirdo-profile-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
        margin-top: 0;
        padding: 24px 26px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.14);
    }

    .weirdo-profile-stats div,
    .weirdo-profile-stats div:nth-child(4) {
        grid-column: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-align: left;
    }

    .weirdo-profile-stat-icon {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
        margin: 0;
    }

    .weirdo-profile-stat-icon svg {
        width: 32px;
        height: 32px;
        display: block;
        fill: none;
        stroke: #706d69;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .weirdo-profile-stats strong {
        display: inline;
        color: var(--w2w-text-on-light-soft);
        font-size: var(--w2w-fs-xl);
        line-height: 1;
    }

    .weirdo-profile-stats span:not(.weirdo-profile-stat-icon) {
        display: inline;
        margin: 0;
        color: var(--w2w-text-on-light-soft);
        font-size: var(--w2w-fs-xs);
        line-height: 1.1;
    }

    .weirdo-profile-section {
        margin-top: 12px;
        padding: 14px 14px 18px;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    }

    .weirdo-profile-section-head h2 {
        padding-bottom: 6px;
        color: var(--w2w-text-on-light-soft);
        font-size: var(--w2w-fs-base);
    }

    .weirdo-profile-section-head h2::after {
        width: 82px;
        height: 2px;
        background: #ff8a00;
    }

    .weirdo-profile-favorites {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 10px;
    }

    .weirdo-profile-favorite.is-extra:nth-child(-n+5),
    .weirdo-profile-favorites.is-expanded .weirdo-profile-favorite.is-extra {
        display: block;
    }

    .weirdo-profile-favorite:nth-child(n+6) {
        display: none;
    }

    .weirdo-profile-section .weirdo-profile-more[data-weirdo-favorites-more] {
        display: none;
    }

    .weirdo-profile-review {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 12px;
    }

    .weirdo-profile-review-poster img {
        width: 96px;
    }

    .weirdo-profile-review-poster .weirdo-profile-review-score {
        display: none;
    }

    .weirdo-profile-review-title {
        color: var(--w2w-text-on-light-soft);
        font-size: var(--w2w-fs-base);
        font-weight: 500;
    }

    .weirdo-profile-review-title strong {
        font-weight: 900;
    }

    .weirdo-profile-review-body p {
        -webkit-line-clamp: 3;
        color: var(--w2w-text-on-light-soft);
        font-size: var(--w2w-fs-xs);
        font-style: italic;
        line-height: 1.5;
    }

    .weirdo-profile-more {
        min-height: 34px;
        margin-top: 14px;
        padding: 0 22px;
        background: #f0a11a;
        font-size: var(--w2w-fs-sm);
        font-weight: 900;
    }

    .weirdo-profile-side-card {
        padding: 14px;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    }

    .weirdo-profile-side-head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 12px;
    }

    .weirdo-profile-side-head h2 {
        position: relative;
        margin: 0;
        padding-bottom: 7px;
        color: var(--w2w-text-on-light-soft);
        font-size: var(--w2w-fs-sm);
        font-weight: 900;
        line-height: 1.1;
        text-transform: uppercase;
    }

    .weirdo-profile-side-head h2::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 48px;
        height: 2px;
        background: #ff8a00;
    }

    .weirdo-profile-side-head span {
        color: var(--w2w-text-on-light-muted);
        font-size: var(--w2w-fs-xs);
        font-weight: 700;
        line-height: 1.2;
        white-space: nowrap;
    }

    .weirdo-profile-same-taste-list,
    .weirdo-profile-reading-list {
        display: grid;
        gap: 10px;
    }

    .weirdo-profile-same-taste-item {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr) 44px;
        gap: 10px;
        align-items: center;
    }

    .weirdo-profile-same-taste-avatar {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #d9d9d9;
    }

    .weirdo-profile-same-taste-copy {
        min-width: 0;
    }

    .weirdo-profile-same-taste-copy strong {
        display: block;
        overflow: hidden;
        color: var(--w2w-text-on-light-soft);
        font-size: var(--w2w-fs-sm);
        font-weight: 900;
        line-height: 1.15;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .weirdo-profile-same-taste-copy span {
        display: block;
        overflow: hidden;
        margin-top: 2px;
        color: var(--w2w-text-on-light-soft);
        font-size: var(--w2w-fs-xs);
        line-height: 1.2;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .weirdo-profile-same-taste-match {
        text-align: right;
    }

    .weirdo-profile-same-taste-match strong {
        display: block;
        color: var(--w2w-success);
        font-size: var(--w2w-fs-sm);
        font-weight: 900;
        line-height: 1;
    }

    .weirdo-profile-same-taste-match span {
        display: block;
        margin-top: 2px;
        color: var(--w2w-text-on-light-soft);
        font-size: var(--w2w-fs-xs);
        line-height: 1.1;
    }

    .weirdo-profile-events-card {
        min-height: 92px;
    }

    .weirdo-profile-reading-item {
        display: grid;
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 10px;
        align-items: center;
    }

    .weirdo-profile-reading-thumb {
        width: 76px;
        aspect-ratio: 4 / 3;
        display: block;
        overflow: hidden;
        background: #d2d2d2;
        color: inherit;
        text-decoration: none;
    }

    .weirdo-profile-reading-thumb img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .weirdo-profile-reading-item a,
    .weirdo-profile-reading-item strong {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        color: var(--w2w-text-on-light-soft);
        font-size: var(--w2w-fs-sm);
        font-weight: 900;
        line-height: 1.12;
        text-decoration: none;
    }

    .weirdo-profile-reading-item time,
    .weirdo-profile-reading-item span {
        display: block;
        margin-top: 3px;
        color: var(--w2w-text-on-light-soft);
        font-size: var(--w2w-fs-xs);
        line-height: 1.2;
    }
}

@media (max-width: 1023px) {
    .weirdo-profile-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }

    .weirdo-profile-stats div,
    .weirdo-profile-stats div:nth-child(4) {
        grid-column: auto !important;
    }

    .weirdo-profile-hero-same-taste {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .weirdo-profile-page {
        width: 100%;
        max-width: none;
        display: block !important;
        margin: 0;
        padding: 0 0 72px;
        background: #f5f0eb;
    }

    .weirdo-profile-hero {
        width: 100%;
        min-height: 500px;
        display: grid !important;
        grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
        gap: 30px;
        align-items: end;
        margin: 0;
        padding: 0 max(44px, calc((100vw - 1220px) / 2)) 72px;
        box-sizing: border-box;
        overflow: hidden;
        border-radius: 0;
        background-size: cover;
        background-position: center center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.24);
    }

    .weirdo-profile-hero__shade {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.56) 46%, rgba(0, 0, 0, 0.98) 100%);
    }

    .weirdo-profile-hero__content {
        position: relative;
        z-index: 1;
        align-self: end !important;
        width: auto;
        max-width: none;
        display: block;
        margin: 0 !important;
        padding: 0;
        color: var(--w2w-text-on-dark);
    }

    .weirdo-profile-identity {
        width: 100%;
        height: auto !important;
        min-height: 0 !important;
        display: flex !important;
        flex-direction: row;
        gap: 24px;
        align-items: center;
    }

    .weirdo-profile-avatar-link {
        flex: 0 0 170px;
        width: 170px !important;
        height: 170px !important;
        display: block;
        align-self: center;
    }

    .weirdo-profile-avatar {
        width: 170px;
        height: 170px;
        border: 0;
        background: #dedede;
        box-shadow: none;
    }

    .weirdo-profile-account {
        flex: 1 1 auto;
        min-width: 0;
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
    }

    .weirdo-profile-account h1,
    .weirdo-profile-account h1 a {
        margin: 0;
        color: var(--w2w-text-on-dark);
        font-size: var(--w2w-fs-2xl);
        font-weight: 900;
        line-height: 1.05;
        letter-spacing: 0;
        text-decoration: none;
    }

    .weirdo-profile-joined,
    .weirdo-profile-level-desktop {
        display: none !important;
    }

    .weirdo-profile-discord {
        display: flex !important;
        align-items: center;
        gap: 8px;
        margin: 10px 0 0;
        font-size: var(--w2w-fs-md);
        font-weight: 700;
        line-height: 1.2;
        order: 2;
    }

    .weirdo-profile-discord img {
        width: 24px;
        height: 24px;
    }

    .weirdo-profile-discord.is-connected {
        color: var(--w2w-success);
    }

    .weirdo-profile-discord.is-disconnected {
        color: var(--w2w-text-on-dark-muted);
    }

    .weirdo-profile-level {
        display: block !important;
        margin: 12px 0 0;
        color: var(--w2w-text-on-dark);
        font-size: var(--w2w-fs-sm);
        line-height: 1.2;
        order: 3;
    }

    .weirdo-profile-level span {
        width: 5px;
        height: 5px;
        display: inline-block;
        margin: 0 7px;
        vertical-align: middle;
        border-radius: 999px;
        background: #ff8a00;
    }

    .weirdo-profile-level-progress {
        width: 190px;
        height: 11px;
        display: block !important;
        margin-top: 5px;
        overflow: hidden;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.22);
        order: 4;
    }

    .weirdo-profile-level-progress i {
        height: 100%;
        display: block;
        border-radius: inherit;
        background: #d9ad31;
    }

    .weirdo-profile-taste {
        width: 100%;
        align-self: flex-start !important;
        margin: 14px 0 0 !important;
        color: var(--w2w-text-on-dark-soft);
        font-size: var(--w2w-fs-md);
        line-height: 1.3;
        text-align: left !important;
        order: 5;
    }

    .weirdo-profile-taste strong {
        color: var(--w2w-accent);
        font-weight: 900;
        text-transform: uppercase;
    }

    .weirdo-profile-taste span {
        margin-left: 4px;
    }

    .weirdo-profile-description-wrap {
        width: 100%;
        max-width: 430px;
        align-self: flex-start !important;
        margin: 12px 0 0 !important;
        text-align: left !important;
        order: 6;
    }

    .weirdo-profile-description {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        margin: 0;
        color: var(--w2w-text-on-dark-muted);
        font-size: var(--w2w-fs-sm);
        font-style: italic;
        line-height: 1.45;
    }

    .weirdo-profile-description-wrap .weirdo-profile-text-toggle {
        display: none !important;
    }

    .weirdo-profile-hero-same-taste {
        position: relative;
        z-index: 1;
        align-self: end;
        min-width: 0;
        max-height: none;
        overflow: hidden;
        padding: 14px 16px 16px;
        border-radius: 8px;
        background: rgba(0, 0, 0, 0.5);
        color: var(--w2w-text-on-dark);
    }

    .weirdo-profile-hero-same-taste .weirdo-profile-side-head {
        margin-bottom: 12px;
    }

    .weirdo-profile-hero-same-taste .weirdo-profile-side-head h2 {
        color: var(--w2w-text-on-dark);
        font-size: var(--w2w-fs-sm);
    }

    .weirdo-profile-hero-same-taste .weirdo-profile-side-head span {
        color: var(--w2w-text-on-dark-muted);
        font-size: var(--w2w-fs-xs);
    }

    .weirdo-profile-hero-same-taste .weirdo-profile-same-taste-list {
        gap: 10px;
    }

    .weirdo-profile-hero-same-taste .weirdo-profile-same-taste-item {
        grid-template-columns: 44px minmax(0, 1fr) 50px;
        gap: 10px;
    }

    .weirdo-profile-hero-same-taste .weirdo-profile-same-taste-avatar {
        width: 44px;
        height: 44px;
        background: #e7e7e7;
    }

    .weirdo-profile-hero-same-taste .weirdo-profile-same-taste-copy strong {
        color: var(--w2w-text-on-dark);
        font-size: var(--w2w-fs-sm);
    }

    .weirdo-profile-hero-same-taste .weirdo-profile-same-taste-copy span {
        color: var(--w2w-text-on-dark-muted);
        font-size: var(--w2w-fs-xs);
    }

    .weirdo-profile-hero-same-taste .weirdo-profile-same-taste-match strong {
        color: var(--w2w-success);
        font-size: var(--w2w-fs-sm);
    }

    .weirdo-profile-hero-same-taste .weirdo-profile-same-taste-match span {
        color: var(--w2w-text-on-dark-muted);
        font-size: var(--w2w-fs-xs);
    }

    .weirdo-profile-tabs {
        position: relative;
        z-index: 3;
        width: min(1220px, calc(100% - 56px));
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
        margin: -56px auto 0;
        padding: 0;
        overflow: hidden;
        border-radius: 8px 8px 0 0;
        background: #1d2022;
        box-shadow: none;
    }

    .weirdo-profile-tabs button {
        min-width: 0;
        min-height: 56px;
        padding: 0 14px;
        border: 0;
        background: transparent;
        color: var(--w2w-text-on-dark);
        font-size: var(--w2w-fs-md);
        font-weight: 500;
        line-height: 1.1;
        text-align: center;
        white-space: nowrap;
    }

    .weirdo-profile-tabs button.is-active {
        color: var(--w2w-accent);
        font-weight: 800;
    }

    .weirdo-profile-tabs button.is-active::after {
        height: 3px;
        right: 0;
        left: 0;
        background: #ff8a00;
    }

    .weirdo-profile-tab-panel {
        width: min(1220px, calc(100% - 56px));
        display: none;
        margin: 0 auto;
        padding: 24px 0 72px;
    }

    .weirdo-profile-tab-panel.is-active {
        display: block;
    }

    .weirdo-profile-content-grid,
    .weirdo-profile-content-main {
        width: 100%;
        display: block;
    }

    .weirdo-profile-content-side {
        display: none !important;
    }
}

@media (max-width: 1023px) {
    .weirdo-profile-account {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 7px;
        align-items: start;
        justify-items: start;
    }

    .weirdo-profile-account > * {
        grid-column: 1 !important;
        justify-self: start;
        max-width: 100%;
    }

    .weirdo-profile-discord,
    .weirdo-profile-level,
    .weirdo-profile-level-progress,
    .weirdo-profile-taste {
        width: min(100%, 100%);
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .weirdo-profile-discord {
        display: flex !important;
    }

    .weirdo-profile-level {
        display: flex !important;
    }

    .weirdo-profile-level-progress {
        display: block !important;
        width: min(204px, 100%) !important;
    }

    .weirdo-profile-taste {
        display: flex !important;
        align-self: start !important;
        gap: 4px;
    }

    .weirdo-profile-hero {
        min-height: 286px;
    }

    .weirdo-profile-hero__shade {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.08) 22%, rgba(0, 0, 0, 0.72) 56%, rgba(0, 0, 0, 0.96) 88%, #111419 100%),
            linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.08));
    }
}

@media (min-width: 1024px) {
    .weirdo-profile-tab-panel.is-active {
        width: min(1220px, calc(100% - 56px));
        display: block;
        margin: 0 auto;
        padding: 18px 0 72px;
    }

    .weirdo-profile-content-grid {
        width: 100%;
        display: grid !important;
        grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
        gap: 18px;
        align-items: start;
    }

    .weirdo-profile-content-main {
        min-width: 0;
        display: grid !important;
        gap: 16px;
    }

    .weirdo-profile-content-side {
        min-width: 0;
        display: grid !important;
        gap: 16px;
    }

    .weirdo-profile-content-side .weirdo-profile-same-taste,
    .weirdo-profile-content-side .weirdo-profile-reading-card {
        display: none !important;
    }

    .weirdo-profile-stats {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
        margin: 0;
        padding: 20px 26px;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        box-shadow: 0 2px 7px rgba(0, 0, 0, 0.12);
    }

    .weirdo-profile-stats div,
    .weirdo-profile-stats div:nth-child(4) {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr);
        grid-template-rows: auto auto;
        gap: 0 12px;
        align-items: center;
        grid-column: auto !important;
        padding: 0;
        text-align: left;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .weirdo-profile-stat-icon {
        width: 34px;
        height: 34px;
        display: flex;
        grid-row: 1 / span 2;
        align-items: center;
        justify-content: center;
        color: var(--w2w-text-on-light-soft);
    }

    .weirdo-profile-stat-icon svg {
        width: 32px;
        height: 32px;
        stroke: currentColor;
        stroke-width: 1.8;
        fill: none;
    }

    .weirdo-profile-stats strong {
        display: block;
        margin: 0;
        color: var(--w2w-text-on-light-soft);
        font-size: var(--w2w-fs-xl);
        font-weight: 900;
        line-height: 1;
    }

    .weirdo-profile-stats span:not(.weirdo-profile-stat-icon) {
        display: block;
        margin-top: 4px;
        color: var(--w2w-text-on-light-muted);
        font-size: var(--w2w-fs-sm);
        line-height: 1.1;
        text-transform: lowercase;
    }

    .weirdo-profile-section {
        margin: 0;
        padding: 18px 18px 22px;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        box-shadow: 0 2px 7px rgba(0, 0, 0, 0.12);
    }

    .weirdo-profile-section-head {
        margin-bottom: 14px;
    }

    .weirdo-profile-section-head h2 {
        padding-bottom: 7px;
        color: var(--w2w-text-on-light-soft);
        font-size: var(--w2w-fs-md);
        font-weight: 900;
        line-height: 1.1;
        text-transform: uppercase;
    }

    .weirdo-profile-section-head h2::after {
        width: 92px;
        height: 2px;
        background: #ff8a00;
    }

    .weirdo-profile-favorites {
        display: grid !important;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 12px;
    }

    .weirdo-profile-favorite,
    .weirdo-profile-favorite.is-extra {
        display: block !important;
        overflow: hidden;
        aspect-ratio: 2 / 3;
        border-radius: 4px;
        background: #ddd;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.28);
    }

    .weirdo-profile-favorite img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .weirdo-profile-review {
        display: grid !important;
        grid-template-columns: minmax(92px, 1fr) minmax(0, 5fr);
        gap: 14px;
        align-items: start;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .weirdo-profile-review + .weirdo-profile-review {
        margin-top: 18px;
        padding-top: 18px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .weirdo-profile-review-poster {
        width: 100%;
        display: block;
    }

    .weirdo-profile-review-poster img {
        width: 100%;
        aspect-ratio: 2 / 3;
        display: block;
        border-radius: 4px;
        object-fit: cover;
    }

    .weirdo-profile-review-poster .weirdo-profile-review-score {
        display: none;
    }

    .weirdo-profile-review-head {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
        align-items: start;
        margin-bottom: 8px;
    }

    .weirdo-profile-review-title {
        margin: 0;
        color: var(--w2w-text-on-light-soft);
        font-size: var(--w2w-fs-base);
        font-weight: 500;
        line-height: 1.22;
    }

    .weirdo-profile-review-title strong {
        font-weight: 900;
    }

    .weirdo-profile-review-rating {
        display: inline-flex !important;
        align-items: center;
        gap: 6px;
        margin-top: 4px;
        color: var(--w2w-text-on-light-muted);
        font-size: var(--w2w-fs-sm);
        font-weight: 700;
    }

    .weirdo-profile-review-rating .weirdo-profile-stars {
        width: 78px;
        max-width: 78px;
        color: var(--w2w-accent);
        font-size: var(--w2w-fs-sm);
        letter-spacing: 0;
    }

    .weirdo-profile-review-actions {
        position: relative;
        display: flex !important;
        align-items: center;
        gap: 8px;
        color: var(--w2w-text-on-light-muted);
        font-size: var(--w2w-fs-xs);
        white-space: nowrap;
    }

    .weirdo-profile-review-menu {
        position: relative;
        display: inline-flex;
    }

    .weirdo-profile-review-menu > button {
        width: 22px;
        height: 22px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--w2w-text-on-light-soft);
        font-size: var(--w2w-fs-md);
        line-height: 1;
        cursor: pointer;
    }

    .weirdo-profile-review-menu-list {
        position: absolute;
        top: calc(100% + 6px);
        right: 0;
        z-index: 5;
        min-width: 132px;
        display: none;
        padding: 6px;
        border: 1px solid rgba(0, 0, 0, 0.12);
        border-radius: 6px;
        background: #fff;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
    }

    .weirdo-profile-review-menu:focus-within .weirdo-profile-review-menu-list,
    .weirdo-profile-review-menu:hover .weirdo-profile-review-menu-list {
        display: grid;
        gap: 2px;
    }

    .weirdo-profile-review-menu-list button {
        width: 100%;
        padding: 8px 9px;
        border: 0;
        border-radius: 4px;
        background: transparent;
        color: var(--w2w-text-on-light-soft);
        font-size: var(--w2w-fs-sm);
        font-weight: 700;
        text-align: left;
        cursor: pointer;
    }

    .weirdo-profile-review-menu-list button:hover,
    .weirdo-profile-review-menu-list button:focus {
        background: #f4f0ec;
    }

    .weirdo-profile-review-body p {
        -webkit-line-clamp: 3;
        margin: 0;
        color: var(--w2w-text-on-light-soft);
        font-size: var(--w2w-fs-sm);
        font-style: italic;
        line-height: 1.55;
    }

    .weirdo-profile-review-body p.is-expanded {
        -webkit-line-clamp: unset;
        display: block;
    }

    .weirdo-profile-review-body .weirdo-profile-text-toggle {
        margin-top: 6px;
        color: var(--w2w-text-on-light-soft);
        font-size: var(--w2w-fs-sm);
        font-style: italic;
        font-weight: 900;
    }

    .weirdo-profile-reviews-section > .weirdo-profile-more[data-weirdo-reviews-more] {
        min-width: 120px;
        min-height: 40px;
        display: flex;
        margin: 22px auto 0;
        border-radius: 8px;
        background: #e5a51f;
        color: var(--w2w-text-on-light);
        font-size: var(--w2w-fs-base);
        font-weight: 900;
    }

    .weirdo-profile-reviews-section > .weirdo-profile-more[hidden] {
        display: none;
    }

    .weirdo-profile-reviews-end {
        margin: 16px 0 0;
        color: var(--w2w-text-on-light-soft);
        font-size: var(--w2w-fs-sm);
        font-weight: 800;
        text-align: center;
    }

    .weirdo-profile-events-card {
        min-height: 292px;
        display: block !important;
        padding: 18px;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        box-shadow: 0 2px 7px rgba(0, 0, 0, 0.12);
    }

    .weirdo-profile-events-card::after {
        content: "";
        display: block;
        height: 150px;
        margin-top: 10px;
        border-radius: 8px;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.28) 25%, transparent 25%) 0 0 / 24px 24px,
            linear-gradient(135deg, transparent 75%, rgba(255, 255, 255, 0.28) 75%) 0 0 / 24px 24px,
            linear-gradient(135deg, #8ab8df, #f0b229);
    }

    .weirdo-profile-events-card .weirdo-profile-side-head h2 {
        color: var(--w2w-text-on-light-soft);
        font-size: var(--w2w-fs-base);
    }

    .weirdo-profile-events-card .weirdo-profile-side-head span {
        color: var(--w2w-text-on-light-muted);
        font-size: var(--w2w-fs-xs);
    }
}

.weirdo-profile-review-edited {
    color: var(--w2w-text-on-light-muted);
    font-size: var(--w2w-fs-xs);
    font-weight: 700;
}

.weirdo-profile-review-edited[hidden] {
    display: none !important;
}

.weirdo-profile-review.is-hidden {
    display: none !important;
}

.weirdo-profile-review-modal[hidden] {
    display: none !important;
}

.weirdo-profile-review-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
}

.weirdo-profile-review-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
}

.weirdo-profile-review-modal__panel {
    position: relative;
    z-index: 1;
    width: min(460px, calc(100vw - 32px));
    border-radius: var(--w2w-ui-radius-card);
    background: var(--w2w-ui-surface);
    box-shadow: var(--w2w-ui-shadow-modal);
}

.weirdo-profile-review-modal__form {
    display: grid;
    gap: 14px;
    padding: 22px;
}

.weirdo-profile-review-modal__handle {
    display: none;
}

.weirdo-profile-review-modal h2 {
    margin: 0;
    color: var(--w2w-text-on-light);
    font-size: var(--w2w-fs-lg);
    font-weight: 900;
    line-height: 1.15;
}

.weirdo-profile-review-modal__copy {
    margin: 0;
    color: var(--w2w-text-on-light-soft);
    font-size: var(--w2w-fs-sm);
    line-height: 1.45;
}

.weirdo-profile-review-modal textarea {
    width: 100%;
    min-height: 150px;
    box-sizing: border-box;
    resize: vertical;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: var(--w2w-ui-radius-card);
    color: var(--w2w-text-on-light);
    font: inherit;
    line-height: 1.45;
}

.weirdo-profile-review-modal textarea[hidden] {
    display: none !important;
}

.weirdo-profile-review-modal__error {
    margin: 0;
    color: var(--w2w-danger);
    font-size: var(--w2w-fs-sm);
    font-weight: 800;
}

.weirdo-profile-review-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.weirdo-profile-review-modal__actions button {
    min-height: 38px;
    padding: 0 16px;
    border: 0;
    border-radius: var(--w2w-ui-radius-control);
    font-weight: 900;
    cursor: pointer;
}

.weirdo-profile-review-modal__actions button:first-child {
    background: #ece7e1;
    color: var(--w2w-text-on-light-soft);
}

.weirdo-profile-review-modal__actions button:last-child {
    background: var(--w2w-ui-brand-strong);
    color: var(--w2w-text-on-light);
}

.weirdo-profile-review-modal__actions button:disabled {
    cursor: wait;
    opacity: 0.7;
}

@media (max-width: 1023px) {
    .weirdo-profile-review-modal {
        place-items: end center;
    }

    .weirdo-profile-review-modal__panel {
        width: 100%;
        max-height: calc(100vh - 48px);
        overflow: auto;
        border-radius: 18px 18px 0 0;
        transform: translateY(100%);
        transition: transform 180ms ease;
    }

    .weirdo-profile-review-modal.is-open .weirdo-profile-review-modal__panel {
        transform: translateY(0);
    }

    .weirdo-profile-review-modal__form {
        padding: 10px 18px 18px;
    }

    .weirdo-profile-review-modal__handle {
        width: 42px;
        height: 5px;
        display: block;
        justify-self: center;
        margin: 0 0 4px;
        border-radius: 999px;
        background: #d8d2cc;
    }

    .weirdo-profile-review-modal h2 {
        font-size: var(--w2w-fs-lg);
    }

    .weirdo-profile-review-modal__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1180px) {
    .weirdo-profile-shell {
        width: min(100% - 28px, 1040px);
    }
}

@media (min-width: 1024px) and (max-width: 1180px) {
    .weirdo-profile-desktop-hero-content {
        grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.85fr);
        gap: 18px;
    }

    .weirdo-profile-stats {
        gap: 18px 0;
    }
}

@media (max-width: 767px) {
    .weirdo-profile-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .weirdo-profile-stats div,
    .weirdo-profile-stats div:nth-child(4),
    .weirdo-profile-stats div:nth-child(5) {
        grid-column: span 1;
    }

    .weirdo-profile-favorites,
    .weirdo-profile-movies {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 360px) {
    .weirdo-profile-tabs button {
        padding-right: 8px;
        padding-left: 8px;
        font-size: var(--w2w-fs-xs);
    }

    .weirdo-profile-tabs button.is-active::after {
        right: 8px;
        left: 8px;
    }
}

.weirdo-profile-stars {
    width: 5em !important;
    max-width: none !important;
    display: inline-block;
    position: relative;
    overflow: hidden;
    color: var(--w2w-text-on-light-muted);
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
}

.weirdo-profile-stars > span:first-child {
    display: block;
    color: currentColor;
}

.weirdo-profile-stars > span:last-child {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: var(--weirdo-star-width, 0%) !important;
    max-width: 100%;
    display: block;
    overflow: hidden;
    color: var(--w2w-accent);
    white-space: nowrap;
}

.weirdo-profile-review-rating .weirdo-profile-stars,
.weirdo-profile-review-score .weirdo-profile-stars {
    color: var(--w2w-text-on-light-muted) !important;
}

.weirdo-profile-review-rating .weirdo-profile-stars > span:last-child,
.weirdo-profile-review-score .weirdo-profile-stars > span:last-child {
    color: var(--w2w-accent) !important;
}

.weirdo-profile-review-menu {
    position: relative;
    display: inline-flex;
}

.weirdo-profile-review-menu-list {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    z-index: 20;
    min-width: 132px;
    display: none !important;
    padding: 6px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.weirdo-profile-review-menu:focus-within .weirdo-profile-review-menu-list,
.weirdo-profile-review-menu:hover .weirdo-profile-review-menu-list {
    display: grid !important;
    gap: 2px;
}

@media (max-width: 1023px) {
    .weirdo-profile-review-menu-list {
        top: calc(100% + 4px);
        min-width: 108px;
        padding: 4px;
        border-radius: 6px;
    }

    .weirdo-profile-review-menu-list button {
        min-height: 28px;
        padding: 6px 7px;
        border: 0;
        border-radius: 4px;
        background: transparent;
        color: var(--w2w-text-on-light-soft);
        font-size: var(--w2w-fs-xs);
        font-weight: 800;
        line-height: 1.15;
        text-align: left;
        white-space: nowrap;
    }
}
