.rn-account,
.rn-catalog,
.rn-collection,
.rn-discovery,
.rn-member-profile,
.rn-release-single,
.rn-shelf-lab,
.rn-taxonomy-page {
    --rn-ink: #202326;
    --rn-muted: #65717a;
    --rn-line: #d9dee2;
    --rn-paper: #f7f8f6;
    --rn-panel: #ffffff;
    --rn-red: #a81827;
    --rn-red-dark: #78101c;
    --rn-teal: #1d6f74;
    --rn-gold: #b89446;
    color: var(--rn-ink);
}

/* v1.0.71 Collector Shelf Lab test pipeline. */
.rn-shelf-lab,
.rn-shelf-lab * {
    box-sizing: border-box;
}

.rn-shelf-lab {
    display: grid;
    gap: 26px;
    max-width: 1120px;
    margin: 0 auto;
    color: var(--rn-ink);
}

.rn-shelf-lab__header,
.rn-shelf-lab__builder,
.rn-shelf-lab__shelves {
    border: 1px solid rgba(184, 148, 70, 0.28);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 248, 231, 0.82), rgba(255, 253, 247, 0.98)),
        #fffaf0;
    box-shadow: 0 18px 42px rgba(42, 16, 18, 0.1);
    padding: clamp(18px, 3vw, 28px);
}

.rn-shelf-lab__header {
    background:
        linear-gradient(135deg, rgba(93, 18, 29, 0.96), rgba(38, 20, 24, 0.96)),
        #5d121d;
    color: #fff8e7;
}

.rn-shelf-lab__header h1,
.rn-shelf-lab__section-heading h2 {
    margin: 0;
    line-height: 1.05;
}

.rn-shelf-lab__header p:last-child,
.rn-shelf-lab__section-heading p {
    max-width: 720px;
    margin: 8px 0 0;
    color: inherit;
    opacity: 0.82;
}

.rn-shelf-lab__builder,
.rn-shelf-lab__shelves,
.rn-shelf-lab__create-form,
.rn-shelf-lab__album-builder,
.rn-shelf-lab__shelf,
.rn-shelf-lab__drawer {
    display: grid;
    gap: 16px;
    min-width: 0;
}

.rn-shelf-lab__section-heading {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.rn-shelf-lab__form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(170px, 0.45fr);
    gap: 12px;
}

.rn-shelf-lab__description-field {
    grid-column: 1 / -1;
}

.rn-shelf-lab label {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.rn-shelf-lab label > span,
.rn-shelf-lab__album-tools h3 {
    color: var(--rn-red-dark);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.rn-shelf-lab input[type="text"],
.rn-shelf-lab input[type="search"],
.rn-shelf-lab textarea,
.rn-shelf-lab select {
    width: 100%;
    max-width: 100%;
    border: 1px solid rgba(114, 31, 43, 0.24);
    border-radius: 8px;
    background: rgba(255, 253, 247, 0.96);
    color: var(--rn-ink);
    font: inherit;
    min-height: 44px;
    padding: 10px 12px;
}

.rn-shelf-lab textarea {
    min-height: 88px;
    resize: vertical;
}

.rn-shelf-lab__album-tools {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
}

.rn-shelf-lab__album-tools p {
    margin: 4px 0 0;
    color: var(--rn-muted);
    font-size: 13px;
    font-weight: 850;
}

.rn-shelf-lab__album-tools label {
    width: min(100%, 320px);
}

.rn-shelf-lab__album-picker {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
    max-height: 460px;
    overflow: auto;
    padding: 2px;
}

.rn-shelf-lab__album-choice {
    grid-template-columns: auto 54px minmax(0, 1fr);
    align-items: center;
    border: 1px solid rgba(184, 148, 70, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    padding: 8px;
}

.rn-shelf-lab__album-choice input {
    width: 18px;
    height: 18px;
}

.rn-shelf-lab__album-thumb,
.rn-shelf-lab__album-row-thumb,
.rn-shelf-lab__cover-strip a,
.rn-shelf-lab__cover-strip span {
    display: grid;
    place-items: center;
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f7edd2, #d8c18a);
    color: var(--rn-red-dark);
    font-weight: 950;
}

.rn-shelf-lab__album-thumb {
    width: 54px;
    border-radius: 7px;
}

.rn-shelf-lab__album-thumb img,
.rn-shelf-lab__album-row-thumb img,
.rn-shelf-lab__cover-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rn-shelf-lab__album-text,
.rn-shelf-lab__album-row-text {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.rn-shelf-lab__album-text strong,
.rn-shelf-lab__album-row-text h4 {
    margin: 0;
    color: var(--rn-ink);
    font-size: 14px;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.rn-shelf-lab__album-text small,
.rn-shelf-lab__album-row-text small {
    color: var(--rn-muted);
    font-size: 12px;
    font-weight: 750;
    overflow-wrap: anywhere;
}

.rn-shelf-lab__create-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.rn-shelf-lab button {
    max-width: 100%;
    box-sizing: border-box;
}

.rn-shelf-lab__create-actions button,
.rn-shelf-lab__add-form button,
.rn-shelf-lab__edit-form button,
.rn-shelf-lab__delete-form button,
.rn-shelf-lab__remove-form button {
    border: 0;
    border-radius: 999px;
    background: var(--rn-red);
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 950;
    min-height: 40px;
    padding: 10px 16px;
    text-transform: uppercase;
}

.rn-shelf-lab__delete-form button,
.rn-shelf-lab__remove-form button {
    background: #2c171b;
}

.rn-shelf-lab__stack {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.rn-shelf-lab__shelf {
    border: 1px solid rgba(184, 148, 70, 0.24);
    border-radius: 8px;
    background: rgba(255, 253, 247, 0.86);
    padding: 14px;
}

.rn-shelf-lab__shelf-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(120px, 180px) auto;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.rn-shelf-lab__shelf-main {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.rn-shelf-lab__shelf-main h3,
.rn-shelf-lab__drawer-heading h3 {
    margin: 0;
    color: var(--rn-red-dark);
    line-height: 1.12;
}

.rn-shelf-lab__shelf-main p {
    margin: 0;
    color: var(--rn-muted);
    font-size: 13px;
    font-weight: 750;
}

.rn-shelf-lab__shelf-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.rn-shelf-lab__shelf-meta span,
.rn-shelf-lab__drawer-heading > span {
    border: 1px solid rgba(184, 148, 70, 0.3);
    border-radius: 999px;
    background: rgba(255, 248, 231, 0.82);
    color: var(--rn-red-dark);
    font-size: 11px;
    font-weight: 900;
    padding: 6px 9px;
    text-transform: uppercase;
}

.rn-shelf-lab__cover-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    min-width: 0;
}

.rn-shelf-lab__cover-strip a,
.rn-shelf-lab__cover-strip span {
    border-radius: 6px;
}

.rn-shelf-lab__drawer {
    border-top: 1px solid rgba(184, 148, 70, 0.24);
    margin-top: 4px;
    padding-top: 14px;
}

.rn-shelf-lab__drawer[hidden] {
    display: none;
}

.rn-shelf-lab__drawer-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.rn-shelf-lab__drawer-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 12px;
}

.rn-shelf-lab__add-form,
.rn-shelf-lab__edit-form {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.rn-shelf-lab__drawer-albums {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.rn-shelf-lab__album-row {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(184, 148, 70, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.68);
    padding: 8px;
}

.rn-shelf-lab__album-row-thumb {
    width: 58px;
    border-radius: 7px;
    text-decoration: none;
}

.rn-shelf-lab__album-row-text a {
    color: inherit;
    text-decoration: none;
}

.rn-shelf-lab__empty {
    margin: 0;
    color: var(--rn-muted);
    font-weight: 800;
}

@media (max-width: 760px) {
    .rn-shelf-lab {
        gap: 20px;
    }

    .rn-shelf-lab__form-grid,
    .rn-shelf-lab__drawer-grid,
    .rn-shelf-lab__shelf-summary {
        grid-template-columns: 1fr;
    }

    .rn-shelf-lab__album-tools,
    .rn-shelf-lab__drawer-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .rn-shelf-lab__album-tools label {
        width: 100%;
    }

    .rn-shelf-lab__cover-strip {
        max-width: 220px;
    }

    .rn-shelf-lab__manage-button,
    .rn-shelf-lab__create-actions button,
    .rn-shelf-lab__add-form button,
    .rn-shelf-lab__edit-form button,
    .rn-shelf-lab__delete-form button {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .rn-shelf-lab__header,
    .rn-shelf-lab__builder,
    .rn-shelf-lab__shelves {
        padding: 16px;
    }

    .rn-shelf-lab__album-picker {
        grid-template-columns: 1fr;
        max-height: 420px;
    }

    .rn-shelf-lab__album-row {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .rn-shelf-lab__album-row-thumb {
        width: 48px;
    }

    .rn-shelf-lab__remove-form {
        grid-column: 1 / -1;
    }

    .rn-shelf-lab__remove-form button {
        width: 100%;
    }
}

.rn-member-profile-page main > article > .entry-header,
.rn-member-profile-page main > article > header.entry-header,
.rn-member-profile-page main .entry-header,
.rn-member-profile-page main .post-header,
.rn-member-profile-page main .page-header,
.rn-member-profile-page main .wp-block-post-title,
.rn-member-profile-page main .entry-title,
.rn-member-profile-page main .page-title {
    display: none !important;
}

.rn-member-profile-page main,
.rn-member-profile-page .site-main,
.rn-member-profile-page .site-content,
.rn-member-profile-page .content-area,
.rn-member-profile-page main > article,
.rn-member-profile-page .entry-content,
.rn-member-profile-page .wp-block-post-content {
    margin-top: 0 !important;
    margin-block-start: 0 !important;
    padding-top: 0 !important;
    padding-block-start: 0 !important;
}

.rn-release-singular .entry-meta,
.rn-release-singular .post-meta,
.rn-release-singular .post-meta-wrapper,
.rn-release-singular .single-post-meta,
.rn-release-singular .posted-on,
.rn-release-singular .byline,
.rn-release-singular .entry-date,
.rn-release-singular .published,
.rn-release-singular .updated,
.rn-release-singular .post-date,
.rn-release-singular .post-author,
.rn-release-singular .wp-block-post-date,
.rn-release-singular .wp-block-post-author,
.rn-release-singular .wp-block-post-author-name,
.rn-release-singular .wp-block-group:has(.wp-block-post-date),
.rn-release-singular .wp-block-group:has(.wp-block-post-author),
.rn-release-singular .wp-block-group:has(.wp-block-post-author-name),
.rn-release-singular .post-byline,
.rn-release-singular .posted-by,
.rn-release-singular .entry-byline,
.rn-release-singular .post-info,
.rn-release-singular .post-details,
.rn-release-singular .post-meta-item,
.rn-release-singular .post-meta__author,
.rn-release-singular .post-meta__date,
.rn-release-singular .author-meta,
.rn-release-singular .author-name,
.rn-release-singular .author-link,
.rn-release-singular .vcard.author,
.rn-release-singular a[rel="author"],
.rn-release-singular main .entry-header,
.rn-release-singular main > article > .entry-header,
.rn-release-singular main > article > header.entry-header,
.rn-release-singular main .post-header,
.rn-release-singular main .single-post-header,
.rn-release-singular main .wp-block-post-title,
.rn-release-singular main .entry-title,
.rn-release-singular main .post-title,
.rn-release-singular main .page-title,
.rn-release-singular main article .entry-footer,
.rn-release-singular .post-navigation,
.rn-release-singular .navigation.post-navigation,
.rn-release-singular .wp-block-post-navigation-link,
.rn-release-singular nav[aria-label="Posts"],
.rn-release-singular nav[aria-label="Post navigation"] {
    display: none !important;
}

.rn-release-singular main,
.rn-release-singular .site-main,
.rn-release-singular .site-content,
.rn-release-singular .content-area,
.rn-release-singular .wp-site-blocks > main,
.rn-release-singular main > article,
.rn-release-singular .type-rn_release,
.rn-release-singular .entry-content,
.rn-release-singular .wp-block-post-content {
    margin-top: 0 !important;
    margin-block-start: 0 !important;
    padding-top: 0 !important;
    padding-block-start: 0 !important;
}

.rn-account,
.rn-catalog,
.rn-collection,
.rn-taxonomy-results,
.rn-release-single {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px clamp(16px, 3vw, 28px) 48px;
}

.rn-release-singular .rn-release-single {
    padding-top: 0;
    margin-top: 0;
}

body.rn-public-no-adminbar #wpadminbar,
body.admin-bar #wpadminbar,
body.rn-red-note-public-page #wpadminbar {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
}

html:has(body.rn-public-no-adminbar),
html:has(body.admin-bar),
html:has(body.rn-red-note-public-page) {
    margin-top: 0 !important;
}

body.rn-public-no-adminbar,
body.admin-bar,
body.rn-red-note-public-page.admin-bar {
    margin-top: 0 !important;
}

@media screen and (max-width: 782px) {
    html:has(body.rn-public-no-adminbar),
    html:has(body.admin-bar) {
        margin-top: 0 !important;
    }
}

body.rn-red-note-public-page footer,
body.rn-red-note-public-page .site-footer,
body.rn-red-note-public-page .wp-site-blocks > footer {
    margin-top: clamp(24px, 4vw, 44px);
}

body.rn-red-note-public-page .site-info:has(a[href*="wordpress.org"]),
body.rn-red-note-public-page .powered-by-wordpress,
body.rn-red-note-public-page footer .wp-block-group:has(a[href*="wordpress.org"]) {
    display: none !important;
}

body:not(.wp-admin) footer .wp-block-social-links,
body:not(.wp-admin) footer .wp-social-links,
body:not(.wp-admin) footer .social-links,
body:not(.wp-admin) footer .social-navigation,
body:not(.wp-admin) footer nav[aria-label*="Social"],
body:not(.wp-admin) .site-footer .wp-block-social-links,
body:not(.wp-admin) .site-footer .wp-social-links,
body:not(.wp-admin) .site-footer .social-links,
body:not(.wp-admin) .site-footer .social-navigation,
body:not(.wp-admin) .site-footer nav[aria-label*="Social"],
body:not(.wp-admin) .wp-site-blocks > footer .wp-block-social-links,
body:not(.wp-admin) .wp-site-blocks > footer .wp-social-links {
    display: none !important;
}

body:not(.wp-admin) .site-info:has(a[href*="wordpress.org"]),
body:not(.wp-admin) .powered-by-wordpress,
body:not(.wp-admin) footer .wp-block-group:has(a[href*="wordpress.org"]),
body:not(.wp-admin) .wp-site-blocks > footer .wp-block-group:has(a[href*="wordpress.org"]) {
    display: none !important;
}

body:not(.wp-admin) nav li:has(> a[href*="/red-note-member"]),
body:not(.wp-admin) nav .wp-block-navigation-item:has(a[href*="/red-note-member"]),
body:not(.wp-admin) header li:has(> a[href*="/red-note-member"]),
body:not(.wp-admin) header .wp-block-navigation-item:has(a[href*="/red-note-member"]) {
    display: none !important;
}

.rn-archive-scoreboard,
.rn-archive-scoreboard * {
    box-sizing: border-box;
}

.rn-archive-scoreboard {
    position: relative;
    isolation: isolate;
    container-type: inline-size;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto clamp(32px, 4vw, 56px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
        linear-gradient(135deg, #8f1426 0%, #3a2021 38%, #151719 100%);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 8px solid #b89446;
    box-shadow: 0 28px 72px rgba(16, 18, 20, 0.34);
}

.rn-archive-scoreboard::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(180deg, rgba(242, 207, 119, 0.12), transparent 46%);
    background-size: 72px 100%, 100% 100%;
    opacity: 0.26;
}

.rn-archive-scoreboard__inner {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(28px, 3.5vw, 44px);
}

.rn-archive-scoreboard__intro {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: clamp(24px, 3vw, 40px);
}

.rn-archive-scoreboard__intro p {
    margin: 0;
    color: #f2cf77;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}

.rn-archive-scoreboard__intro h2 {
    margin: 0;
    color: #fff;
    font-size: 56px;
    line-height: 1.02;
}

.rn-archive-scoreboard__discover {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(242, 207, 119, 0.48);
    border-radius: 999px;
    background: rgba(255, 248, 231, 0.08);
    color: #fff4d8;
    font-size: 12px;
    font-weight: 950;
    padding: 10px 14px;
    text-decoration: none;
    text-transform: uppercase;
}

.rn-archive-scoreboard__discover:hover {
    background: #f2cf77;
    color: #25171b;
    text-decoration: none;
}

.rn-archive-scoreboard__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.rn-archive-scoreboard__metric {
    position: relative;
    display: flex;
    min-height: 176px;
    min-width: 0;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055)),
        rgba(12, 14, 16, 0.2);
    padding: 22px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 18px 34px rgba(0, 0, 0, 0.18);
}

.rn-archive-scoreboard__metric::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    height: 2px;
    background: linear-gradient(90deg, #f2cf77, rgba(242, 207, 119, 0));
    opacity: 0.7;
}

.rn-archive-scoreboard__metric span,
.rn-archive-scoreboard__metric em {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    line-height: 1.25;
    text-transform: uppercase;
}

.rn-archive-scoreboard__metric span {
    color: #f2cf77;
    overflow-wrap: anywhere;
}

.rn-archive-scoreboard__metric em {
    overflow-wrap: anywhere;
}

.rn-archive-scoreboard__metric strong {
    display: block;
    margin: 12px 0 10px;
    color: #fff;
    font-size: 64px;
    font-weight: 950;
    line-height: 0.95;
    white-space: nowrap;
}

.rn-archive-activity {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.rn-archive-activity__item {
    min-width: 0;
    border-left: 3px solid #f2cf77;
    border-radius: 8px;
    background: rgba(16, 18, 20, 0.48);
    padding: 16px 18px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.rn-archive-activity__item span,
.rn-archive-activity__item strong {
    display: block;
    overflow-wrap: anywhere;
}

.rn-archive-activity__item span {
    color: #f2cf77;
    font-size: 11px;
    font-weight: 950;
    line-height: 1.25;
    text-transform: uppercase;
}

.rn-archive-activity__item strong {
    margin-top: 7px;
    color: #fff;
    font-size: 16px;
    line-height: 1.28;
}

.rn-archive-activity__item strong a {
    color: inherit;
    text-decoration-color: rgba(242, 207, 119, 0.7);
    text-underline-offset: 3px;
}

.rn-archive-activity__item strong a:hover {
    color: #f2cf77;
}

.rn-archive-activity__member {
    display: inline-flex;
    max-width: 100%;
    align-items: center;
    gap: 11px;
}

.rn-archive-activity__member span {
    display: inline;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    text-transform: none;
}

.rn-archive-activity__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border: 1px solid rgba(242, 207, 119, 0.65);
    border-radius: 50%;
    background: rgba(242, 207, 119, 0.14);
    color: #f2cf77;
    font-size: 15px;
    font-weight: 950;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.rn-catalog-search {
    background: var(--rn-paper);
    border: 1px solid var(--rn-line);
    border-left: 6px solid var(--rn-red);
    border-radius: 8px;
    padding: clamp(16px, 2vw, 24px);
    margin-bottom: 22px;
}

.rn-catalog-search__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    align-items: end;
}

.rn-catalog-search label {
    display: grid;
    gap: 6px;
    min-width: 0;
    font-weight: 700;
    color: var(--rn-ink);
}

.rn-catalog-search span {
    font-size: 13px;
}

.rn-catalog-search input,
.rn-catalog-search select {
    width: 100%;
    min-height: 42px;
    border: 1px solid #bfc8ce;
    border-radius: 6px;
    background: #fff;
    color: var(--rn-ink);
    padding: 8px 10px;
    font: inherit;
}

.rn-catalog-search__button {
    display: flex;
}

.rn-catalog-search button,
.rn-collection-form button,
.rn-release-card__button,
.rn-release-download__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 0;
    border-radius: 6px;
    background: var(--rn-red);
    color: #fff;
    padding: 10px 16px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.rn-catalog-search button {
    width: 100%;
}

.rn-catalog-search button:hover,
.rn-collection-form button:hover,
.rn-release-card__button:hover,
.rn-release-download__button:hover {
    background: var(--rn-red-dark);
    color: #fff;
    text-decoration: none;
}

.rn-catalog-results-meta {
    margin: 0 0 14px;
    color: var(--rn-muted);
    font-weight: 700;
}

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

.rn-release-grid--compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rn-release-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    scroll-margin-top: 110px;
    background: var(--rn-panel);
    border: 1px solid var(--rn-line);
    border-radius: 8px;
}

.rn-release-card__image-link {
    display: block;
    background: #e9eef0;
    text-decoration: none;
}

.rn-release-card__image,
.rn-release-card__placeholder {
    display: flex;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    align-items: center;
    justify-content: center;
}

.rn-release-card__placeholder {
    background: linear-gradient(135deg, #24272a, #6f161f);
    color: #fff;
    font-weight: 800;
}

.rn-release-card__body {
    display: grid;
    gap: 9px;
    padding: 15px;
}

.rn-release-card__catalog {
    color: var(--rn-red);
    font-size: 13px;
    font-weight: 800;
}

.rn-release-card__title {
    margin: 0;
    font-size: 19px;
    line-height: 1.25;
}

.rn-release-card__title a {
    color: var(--rn-ink);
    text-decoration: none;
}

.rn-release-card__title a:hover {
    color: var(--rn-red);
    text-decoration: underline;
}

.rn-release-card__artist {
    color: var(--rn-muted);
    font-weight: 700;
}

.rn-release-card__artist a,
.rn-release-card__meta a,
.rn-release-single__meta a {
    color: inherit;
    text-decoration: none;
}

.rn-release-card__artist a:hover,
.rn-release-card__meta a:hover,
.rn-release-single__meta a:hover {
    color: var(--rn-red);
    text-decoration: underline;
}

.rn-release-card__meta,
.rn-release-single__meta {
    display: grid;
    gap: 8px;
    margin: 0;
}

.rn-release-card__meta div,
.rn-release-single__meta div {
    display: grid;
    grid-template-columns: minmax(92px, max-content) minmax(0, 1fr);
    gap: 10px;
}

.rn-release-card__meta dt,
.rn-release-single__meta dt {
    color: var(--rn-muted);
    font-size: 13px;
    font-weight: 800;
}

.rn-release-card__meta dd,
.rn-release-single__meta dd {
    margin: 0;
    min-width: 0;
    overflow-wrap: anywhere;
}

.rn-release-card__button {
    margin-top: 4px;
    justify-self: start;
}

.rn-empty-results {
    border: 1px solid var(--rn-line);
    border-radius: 8px;
    background: #fff;
    color: var(--rn-muted);
    padding: 22px;
    font-weight: 700;
}

.rn-pagination {
    margin-top: 26px;
}

.rn-pagination ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rn-pagination a,
.rn-pagination span {
    display: inline-flex;
    min-width: 38px;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rn-line);
    border-radius: 6px;
    padding: 7px 10px;
    text-decoration: none;
}

.rn-pagination .current {
    border-color: var(--rn-red);
    background: var(--rn-red);
    color: #fff;
}

.rn-load-more {
    display: grid;
    justify-items: center;
    gap: 8px;
    margin-top: 26px;
}

.rn-load-more button {
    min-height: 44px;
    border: 0;
    border-radius: 6px;
    background: var(--rn-red);
    color: #fff;
    padding: 11px 18px;
    font-weight: 900;
    cursor: pointer;
}

.rn-load-more button:hover {
    background: var(--rn-red-dark);
}

.rn-load-more button:disabled,
.rn-load-more.is-loading button {
    cursor: wait;
    opacity: 0.72;
}

.rn-load-more p {
    margin: 0;
    color: var(--rn-muted);
    font-weight: 700;
}

.rn-release-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 26px;
}

.rn-share {
    position: relative;
}

.rn-share-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rn-red);
    border-radius: 999px;
    background: #fff;
    color: var(--rn-red);
    padding: 11px 20px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.rn-share-button:hover {
    background: #fff7f7;
    border-color: var(--rn-red-dark);
    color: var(--rn-red-dark);
    transform: translateY(-1px);
}

.rn-share-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(20, 23, 26, 0.58);
    padding: 18px;
}

.rn-share-modal[aria-hidden="false"] {
    display: flex;
}

.rn-share-modal__panel {
    width: min(420px, 100%);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
    padding: 18px;
}

.rn-share-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.rn-share-modal__header h3 {
    margin: 0;
    font-size: 22px;
}

.rn-share-modal__close {
    border: 0;
    background: transparent;
    color: var(--rn-muted);
    font-weight: 800;
    cursor: pointer;
}

.rn-share-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.rn-share-option {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    border: 1px solid var(--rn-line);
    border-radius: 8px;
    background: #fff;
    color: var(--rn-ink);
    padding: 9px 10px;
    font: inherit;
    font-weight: 800;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.rn-share-option:hover {
    border-color: var(--rn-red);
    color: var(--rn-red);
    text-decoration: none;
}

.rn-share-option__icon {
    display: inline-flex;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rn-paper);
    color: var(--rn-red);
    font-size: 11px;
    font-weight: 900;
}

.rn-share-modal__status {
    min-height: 20px;
    margin: 12px 0 0;
    color: var(--rn-muted);
    font-weight: 700;
}

.rn-share-modal-open {
    overflow: hidden;
}

.rn-collection-link,
.rn-collection-login a {
    color: var(--rn-teal);
    font-weight: 800;
    text-decoration: none;
}

.rn-collection-link:hover,
.rn-collection-login a:hover {
    color: var(--rn-red);
    text-decoration: underline;
}

.rn-collection-form {
    margin: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.rn-collection-form button {
    min-height: 46px;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 999px;
    font-weight: 900;
    line-height: 1;
    padding: 11px 20px;
    white-space: nowrap;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.rn-collection-form button:hover {
    transform: translateY(-1px);
}

.rn-collection-form.is-loading button {
    cursor: wait;
    opacity: 0.76;
}

.rn-collection-form__status {
    display: block;
    width: 100%;
    margin-top: 8px;
    color: var(--rn-muted);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.rn-collection-form__status:empty {
    display: none;
}

.rn-collection-form__status.is-success {
    color: var(--rn-teal);
}

.rn-collection-form__status.is-error {
    color: var(--rn-red-dark);
}

.rn-community-classification {
    display: grid;
    position: relative;
    width: min(100%, 470px);
    max-width: 100%;
    min-width: 0;
    height: auto;
    min-height: 0;
    gap: 8px;
    margin: 14px auto 0;
    overflow: hidden;
    border: 1px solid rgba(242, 207, 119, 0.3);
    border-radius: 8px;
    background:
        radial-gradient(circle at 16% -10%, rgba(242, 207, 119, 0.2), transparent 34%),
        linear-gradient(135deg, rgba(119, 21, 35, 0.97), rgba(51, 28, 32, 0.98) 48%, rgba(18, 20, 23, 0.98)),
        #2b1b20;
    color: #fff;
    box-shadow:
        0 12px 26px rgba(22, 27, 31, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    padding: 11px 12px;
}

.rn-community-classification,
.rn-community-classification * {
    box-sizing: border-box;
    min-width: 0;
}

.rn-community-classification::after {
    content: "";
    display: block;
    height: 2px;
    margin: 1px -12px -11px;
    background: linear-gradient(90deg, rgba(242, 207, 119, 0.92), rgba(184, 148, 70, 0.12));
}

.rn-release-section + .rn-community-classification {
    margin-top: 12px;
}

.rn-community-classification + .rn-release-section {
    margin-top: 22px;
}

.rn-community-classification__header {
    display: grid;
    gap: 2px;
}

.rn-community-classification__header p {
    margin: 0;
    color: #f2cf77;
    font-size: 11px;
    font-weight: 950;
    line-height: 1.2;
    text-transform: uppercase;
}

.rn-community-classification__header span,
.rn-community-classification__current span,
.rn-community-classification__current em,
.rn-community-classification__login p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.3;
}

.rn-community-classification__notice,
.rn-community-classification__status {
    display: block;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    font-weight: 900;
    line-height: 1.3;
}

.rn-community-classification__notice.is-success,
.rn-community-classification__status.is-success {
    color: #f2cf77;
}

.rn-community-classification__notice.is-error,
.rn-community-classification__status.is-error {
    color: #ffd3d8;
}

.rn-community-classification__status:empty {
    display: none;
}

.rn-community-classification__form {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
    margin: 0;
}

.rn-community-classification__form label {
    flex: 1 1 250px;
    min-width: 0;
}

.rn-community-classification__form select {
    width: 100%;
    min-height: 36px;
    border: 1px solid rgba(242, 207, 119, 0.38);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255, 246, 222, 0.93), rgba(236, 225, 203, 0.88));
    color: #302521;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        0 1px 4px rgba(10, 11, 13, 0.12);
    padding: 7px 11px;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
}

.rn-community-classification__form select:focus {
    border-color: rgba(242, 207, 119, 0.75);
    box-shadow:
        0 0 0 3px rgba(242, 207, 119, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
    outline: none;
}

.rn-community-classification__form button,
.rn-community-classification__results summary,
.rn-community-classification__change summary,
.rn-community-classification__login a {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(242, 207, 119, 0.78);
    border-radius: 999px;
    background: linear-gradient(135deg, #fff1b8, #d9ad46);
    color: #25171b;
    padding: 7px 13px;
    font: inherit;
    font-size: 12px;
    font-weight: 950;
    line-height: 1;
    max-width: 100%;
    text-decoration: none;
    text-align: center;
    white-space: normal;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.rn-community-classification__form button:hover,
.rn-community-classification__results summary:hover,
.rn-community-classification__change summary:hover,
.rn-community-classification__login a:hover {
    background: linear-gradient(135deg, #fff6ce, #e9bd54);
    color: #25171b;
    text-decoration: none;
    transform: translateY(-1px);
}

.rn-community-classification__form.is-loading button,
.rn-community-classification__form button:disabled {
    cursor: wait;
    opacity: 0.76;
}

.rn-community-classification__login {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
}

.rn-community-classification__login p {
    margin: 0;
}

.rn-community-classification__current {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 8px;
    align-items: center;
}

.rn-community-classification__current strong {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 16px;
    line-height: 1.15;
}

.rn-community-classification__current em {
    color: #f2cf77;
}

.rn-classification-icon {
    display: inline-flex;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.rn-classification-icon--essential {
    background: linear-gradient(135deg, #a81827, #f2cf77);
}

.rn-classification-icon--gem {
    background: linear-gradient(135deg, #c52a33, #ff9d4d);
}

.rn-classification-icon--favorite {
    background: linear-gradient(135deg, #8f6d24, #f2cf77);
}

.rn-classification-icon--night {
    background: linear-gradient(135deg, #293a63, #8f9dff);
}

.rn-classification-icon--discovery {
    background: linear-gradient(135deg, #1d6f74, #63c4aa);
}

.rn-community-classification__tools {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: flex-start;
    min-width: 0;
    max-width: 100%;
}

.rn-community-classification__change,
.rn-community-classification__results {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%;
    height: auto;
    min-height: 0;
}

.rn-community-classification__change summary,
.rn-community-classification__results summary {
    list-style: none;
}

.rn-community-classification__change summary::-webkit-details-marker,
.rn-community-classification__results summary::-webkit-details-marker {
    display: none;
}

.rn-community-classification__change summary::marker,
.rn-community-classification__results summary::marker {
    content: "";
}

.rn-community-classification__change[open],
.rn-community-classification__results[open] {
    flex-basis: 100%;
}

.rn-community-classification__change[open] summary,
.rn-community-classification__results[open] summary {
    margin-bottom: 8px;
}

.rn-community-classification__result-list {
    display: grid;
    gap: 7px;
    width: 100%;
    max-width: 100%;
    border: 1px solid rgba(242, 207, 119, 0.18);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(10, 11, 13, 0.28), rgba(255, 255, 255, 0.045));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    padding: 8px;
}

.rn-community-classification__result-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 5px 8px;
    align-items: center;
    min-height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.045);
    padding: 6px 7px;
}

.rn-community-classification__result-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.rn-community-classification__result-label span:not(.rn-classification-icon) {
    min-width: 0;
    overflow-wrap: anywhere;
}

.rn-community-classification__result-label .rn-classification-icon {
    width: 23px;
    height: 23px;
    flex-basis: 23px;
    font-size: 12px;
}

.rn-community-classification__result-bar {
    display: block;
    grid-column: 1 / -1;
    width: 100%;
    height: 3px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.rn-community-classification__result-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #f2cf77, rgba(217, 173, 70, 0.46));
}

.rn-community-classification__result-row strong {
    color: #f2cf77;
    font-size: 12px;
    font-weight: 950;
    text-align: right;
    white-space: nowrap;
}

.rn-collection-remove button {
    background: #4d565c;
}

.rn-collection-remove button:hover {
    background: #2f3539;
}

.rn-collection-login {
    margin: 0;
}

.rn-collection-login a {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rn-red);
    border-radius: 999px;
    background: var(--rn-red);
    color: #fff;
    padding: 11px 20px;
    transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.rn-collection-login a:hover {
    background: var(--rn-red-dark);
    border-color: var(--rn-red-dark);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.rn-collection-empty {
    display: grid;
    justify-items: start;
    gap: 14px;
    border: 1px solid var(--rn-line);
    border-left: 6px solid var(--rn-red);
    border-radius: 8px;
    background: #fff;
    padding: clamp(22px, 4vw, 38px);
    color: var(--rn-muted);
    font-weight: 700;
}

.rn-collection-empty--welcome {
    display: grid;
    gap: 16px;
    max-width: 760px;
}

.rn-collection-empty p {
    margin: 0;
    font-size: 18px;
    line-height: 1.45;
}

.rn-account-gateway {
    display: grid;
    gap: 18px;
    margin-top: 18px;
}

.rn-account-notice {
    border-radius: 8px;
    padding: 12px 14px;
    font-weight: 800;
}

.rn-account-notice--success {
    border: 1px solid rgba(29, 111, 116, 0.32);
    background: #edf8f8;
    color: #15595e;
}

.rn-account-notice--error {
    border: 1px solid rgba(168, 24, 39, 0.28);
    background: #fff3f4;
    color: var(--rn-red-dark);
}

.rn-auth-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 18px;
    align-items: start;
}

.rn-auth-card {
    display: grid;
    gap: 14px;
    border: 1px solid var(--rn-line);
    border-radius: 8px;
    background: #fff;
    padding: clamp(18px, 2.4vw, 28px);
}

.rn-auth-card h2,
.rn-auth-card p {
    margin: 0;
}

.rn-auth-card h2 {
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.08;
}

.rn-auth-card > p:not(.rn-account-eyebrow) {
    color: var(--rn-muted);
    line-height: 1.5;
}

.rn-auth-card label,
.rn-auth-forgot label {
    display: grid;
    gap: 6px;
    margin: 0;
    color: var(--rn-ink);
    font-weight: 800;
}

.rn-auth-card input {
    width: 100%;
    min-height: 46px;
    border: 1px solid #bfc8ce;
    border-radius: 8px;
    background: #fff;
    color: var(--rn-ink);
    padding: 10px 12px;
    font: inherit;
}

.rn-auth-card input:focus {
    border-color: var(--rn-red);
    box-shadow: 0 0 0 3px rgba(168, 24, 39, 0.12);
    outline: 0;
}

.rn-auth-card .rn-auth-opt-in {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--rn-muted);
    font-weight: 800;
    line-height: 1.4;
}

.rn-auth-card .rn-auth-opt-in input[type="checkbox"] {
    flex: 0 0 auto;
    width: 18px;
    min-width: 18px;
    max-width: 18px;
    height: 18px;
    min-height: 18px;
    margin: 2px 0 0;
    padding: 0;
    box-sizing: border-box;
    accent-color: var(--rn-red);
}

.rn-auth-submit,
.rn-auth-link-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 11px 20px;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.rn-auth-submit {
    border: 1px solid var(--rn-red);
    background: var(--rn-red);
    color: #fff;
}

.rn-auth-submit:hover {
    background: var(--rn-red-dark);
    border-color: var(--rn-red-dark);
}

.rn-auth-card--returning {
    gap: 18px;
}

.rn-auth-card--returning form {
    display: grid;
    gap: 14px;
}

.rn-auth-forgot {
    border-top: 1px solid var(--rn-line);
    padding-top: 18px;
}

.rn-auth-link-button {
    border: 1px solid var(--rn-line);
    background: #fff;
    color: var(--rn-ink);
}

.rn-auth-link-button:hover {
    border-color: var(--rn-red);
    color: var(--rn-red);
}

.rn-collection-auth-actions,
.rn-collection-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.rn-collection-primary-button,
.rn-collection-secondary-button,
.rn-collection-catalog-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 900;
    text-decoration: none;
}

.rn-collection-primary-button,
.rn-collection-catalog-button {
    border: 1px solid var(--rn-red);
    background: var(--rn-red);
    color: #fff;
}

.rn-collection-primary-button:hover,
.rn-collection-catalog-button:hover {
    background: var(--rn-red-dark);
    border-color: var(--rn-red-dark);
    color: #fff;
    text-decoration: none;
}

.rn-collection-secondary-button {
    border: 1px solid var(--rn-line);
    background: #fff;
    color: var(--rn-ink);
}

.rn-collection-secondary-button:hover {
    border-color: var(--rn-red);
    color: var(--rn-red);
    text-decoration: none;
}

.rn-collection-toolbar {
    justify-content: space-between;
    margin-bottom: 18px;
}

.rn-collection-toolbar__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.rn-collection-toolbar p {
    margin: 0;
    color: var(--rn-muted);
    font-size: 15px;
    font-weight: 900;
}

.rn-collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: stretch;
    gap: 24px;
}

.rn-collection-item {
    min-width: 0;
}

.rn-collection-card {
    box-sizing: border-box;
    display: flex;
    min-width: 0;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--rn-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(22, 27, 31, 0.08);
}

.rn-collection-card__image-link {
    display: block;
    background: #e9eef0;
    text-decoration: none;
}

.rn-collection-card__image,
.rn-collection-card__placeholder {
    display: flex;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    align-items: center;
    justify-content: center;
}

.rn-collection-card__placeholder {
    background: linear-gradient(135deg, #24272a, #6f161f);
    color: #fff;
    font-size: 22px;
    font-weight: 900;
}

.rn-collection-card__body {
    display: grid;
    gap: 12px;
    height: 100%;
    padding: 18px;
}

.rn-collection-card__catalog {
    justify-self: start;
    border: 1px solid rgba(168, 24, 39, 0.18);
    border-radius: 999px;
    background: #fff7f7;
    color: var(--rn-red);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
}

.rn-collection-card__title {
    margin: 0;
    font-size: 22px;
    line-height: 1.18;
}

.rn-collection-card__title a {
    color: var(--rn-ink);
    text-decoration: none;
}

.rn-collection-card__title a:hover {
    color: var(--rn-red);
    text-decoration: underline;
}

.rn-collection-card__collected {
    color: var(--rn-gold);
    font-size: 13px;
    font-weight: 900;
}

.rn-collection-card__meta {
    display: grid;
    gap: 8px;
    margin: 0;
    color: var(--rn-ink);
}

.rn-collection-card__meta div {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 10px;
}

.rn-collection-card__meta dt {
    color: var(--rn-muted);
    font-size: 13px;
    font-weight: 900;
}

.rn-collection-card__meta dd {
    margin: 0;
    min-width: 0;
    overflow-wrap: anywhere;
    font-weight: 700;
}

.rn-collection-card__meta a {
    color: inherit;
    text-decoration: none;
}

.rn-collection-card__meta a:hover {
    color: var(--rn-red);
    text-decoration: underline;
}

.rn-collection-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    min-width: 0;
    margin-top: auto;
    padding-top: 4px;
}

.rn-collection-card__button {
    display: inline-flex;
    flex: 1 1 180px;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rn-red);
    border-radius: 999px;
    background: var(--rn-red);
    color: #fff;
    padding: 10px 18px;
    font-weight: 900;
    text-decoration: none;
}

.rn-collection-card__actions .rn-collection-form {
    flex: 1 1 180px;
    width: auto;
    min-width: 0;
}

.rn-collection-card__button:hover {
    background: var(--rn-red-dark);
    border-color: var(--rn-red-dark);
    color: #fff;
    text-decoration: none;
}

.rn-collection-card__remove button {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--rn-line);
    background: #fff;
    color: var(--rn-ink);
}

.rn-collection-card__remove button:hover {
    border-color: var(--rn-red);
    background: #fff7f7;
    color: var(--rn-red);
}

.rn-collection-item .rn-collection-card {
    height: 100%;
}

.rn-account {
    display: grid;
    gap: clamp(32px, 4vw, 42px);
}

.rn-account-hero {
    display: grid;
    gap: 8px;
    border-bottom: 1px solid var(--rn-line);
    padding-bottom: 20px;
}

.rn-account-hero__lede {
    max-width: 820px;
    margin: 0;
    color: var(--rn-ink);
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 900;
    line-height: 1.08;
}

.rn-account-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.55fr) auto;
    gap: 18px;
    align-items: center;
    border: 1px solid var(--rn-line);
    border-left: 6px solid var(--rn-red);
    border-radius: 8px;
    background: linear-gradient(135deg, #fff, #fbfcfb);
    box-shadow: 0 16px 42px rgba(22, 27, 31, 0.08);
    padding: clamp(22px, 3vw, 34px);
}

.rn-account-profile {
    display: flex;
    gap: 14px;
    align-items: center;
    min-width: 0;
}

.rn-account-avatar {
    display: inline-flex;
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rn-red);
    color: #fff;
    font-size: 24px;
    font-weight: 900;
}

.rn-member-avatar {
    overflow: hidden;
}

.rn-member-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rn-member-avatar span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.rn-account-profile__main {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.rn-account-eyebrow {
    margin: 0 0 5px;
    color: var(--rn-red);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.rn-account-panel h2,
.rn-account-collection h2 {
    margin: 0;
}

.rn-account-panel h2 {
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.1;
}

.rn-collector-name-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: var(--rn-muted);
    font-weight: 800;
}

.rn-collector-name-row strong {
    color: var(--rn-ink);
}

.rn-collector-name-editor summary {
    color: var(--rn-teal);
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

.rn-collector-name-editor summary:hover {
    color: var(--rn-red);
}

.rn-collector-name-editor summary::-webkit-details-marker,
.rn-achievements-details summary::-webkit-details-marker {
    display: none;
}

.rn-collector-name-editor summary::marker,
.rn-achievements-details summary::marker {
    content: "";
}

.rn-collector-name-editor summary::before,
.rn-collector-name-editor summary::after,
.rn-achievements-details summary::before,
.rn-achievements-details summary::after {
    content: none !important;
    display: none !important;
}

.rn-collector-name-form {
    display: grid;
    gap: 8px;
    min-width: min(320px, 100%);
    margin-top: 10px;
}

.rn-collector-name-form label {
    display: grid;
    gap: 5px;
    color: var(--rn-ink);
    font-weight: 800;
}

.rn-collector-name-form input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 42px;
    border: 1px solid #bfc8ce;
    border-radius: 8px;
    padding: 8px 10px;
    font: inherit;
}

.rn-collector-name-form button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rn-red);
    border-radius: 999px;
    background: var(--rn-red);
    color: #fff;
    padding: 9px 16px;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.rn-collector-name-form button:hover {
    background: var(--rn-red-dark);
    border-color: var(--rn-red-dark);
}

.rn-profile-image-editor {
    margin-top: 4px;
}

.rn-profile-image-editor summary {
    color: var(--rn-teal);
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

.rn-profile-image-editor summary:hover {
    color: var(--rn-red);
}

.rn-profile-image-editor summary::-webkit-details-marker {
    display: none;
}

.rn-profile-image-editor summary::marker {
    content: "";
}

.rn-profile-image-form {
    display: grid;
    gap: 8px;
    width: min(360px, 100%);
    margin-top: 10px;
}

.rn-profile-image-form label {
    display: grid;
    gap: 6px;
    color: var(--rn-ink);
    font-weight: 800;
}

.rn-profile-image-form input[type="file"] {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border: 1px dashed #bfc8ce;
    border-radius: 8px;
    background: #fff;
    padding: 10px;
    font: inherit;
}

.rn-profile-image-form p {
    margin: 0;
    color: var(--rn-muted);
    font-size: 13px;
    font-weight: 700;
}

.rn-profile-image-form button {
    justify-self: start;
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rn-red);
    border-radius: 999px;
    background: var(--rn-red);
    color: #fff;
    padding: 9px 16px;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.rn-profile-image-form button:hover {
    background: var(--rn-red-dark);
    border-color: var(--rn-red-dark);
}

.rn-account-details {
    display: grid;
    gap: 8px;
    margin: 0;
}

.rn-account-details div {
    display: grid;
    grid-template-columns: minmax(96px, max-content) minmax(0, 1fr);
    gap: 8px;
}

.rn-account-details dt {
    color: var(--rn-muted);
    font-weight: 800;
}

.rn-account-details dd {
    margin: 0;
    overflow-wrap: anywhere;
}

.rn-account-logout {
    justify-self: end;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rn-line);
    border-radius: 999px;
    background: #fff;
    color: var(--rn-ink);
    padding: 10px 18px;
    font-weight: 900;
    text-decoration: none;
}

.rn-account-logout:hover {
    border-color: var(--rn-red);
    color: var(--rn-red);
    text-decoration: none;
}

.rn-account-collection {
    display: grid;
    gap: 20px;
    margin-top: clamp(4px, 1.5vw, 12px);
}

.rn-account-collection > .rn-collection {
    max-width: none;
    margin: 0;
    padding: 0;
}

.rn-member-profile {
    display: grid;
    gap: clamp(24px, 3vw, 36px);
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(24px, 4vw, 46px) clamp(16px, 3vw, 28px) clamp(36px, 5vw, 68px);
}

.rn-member-profile__hero {
    display: grid;
    grid-template-columns: auto minmax(280px, 1fr) minmax(320px, 0.92fr);
    gap: clamp(22px, 3.5vw, 42px);
    align-items: center;
    border: 1px solid rgba(184, 148, 70, 0.35);
    border-left: 6px solid var(--rn-red);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(168, 24, 39, 0.92), rgba(24, 26, 29, 0.96)),
        #271b1f;
    color: #fff;
    box-shadow: 0 20px 48px rgba(16, 18, 20, 0.18);
    padding: clamp(28px, 4.5vw, 46px);
}

.rn-member-profile__hero .rn-account-eyebrow {
    color: #f2cf77;
}

.rn-member-profile__hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 0.98;
}

.rn-member-profile__intro {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.rn-member-profile__intro .rn-account-eyebrow {
    margin: 0;
}

.rn-member-profile__hero-trophy {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.rn-member-profile__hero-trophy .rn-account-eyebrow {
    margin: 0;
}

.rn-member-profile__hero-trophy-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    min-width: 0;
    border: 1px solid rgba(242, 207, 119, 0.62);
    border-left: 5px solid #f2cf77;
    border-radius: 8px;
    background:
        radial-gradient(circle at 0% 0%, rgba(242, 207, 119, 0.28), transparent 38%),
        linear-gradient(135deg, rgba(255, 248, 231, 0.2), rgba(13, 14, 16, 0.26)),
        rgba(31, 18, 22, 0.7);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 20px 46px rgba(0, 0, 0, 0.3),
        0 0 38px rgba(242, 207, 119, 0.13);
    padding: clamp(20px, 2.8vw, 28px);
}

.rn-member-profile__hero-trophy-card.is-empty {
    border-color: rgba(242, 207, 119, 0.28);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(13, 14, 16, 0.16)),
        rgba(255, 255, 255, 0.06);
}

.rn-member-profile__hero-trophy-card--listener {
    border-color: rgba(242, 207, 119, 0.28);
}

.rn-member-profile__hero-trophy-icon {
    display: inline-flex;
    width: 66px;
    height: 66px;
    flex: 0 0 66px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 248, 231, 0.62);
    background:
        radial-gradient(circle at 32% 24%, #fff6ce, #f2cf77 42%, #b89446 100%);
    color: #25171b;
    font-size: 28px;
    font-weight: 950;
    line-height: 1;
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.32),
        0 0 28px rgba(242, 207, 119, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.rn-member-profile__hero-trophy-card--listener .rn-member-profile__hero-trophy-icon {
    background: linear-gradient(135deg, #1d6f74, #f2cf77);
}

.rn-member-profile__hero-trophy-card strong {
    display: block;
    color: #fff;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.08;
}

.rn-member-profile__hero-trophy-card em,
.rn-member-profile__hero-trophy-card span:not(.rn-member-profile__hero-trophy-icon) {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.35;
}

.rn-member-profile__hero-trophy-card em {
    color: #f2cf77;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.rn-member-profile__avatar {
    width: clamp(88px, 10vw, 132px);
    height: clamp(88px, 10vw, 132px);
    flex-basis: clamp(88px, 10vw, 132px);
    border: 3px solid rgba(242, 207, 119, 0.82);
    border-radius: 50%;
    background: rgba(242, 207, 119, 0.14);
    color: #f2cf77;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 950;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.rn-member-profile__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.rn-member-profile__actions .rn-collection-secondary-button {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

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

.rn-member-profile__stats .rn-collector-stat--rank {
    border-color: rgba(184, 148, 70, 0.42);
    background: linear-gradient(135deg, #fff8e7, #ffffff);
}

.rn-member-profile__stats .rn-collector-stat--rank strong {
    color: #8f1a25;
    font-size: clamp(20px, 2vw, 28px);
}

.rn-member-profile__section {
    display: grid;
    gap: 18px;
    border: 1px solid var(--rn-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(22, 27, 31, 0.08);
    padding: clamp(20px, 3vw, 32px);
}

.rn-member-profile__section-title {
    margin: 0;
    color: var(--rn-ink);
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.1;
}

.rn-member-profile__trophy-showcase {
    border-color: rgba(184, 148, 70, 0.3);
    background:
        linear-gradient(135deg, rgba(255, 248, 231, 0.7), rgba(255, 255, 255, 0.96)),
        #fff;
}

.rn-member-profile__recent-trophies {
    display: grid;
    gap: 14px;
}

.rn-member-profile__recent-trophies h2,
.rn-member-profile__trophy-group h2 {
    margin: 0;
    color: var(--rn-ink);
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.1;
}

.rn-member-profile__recent-trophies p,
.rn-member-profile__empty-note {
    margin: 0;
    color: var(--rn-muted);
    font-weight: 800;
}

.rn-member-profile__recent-trophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
}

.rn-member-profile__recent-trophy {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    border: 1px solid rgba(184, 148, 70, 0.56);
    border-left: 4px solid var(--rn-gold);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 248, 231, 0.98), rgba(255, 255, 255, 0.98)),
        #fff;
    box-shadow: 0 14px 30px rgba(184, 148, 70, 0.16);
    padding: 15px;
}

.rn-member-profile__recent-trophy-icon {
    display: inline-flex;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 24%, #fff6ce, var(--rn-gold) 44%, var(--rn-red) 100%);
    color: #25171b;
    font-size: 19px;
    font-weight: 950;
    line-height: 1;
}

.rn-member-profile__recent-trophy--listener .rn-member-profile__recent-trophy-icon {
    background: linear-gradient(135deg, #1d6f74, var(--rn-gold));
}

.rn-member-profile__recent-trophy div {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.rn-member-profile__recent-trophy span {
    color: #8f6d24;
    font-size: 11px;
    font-weight: 950;
    line-height: 1.25;
    text-transform: uppercase;
}

.rn-member-profile__recent-trophy .rn-member-profile__recent-trophy-icon {
    color: #25171b;
    font-size: 19px;
    line-height: 1;
    text-transform: none;
}

.rn-member-profile__recent-trophy strong {
    color: var(--rn-ink);
    font-size: 18px;
    line-height: 1.18;
    overflow-wrap: anywhere;
}

.rn-member-profile__recent-trophy time {
    color: var(--rn-muted);
    font-size: 13px;
    font-weight: 800;
}

.rn-member-profile__trophy-group {
    display: grid;
    gap: 14px;
    margin-top: clamp(12px, 2vw, 20px);
}

.rn-member-profile__trophy-group .rn-achievement-badges {
    gap: 12px;
}

.rn-member-profile__trophy-group .rn-achievement-badge {
    border-radius: 8px;
    padding: 15px;
}

.rn-member-profile__trophy-group--listener .rn-achievement-badge.is-earned {
    border-color: rgba(168, 24, 39, 0.35);
    background: linear-gradient(135deg, #fff3dc, #ffffff);
}

.rn-member-profile__album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 14px;
}

.rn-member-profile__album-card {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--rn-line);
    border-radius: 8px;
    background: linear-gradient(180deg, #fff, #fbf8f0);
    box-shadow: 0 12px 28px rgba(22, 27, 31, 0.08);
}

.rn-member-profile__album-image {
    display: block;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #24272a, #6f161f);
    color: #fff;
    text-decoration: none;
    transition: transform 160ms ease, filter 160ms ease;
}

.rn-member-profile__album-card:hover .rn-member-profile__album-image {
    filter: saturate(1.05) contrast(1.03);
    transform: scale(1.015);
}

.rn-member-profile__album-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rn-member-profile__album-image span {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-weight: 950;
}

.rn-member-profile__album-body {
    display: grid;
    gap: 7px;
    padding: 12px;
}

.rn-member-profile__album-catalog {
    color: var(--rn-red);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.rn-member-profile__album-body h3 {
    margin: 0;
    color: var(--rn-ink);
    font-size: 15.5px;
    line-height: 1.18;
}

.rn-member-profile__album-body h3 a {
    color: inherit;
    text-decoration-color: rgba(168, 24, 39, 0.35);
}

.rn-member-profile__album-body p,
.rn-member-profile__album-body em,
.rn-member-profile__album-body time {
    margin: 0;
    color: var(--rn-muted);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.35;
}

.rn-member-profile__album-link {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--rn-red);
    color: #fff;
    font-size: 11px;
    font-weight: 950;
    line-height: 1;
    padding: 8px 11px;
    text-decoration: none;
    text-transform: uppercase;
}

.rn-member-profile__album-link:hover {
    background: var(--rn-red-dark);
    color: #fff;
    text-decoration: none;
}

.rn-member-profile--empty {
    max-width: 760px;
    justify-items: start;
    border: 1px solid var(--rn-line);
    border-left: 6px solid var(--rn-red);
    border-radius: 8px;
    background: #fff;
}

.rn-member-profile--empty h1 {
    margin: 0;
}

.rn-member-profile .rn-collection-form,
.rn-member-profile .rn-collection-card__remove {
    display: none !important;
}

.rn-member-profile-page .rn-collection-form,
.rn-member-profile-page .rn-collection-card__remove,
.rn-member-profile-page .rn-curated-list-view__owner-tools,
.rn-member-profile-page .rn-curated-list-view__remove-form,
.rn-member-profile-page .rn-curated-manager__links {
    display: none !important;
}

.rn-member-profile__follow-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(184, 148, 70, 0.28);
    border-radius: 8px;
    background: linear-gradient(135deg, #fff8e7, #ffffff);
    box-shadow: 0 12px 28px rgba(22, 27, 31, 0.07);
    padding: 14px 16px;
}

.rn-member-profile__follow-counts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.rn-member-profile__follow-counts span {
    display: inline-flex;
    gap: 5px;
    align-items: baseline;
    color: var(--rn-muted);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.rn-member-profile__follow-counts strong {
    color: var(--rn-red-dark);
    font-size: 20px;
    line-height: 1;
}

.rn-member-profile__follow-form {
    display: grid;
    gap: 7px;
    margin: 0;
}

.rn-member-profile__follow-form button,
.rn-member-profile__follow-login {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(168, 24, 39, 0.28);
    border-radius: 999px;
    background: var(--rn-red);
    color: #fff;
    font-size: 12px;
    font-weight: 950;
    line-height: 1;
    padding: 11px 16px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(168, 24, 39, 0.16);
}

.rn-member-profile__follow-form button.is-following {
    border-color: rgba(184, 148, 70, 0.44);
    background: #2a2023;
}

.rn-member-profile__follow-form button:disabled {
    cursor: default;
    opacity: 0.72;
}

.rn-member-profile__follow-status {
    display: block;
    color: var(--rn-muted);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.35;
}

.rn-member-profile__follow-status.is-success {
    color: #7a1520;
}

.rn-member-profile__follow-status.is-error {
    color: var(--rn-red-dark);
}

.rn-member-profile__follow-form button:hover,
.rn-member-profile__follow-login:hover {
    background: var(--rn-red-dark);
    color: #fff;
    text-decoration: none;
}

.rn-member-profile__discovery-link {
    display: flex;
    justify-content: flex-end;
    margin-top: -10px;
}

.rn-member-profile__discovery-link a,
.rn-discovery-card__profile,
.rn-discovery-card__follow-login,
.rn-discovery-card__follow-form button,
.rn-discovery-search button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(184, 148, 70, 0.42);
    border-radius: 999px;
    background: #fff4d8;
    color: #4c171d;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0;
    line-height: 1.1;
    padding: 11px 16px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(22, 27, 31, 0.08);
}

.rn-member-profile__discovery-link a:hover,
.rn-discovery-card__profile:hover,
.rn-discovery-card__follow-login:hover,
.rn-discovery-card__follow-form button:hover,
.rn-discovery-search button:hover {
    background: var(--rn-red);
    color: #fff;
    text-decoration: none;
}

.rn-discovery {
    display: grid;
    gap: 28px;
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(18px, 3vw, 34px);
}

.rn-discovery,
.rn-discovery * {
    box-sizing: border-box;
}

.rn-discovery__hero {
    display: grid;
    gap: 10px;
    overflow: hidden;
    border: 1px solid rgba(184, 148, 70, 0.34);
    border-radius: 10px;
    background:
        radial-gradient(circle at 88% 12%, rgba(242, 207, 119, 0.18), transparent 32%),
        linear-gradient(135deg, #8d1825 0%, #4b161d 52%, #171719 100%);
    color: #fff9e8;
    padding: clamp(24px, 4vw, 42px);
    box-shadow: 0 22px 46px rgba(22, 27, 31, 0.18);
}

.rn-discovery__hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.02;
}

.rn-discovery__hero p:not(.rn-account-eyebrow) {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 249, 232, 0.86);
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.5;
}

.rn-discovery-search {
    display: grid;
    gap: 10px;
    border: 1px solid rgba(184, 148, 70, 0.28);
    border-radius: 10px;
    background: linear-gradient(135deg, #fff8e7, #fffdf7);
    padding: 18px;
    box-shadow: 0 14px 30px rgba(22, 27, 31, 0.08);
}

.rn-discovery-search label {
    color: #6e1520;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.rn-discovery-search > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.rn-discovery-search input {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(184, 148, 70, 0.35);
    border-radius: 999px;
    background: #fff;
    color: var(--rn-ink);
    font: inherit;
    padding: 11px 16px;
}

.rn-discovery__sections,
.rn-discovery-section {
    display: grid;
    gap: 18px;
}

.rn-discovery-section {
    border-top: 1px solid rgba(184, 148, 70, 0.24);
    padding-top: 22px;
}

.rn-discovery-section__header {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 10px;
}

.rn-discovery-section__header span {
    color: var(--rn-muted);
    font-size: 14px;
    font-weight: 700;
}

.rn-discovery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 16px;
}

.rn-discovery-card {
    display: grid;
    gap: 15px;
    min-width: 0;
    border: 1px solid rgba(184, 148, 70, 0.3);
    border-radius: 10px;
    background:
        radial-gradient(circle at 8% 0, rgba(242, 207, 119, 0.16), transparent 34%),
        linear-gradient(135deg, #fff8e7, #ffffff);
    box-shadow: 0 16px 34px rgba(22, 27, 31, 0.09);
    padding: 16px;
}

.rn-discovery-card__top {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 13px;
    align-items: center;
}

.rn-discovery-card__avatar {
    width: 64px;
    height: 64px;
    border: 2px solid rgba(184, 148, 70, 0.54);
    box-shadow: 0 10px 20px rgba(22, 27, 31, 0.12);
}

.rn-discovery-card__top span,
.rn-discovery-card__achievement span {
    display: block;
    color: #8a1b27;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}

.rn-discovery-card h3 {
    margin: 3px 0 0;
    color: #23191b;
    font-size: 22px;
    line-height: 1.12;
}

.rn-discovery-card__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
}

.rn-discovery-card__stats div {
    border: 1px solid rgba(184, 148, 70, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.58);
    padding: 9px;
}

.rn-discovery-card__stats dt {
    color: var(--rn-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.rn-discovery-card__stats dd {
    margin: 2px 0 0;
    color: #23191b;
    font-size: 18px;
    font-weight: 950;
}

.rn-discovery-card__achievement {
    border-left: 4px solid var(--rn-gold);
    border-radius: 8px;
    background: rgba(80, 27, 34, 0.06);
    padding: 10px 12px;
}

.rn-discovery-card__achievement strong {
    display: block;
    margin-top: 3px;
    color: #25171b;
    font-size: 14px;
    line-height: 1.25;
}

.rn-discovery-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
}

.rn-discovery-card__profile {
    background: var(--rn-red);
    color: #fff;
}

.rn-discovery-card__follow-form {
    margin: 0;
}

.rn-discovery-card__follow-form button.is-following {
    background: #292124;
    color: #fff;
}

.rn-discovery-card__self {
    color: var(--rn-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.rn-discovery__empty {
    margin: 0;
    border: 1px dashed rgba(184, 148, 70, 0.38);
    border-radius: 8px;
    background: #fff8e7;
    color: var(--rn-muted);
    padding: 16px;
}

.rn-member-activity-feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
    gap: 14px;
    min-width: 0;
}

.rn-member-activity-feed,
.rn-member-activity-feed * {
    box-sizing: border-box;
}

.rn-member-activity-feed__item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 13px;
    align-items: start;
    min-width: 0;
    border: 1px solid rgba(184, 148, 70, 0.32);
    border-left: 4px solid rgba(168, 24, 39, 0.72);
    border-radius: 8px;
    background:
        radial-gradient(circle at 0 0, rgba(242, 207, 119, 0.14), transparent 36%),
        linear-gradient(135deg, #fff8e7, #fffdf7);
    box-shadow: 0 14px 30px rgba(22, 27, 31, 0.08);
    padding: 14px;
}

.rn-member-activity-feed__item--trophy {
    grid-template-columns: auto minmax(0, 1fr);
    border-left-color: var(--rn-gold);
}

.rn-member-activity-feed__icon {
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 248, 231, 0.72);
    background:
        radial-gradient(circle at 32% 24%, #fff6ce, var(--rn-gold) 44%, var(--rn-red) 100%);
    color: #25171b;
    font-size: 18px;
    font-weight: 950;
    line-height: 1;
    text-align: center;
    box-shadow:
        0 10px 22px rgba(184, 148, 70, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.rn-member-activity-feed__thumb {
    display: flex;
    width: 72px;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(184, 148, 70, 0.35);
    border-radius: 7px;
    background: linear-gradient(135deg, #24272a, #7a1520);
    color: #f2cf77;
    font-size: 13px;
    font-weight: 950;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(22, 27, 31, 0.12);
}

.rn-member-activity-feed__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rn-member-activity-feed__thumb span {
    color: #f2cf77;
}

.rn-member-activity-feed__body {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.rn-member-activity-feed__body > span {
    color: #8f6d24;
    font-size: 11px;
    font-weight: 950;
    line-height: 1.2;
    text-transform: uppercase;
}

.rn-member-activity-feed__body strong,
.rn-member-activity-feed__body a {
    color: var(--rn-ink);
    font-size: 16px;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.rn-member-activity-feed__body a:hover {
    color: var(--rn-red);
    text-decoration-color: rgba(168, 24, 39, 0.45);
}

.rn-member-activity-feed__item time {
    color: var(--rn-muted);
    font-size: 12px;
    font-weight: 800;
}

.rn-curated-list-grid,
.rn-curated-manager__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.rn-curated-list-card,
.rn-curated-manager__card {
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(184, 148, 70, 0.3);
    border-radius: 8px;
    background: linear-gradient(180deg, #fffaf0, #ffffff);
    box-shadow: 0 12px 28px rgba(22, 27, 31, 0.08);
}

.rn-curated-list-card--link {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.rn-curated-list-card--link:hover,
.rn-curated-list-card--link:focus-visible {
    border-color: rgba(168, 24, 39, 0.42);
    box-shadow: 0 18px 34px rgba(22, 27, 31, 0.12);
    transform: translateY(-2px);
}

.rn-curated-list-card__covers {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3px;
    background: #1f1417;
    padding: 5px;
}

.rn-curated-list-card__covers span {
    display: flex;
    aspect-ratio: 1 / 1;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 5px;
    background: linear-gradient(135deg, #24272a, #7a1520);
    color: #f2cf77;
    font-size: 12px;
    font-weight: 950;
}

.rn-curated-list-card__covers img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rn-curated-list-card__covers i {
    font-style: normal;
}

.rn-curated-list-card__body,
.rn-curated-manager__card-body {
    display: grid;
    gap: 7px;
    padding: 14px;
}

.rn-curated-list-card__body span,
.rn-curated-manager__card-body > span {
    color: var(--rn-red);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}

.rn-curated-list-card__body h3,
.rn-curated-manager__card-body h3 {
    margin: 0;
    color: var(--rn-ink);
    font-size: 18px;
    line-height: 1.12;
}

.rn-curated-list-card__body p,
.rn-curated-manager__card-body p,
.rn-curated-manager__empty {
    margin: 0;
    color: var(--rn-muted);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.38;
}

.rn-curated-manager__list-header {
    display: grid;
    gap: 6px;
    margin-top: 12px;
    border-top: 1px solid rgba(184, 148, 70, 0.26);
    padding-top: 24px;
}

.rn-curated-manager__list-header h3 {
    margin: 0;
    color: var(--rn-ink);
    font-size: clamp(24px, 2.4vw, 32px);
    line-height: 1.08;
}

.rn-curated-manager__list-header span {
    color: var(--rn-muted);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.38;
}

.rn-curated-manager__links {
    display: grid;
    gap: 7px;
    margin-top: 4px;
}

.rn-curated-list-card__button,
.rn-curated-manager__open-link,
.rn-curated-manager__edit-link {
    display: inline-flex;
    min-height: 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--rn-red);
    color: #fff;
    font-size: 12px;
    font-weight: 950;
    line-height: 1;
    margin-top: 4px;
    padding: 11px 14px;
    text-decoration: none;
    text-transform: uppercase;
}

.rn-curated-manager__edit-link {
    border: 1px solid rgba(168, 24, 39, 0.28);
    background: #fff8e7;
    color: var(--rn-red-dark);
}

.rn-curated-manager__open-link:hover,
.rn-curated-manager__edit-link:hover {
    background: var(--rn-red-dark);
    color: #fff;
    text-decoration: none;
}

.rn-curated-manager {
    display: grid;
    gap: 18px;
    border: 1px solid rgba(184, 148, 70, 0.28);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 248, 231, 0.72), rgba(255, 255, 255, 0.98)),
        #fff;
    box-shadow: 0 16px 42px rgba(22, 27, 31, 0.08);
    margin-top: clamp(34px, 5vw, 54px);
    padding: clamp(20px, 3vw, 32px);
}

.rn-curated-manager__form,
.rn-curated-manager__add-form {
    display: grid;
    gap: 12px;
}

.rn-curated-manager__form {
    grid-template-columns: minmax(180px, 1fr) minmax(220px, 1.4fr) minmax(150px, .65fr) auto;
    align-items: end;
    margin-bottom: 8px;
}

.rn-curated-manager__form label,
.rn-curated-manager__add-form label {
    display: grid;
    gap: 5px;
    margin: 0;
}

.rn-curated-manager__form span,
.rn-curated-manager__add-form span {
    color: var(--rn-muted);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.rn-curated-manager__hint {
    color: #7a1520;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
}

.rn-curated-manager__form input,
.rn-curated-manager__form textarea,
.rn-curated-manager__form select,
.rn-curated-manager__add-form select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--rn-line);
    border-radius: 7px;
    background: #fffdf7;
    color: var(--rn-ink);
    font: inherit;
    font-weight: 700;
    padding: 10px 11px;
}

.rn-curated-manager__form button,
.rn-curated-manager__add-form button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: var(--rn-red);
    color: #fff;
    font-size: 12px;
    font-weight: 950;
    line-height: 1;
    padding: 12px 16px;
    text-transform: uppercase;
}

.rn-curated-manager__form button:disabled,
.rn-curated-manager__add-form button:disabled {
    cursor: default;
    opacity: 0.72;
}

.rn-curated-manager__add-form {
    margin-top: 6px;
}

.rn-curated-manager__inline-status {
    display: block;
    min-height: 18px;
    color: var(--rn-muted);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.35;
}

.rn-curated-manager__inline-status.is-success {
    color: #7a1520;
}

.rn-curated-manager__inline-status.is-error {
    color: var(--rn-red-dark);
}

.rn-curated-manager__notice {
    margin: 0;
    border-radius: 8px;
    padding: 11px 13px;
    font-weight: 900;
}

.rn-curated-manager__notice--success {
    border: 1px solid rgba(184, 148, 70, 0.35);
    background: #fff8e7;
    color: #7a1520;
}

.rn-curated-manager__notice--error {
    border: 1px solid rgba(168, 24, 39, 0.24);
    background: #fff1f2;
    color: var(--rn-red-dark);
}

.rn-curated-list-view {
    display: grid;
    gap: clamp(18px, 3vw, 28px);
    min-width: 0;
    border: 1px solid rgba(184, 148, 70, 0.32);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 248, 231, 0.84), rgba(255, 255, 255, 0.98)),
        #fff;
    box-shadow: 0 18px 44px rgba(22, 27, 31, 0.09);
    padding: clamp(20px, 3vw, 34px);
}

.rn-curated-list-view__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(18px, 3vw, 30px);
    align-items: start;
}

.rn-curated-list-view__header .rn-account-eyebrow {
    margin-bottom: 13px;
}

.rn-curated-list-view__header h1 {
    margin: 0;
    color: var(--rn-ink);
    font-size: clamp(30px, 5vw, 54px);
    line-height: 1;
}

.rn-curated-list-view__header p {
    max-width: 760px;
    margin: 14px 0 0;
    color: var(--rn-muted);
    font-weight: 800;
    line-height: 1.45;
}

.rn-curated-list-view__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.rn-curated-list-view__meta span,
.rn-curated-list-view__meta a {
    border: 1px solid rgba(184, 148, 70, 0.28);
    border-radius: 999px;
    background: #fffaf0;
    color: #7a1520;
    font-size: 12px;
    font-weight: 950;
    line-height: 1;
    padding: 8px 10px;
    text-decoration: none;
}

.rn-curated-list-view__badge {
    background: linear-gradient(135deg, #fff4d8, #fffaf0) !important;
}

.rn-curated-list-view__badge strong {
    font-weight: 950;
}

.rn-curated-list-view__curator {
    border-color: rgba(168, 24, 39, 0.18) !important;
    background: rgba(255, 255, 255, 0.58) !important;
    color: #392226 !important;
}

.rn-curated-list-view__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    padding-top: 4px;
}

.rn-curated-list-view__back-link {
    border-color: rgba(184, 148, 70, 0.42) !important;
    background: #fff4d8 !important;
    color: #4c171d !important;
    box-shadow: 0 10px 20px rgba(22, 27, 31, 0.08);
}

.rn-curated-list-view__back-link:hover {
    background: var(--rn-red-dark) !important;
    color: #fff !important;
}

.rn-curated-list-view__owner-tools {
    display: grid;
    gap: 12px;
    border: 1px solid rgba(184, 148, 70, 0.28);
    border-radius: 8px;
    background: rgba(255, 248, 231, 0.72);
    padding: 14px;
}

.rn-curated-list-view__edit-panel {
    display: grid;
    gap: 12px;
}

.rn-curated-list-view__edit-panel summary {
    cursor: pointer;
    color: var(--rn-red);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
}

.rn-curated-list-view__edit-form,
.rn-curated-list-view__delete-form {
    display: grid;
    gap: 10px;
}

.rn-curated-list-view__edit-form label {
    display: grid;
    gap: 5px;
    margin: 0;
}

.rn-curated-list-view__edit-form span {
    color: var(--rn-muted);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.rn-curated-list-view__edit-form input,
.rn-curated-list-view__edit-form textarea,
.rn-curated-list-view__edit-form select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--rn-line);
    border-radius: 7px;
    background: #fffdf7;
    color: var(--rn-ink);
    font: inherit;
    font-weight: 700;
    padding: 10px 11px;
}

.rn-curated-list-view__edit-form small {
    color: #7a1520;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
}

.rn-curated-list-view__edit-form button,
.rn-curated-list-view__delete-form button {
    display: inline-flex;
    min-height: 42px;
    width: fit-content;
    max-width: 100%;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: var(--rn-red);
    color: #fff;
    font-size: 12px;
    font-weight: 950;
    line-height: 1;
    padding: 12px 16px;
    text-transform: uppercase;
}

.rn-curated-list-view__delete-form button {
    border: 1px solid rgba(168, 24, 39, 0.28);
    background: #fff8e7;
    color: var(--rn-red-dark);
}

.rn-curated-list-view__edit-form button:disabled,
.rn-curated-list-view__delete-form button:disabled {
    cursor: default;
    opacity: 0.72;
}

.rn-curated-list-view__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
    gap: 16px;
    min-width: 0;
}

.rn-curated-list-view__album {
    display: grid;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(184, 148, 70, 0.3);
    border-radius: 8px;
    background: linear-gradient(180deg, #fffaf0, #ffffff);
    box-shadow: 0 12px 28px rgba(22, 27, 31, 0.08);
}

.rn-curated-list-view__album-cover {
    display: flex;
    aspect-ratio: 1 / 1;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #24272a, #7a1520);
    color: #f2cf77;
    font-weight: 950;
    text-decoration: none;
}

.rn-curated-list-view__album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rn-curated-list-view__album-body {
    display: grid;
    gap: 8px;
    padding: 14px;
}

.rn-curated-list-view__album-catalog,
.rn-curated-list-view__album-body time {
    color: var(--rn-muted);
    font-size: 12px;
    font-weight: 900;
}

.rn-curated-list-view__album-body h2 {
    margin: 0;
    font-size: 18px;
    line-height: 1.15;
}

.rn-curated-list-view__album-body h2 a {
    color: var(--rn-ink);
    text-decoration: none;
}

.rn-curated-list-view__album-actions {
    display: grid;
    gap: 8px;
    margin-top: 4px;
}

.rn-curated-list-view__remove-form {
    display: grid;
    gap: 7px;
}

.rn-curated-list-view__remove-form button {
    display: inline-flex;
    min-height: 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(168, 24, 39, 0.28);
    border-radius: 999px;
    background: #fff8e7;
    color: var(--rn-red-dark);
    font-size: 12px;
    font-weight: 950;
    line-height: 1;
    padding: 11px 14px;
    text-transform: uppercase;
}

.rn-curated-list-view__remove-form button:disabled {
    cursor: default;
    opacity: 0.72;
}

.rn-curated-list-view__empty {
    margin: 0;
    color: var(--rn-muted);
    font-weight: 850;
}

.rn-collector-progress {
    display: grid;
    gap: 20px;
    border: 1px solid var(--rn-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(22, 27, 31, 0.08);
    padding: clamp(22px, 3vw, 34px);
}

.rn-collector-progress__header {
    display: grid;
    gap: 4px;
}

.rn-collector-progress__header h2 {
    margin: 0;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.08;
}

.rn-collector-progress__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.rn-collector-level-card,
.rn-collector-stat {
    display: grid;
    gap: 8px;
    border: 1px solid var(--rn-line);
    border-radius: 8px;
    background: var(--rn-paper);
    padding: clamp(16px, 2vw, 22px);
}

.rn-collector-level-card {
    grid-column: span 1;
    border-color: rgba(168, 24, 39, 0.22);
    background: #fff7f7;
}

.rn-collector-level-card span,
.rn-collector-stat span {
    color: var(--rn-muted);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.rn-collector-level-card strong,
.rn-collector-stat strong {
    color: var(--rn-ink);
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.05;
}

.rn-collector-level-card p {
    margin: 0;
    color: var(--rn-muted);
    font-weight: 800;
    line-height: 1.35;
}

.rn-collector-progress-bar {
    position: relative;
    height: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: #e2e7ea;
}

.rn-collector-progress-bar span {
    position: absolute;
    inset: 0 auto 0 0;
    display: block;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--rn-red), var(--rn-gold));
}

.rn-achievements-section {
    display: grid;
    gap: 24px;
    margin-top: clamp(38px, 5vw, 58px);
}

.rn-achievements-section__header {
    display: grid;
    gap: 10px;
    padding-top: 4px;
}

.rn-achievements-section__header .rn-account-eyebrow {
    margin-bottom: 0;
    letter-spacing: 0;
}

.rn-achievement-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    align-items: stretch;
}

.rn-achievement-badge {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 5px 12px;
    align-items: center;
    min-height: 0;
    border: 1px solid rgba(184, 148, 70, 0.28);
    border-left: 5px solid rgba(184, 148, 70, 0.38);
    border-radius: 8px;
    background:
        radial-gradient(circle at top left, rgba(242, 207, 119, 0.1), transparent 36%),
        linear-gradient(135deg, #fffdf7, #ffffff);
    box-shadow: 0 12px 28px rgba(22, 27, 31, 0.07);
    padding: 16px;
}

.rn-achievement-badge__icon {
    display: inline-flex;
    width: 46px;
    height: 46px;
    grid-row: 1 / span 4;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(112, 103, 91, 0.15);
    background: linear-gradient(135deg, #f0e7d1, #cfc3ab);
    color: #5a5047;
    font-size: 22px;
    font-weight: 950;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.rn-achievement-badge__status {
    justify-self: start;
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}

.rn-achievement-badge strong {
    color: var(--rn-ink);
    font-size: 17px;
    line-height: 1.18;
}

.rn-achievement-badge em {
    color: var(--rn-muted);
    font-style: normal;
    font-weight: 700;
    line-height: 1.35;
}

.rn-achievement-badge__progress {
    display: block;
    color: #5f6670;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.25;
}

.rn-listener-trophies-section {
    margin-top: clamp(36px, 5vw, 54px);
}

.rn-listener-trophies-section .rn-achievement-badge.is-earned {
    border-color: rgba(168, 24, 39, 0.35);
    background: linear-gradient(135deg, #fff3dc, #ffffff);
}

.rn-listener-trophies-section .rn-achievement-badge.is-earned .rn-achievement-badge__icon {
    background: linear-gradient(135deg, var(--rn-red), var(--rn-gold));
}

.rn-achievement-badge.is-earned {
    border-color: rgba(184, 148, 70, 0.58);
    border-left-color: var(--rn-gold);
    background:
        radial-gradient(circle at top left, rgba(242, 207, 119, 0.28), transparent 40%),
        linear-gradient(135deg, #fff8e2, #ffffff);
    box-shadow:
        0 16px 34px rgba(184, 148, 70, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.rn-achievement-badge.is-earned .rn-achievement-badge__icon {
    border-color: rgba(255, 248, 231, 0.72);
    background:
        radial-gradient(circle at 32% 24%, #fff6ce, #f2cf77 46%, var(--rn-gold) 100%);
    color: #24181b;
    box-shadow:
        0 8px 18px rgba(184, 148, 70, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.rn-achievement-badge.is-earned .rn-achievement-badge__status {
    background: #7a1520;
    color: #fff8e7;
}

.rn-achievement-badge.is-locked {
    border-color: #ded7c8;
    border-left-color: #bfb49d;
    background: linear-gradient(135deg, #f4f1e9, #fbfaf6);
    color: var(--rn-muted);
    opacity: 1;
}

.rn-achievement-badge.is-locked .rn-achievement-badge__icon {
    filter: grayscale(1);
    opacity: 0.72;
}

.rn-achievement-badge.is-locked .rn-achievement-badge__status {
    background: #e8e0d0;
    color: #70675b;
}

.rn-account-hero {
    overflow: hidden;
    border: 1px solid rgba(184, 148, 70, 0.34);
    border-left: 6px solid var(--rn-red);
    border-radius: 10px;
    background:
        radial-gradient(circle at 88% 12%, rgba(242, 207, 119, 0.18), transparent 34%),
        linear-gradient(135deg, #8d1825 0%, #4b161d 54%, #171719 100%);
    color: #fff8e7;
    box-shadow: 0 22px 46px rgba(22, 27, 31, 0.16);
    padding: clamp(24px, 4vw, 42px);
}

.rn-account-hero .rn-account-eyebrow {
    color: #f2cf77;
}

.rn-account-hero__lede {
    color: #fff8e7;
}

.rn-account-panel {
    border-color: rgba(184, 148, 70, 0.38);
    border-left-color: var(--rn-gold);
    background:
        radial-gradient(circle at 0 0, rgba(242, 207, 119, 0.18), transparent 30%),
        linear-gradient(135deg, #fff8e7, #fffdf7);
    box-shadow: 0 20px 48px rgba(22, 27, 31, 0.12);
}

.rn-account-avatar {
    border: 2px solid rgba(242, 207, 119, 0.78);
    background:
        radial-gradient(circle at 30% 25%, #fff4d8, #b89446 42%, #7a1520 100%);
    color: #fff8e7;
    box-shadow:
        0 12px 28px rgba(22, 27, 31, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.rn-account-panel h2 {
    color: #26171b;
}

.rn-collector-name-editor summary,
.rn-profile-image-editor summary {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(184, 148, 70, 0.38);
    border-radius: 999px;
    background: #fff4d8;
    color: #4c171d;
    font-size: 12px;
    font-weight: 950;
    line-height: 1;
    padding: 8px 13px;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(22, 27, 31, 0.08);
}

.rn-collector-name-editor summary:hover,
.rn-profile-image-editor summary:hover {
    background: var(--rn-red);
    color: #fff;
}

.rn-collector-name-form,
.rn-profile-image-form {
    border: 1px solid rgba(184, 148, 70, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    padding: 12px;
}

.rn-account-details div {
    border: 1px solid rgba(184, 148, 70, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.56);
    padding: 10px 12px;
}

.rn-account-details dt {
    color: #8a1b27;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.rn-account-details dd {
    color: #26171b;
    font-weight: 850;
}

.rn-account-logout {
    border-color: rgba(184, 148, 70, 0.42);
    background: #fff4d8;
    color: #4c171d;
    box-shadow: 0 10px 20px rgba(22, 27, 31, 0.08);
}

.rn-account-logout:hover {
    border-color: var(--rn-red-dark);
    background: var(--rn-red-dark);
    color: #fff;
}

.rn-collector-progress {
    border-color: rgba(184, 148, 70, 0.36);
    border-left: 6px solid var(--rn-red);
    background:
        radial-gradient(circle at 92% 0, rgba(242, 207, 119, 0.16), transparent 30%),
        linear-gradient(135deg, #fff8e7, #fffdf7);
    box-shadow: 0 20px 48px rgba(22, 27, 31, 0.11);
}

.rn-collector-progress__header .rn-account-eyebrow,
.rn-achievements-section__header .rn-account-eyebrow {
    color: #8a1b27;
    font-size: clamp(18px, 2.2vw, 26px);
    line-height: 1.08;
}

.rn-collector-progress__header h2 {
    color: #26171b;
}

.rn-collector-level-card,
.rn-collector-stat {
    border-color: rgba(184, 148, 70, 0.28);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 248, 231, 0.72)),
        #fffaf0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.rn-collector-level-card {
    border-left: 5px solid var(--rn-gold);
}

.rn-collector-progress-bar {
    height: 13px;
    border: 1px solid rgba(184, 148, 70, 0.24);
    background: #2a1b1f;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.28);
}

.rn-collector-progress-bar span {
    background: linear-gradient(90deg, #8d1825, #d9a93d 62%, #fff2bd);
    box-shadow: 0 0 18px rgba(242, 207, 119, 0.38);
}

.rn-achievements-section {
    border-top: 1px solid rgba(184, 148, 70, 0.22);
    padding-top: clamp(18px, 3vw, 28px);
}

.rn-achievement-badges {
    gap: 16px;
}

.rn-achievement-badge {
    position: relative;
    overflow: hidden;
    gap: 7px 14px;
    border-color: rgba(184, 148, 70, 0.38);
    border-left-width: 6px;
    background:
        radial-gradient(circle at 0 0, rgba(242, 207, 119, 0.18), transparent 34%),
        linear-gradient(135deg, #fff8e7, #fffdf7);
    box-shadow: 0 16px 34px rgba(22, 27, 31, 0.09);
}

.rn-achievement-badge::after,
.rn-member-profile__recent-trophy::after,
.rn-member-profile__hero-trophy-card::after {
    content: "";
    pointer-events: none;
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.16) 38%, transparent 62%);
    opacity: 0.45;
}

.rn-achievement-badge__icon,
.rn-member-profile__recent-trophy-icon,
.rn-member-profile__hero-trophy-icon {
    position: relative;
    overflow: hidden;
    color: transparent !important;
    font-size: 0 !important;
}

.rn-achievement-badge__icon::before,
.rn-member-profile__recent-trophy-icon::before,
.rn-member-profile__hero-trophy-icon::before {
    content: "\1F3C6";
    color: #24181b;
    font-size: 24px;
    line-height: 1;
}

.rn-member-profile__hero-trophy-icon::before {
    font-size: 34px;
}

.rn-member-profile__recent-trophy-icon::before {
    font-size: 21px;
}

.rn-achievement-badge--collector .rn-achievement-badge__icon::before,
.rn-member-profile__recent-trophy--collector .rn-member-profile__recent-trophy-icon::before,
.rn-member-profile__hero-trophy-card--collector .rn-member-profile__hero-trophy-icon::before {
    content: "\1F4BF";
}

.rn-achievement-badge--collector_ten_records .rn-achievement-badge__icon::before,
.rn-achievement-badge--collector_fifty_records .rn-achievement-badge__icon::before,
.rn-member-profile__recent-trophy--collector_ten_records .rn-member-profile__recent-trophy-icon::before,
.rn-member-profile__recent-trophy--collector_fifty_records .rn-member-profile__recent-trophy-icon::before,
.rn-member-profile__hero-trophy-card--collector_ten_records .rn-member-profile__hero-trophy-icon::before,
.rn-member-profile__hero-trophy-card--collector_fifty_records .rn-member-profile__hero-trophy-icon::before {
    content: "\1F4E6";
}

.rn-achievement-badge--collector_one_hundred_records .rn-achievement-badge__icon::before,
.rn-achievement-badge--collector_archive_one_percent .rn-achievement-badge__icon::before,
.rn-member-profile__recent-trophy--collector_one_hundred_records .rn-member-profile__recent-trophy-icon::before,
.rn-member-profile__recent-trophy--collector_archive_one_percent .rn-member-profile__recent-trophy-icon::before,
.rn-member-profile__hero-trophy-card--collector_one_hundred_records .rn-member-profile__hero-trophy-icon::before,
.rn-member-profile__hero-trophy-card--collector_archive_one_percent .rn-member-profile__hero-trophy-icon::before {
    content: "\1F511";
}

.rn-achievement-badge--collector_five_hundred_records .rn-achievement-badge__icon::before,
.rn-achievement-badge--collector_archive_five_percent .rn-achievement-badge__icon::before,
.rn-member-profile__recent-trophy--collector_five_hundred_records .rn-member-profile__recent-trophy-icon::before,
.rn-member-profile__recent-trophy--collector_archive_five_percent .rn-member-profile__recent-trophy-icon::before,
.rn-member-profile__hero-trophy-card--collector_five_hundred_records .rn-member-profile__hero-trophy-icon::before,
.rn-member-profile__hero-trophy-card--collector_archive_five_percent .rn-member-profile__hero-trophy-icon::before {
    content: "\1F3DB";
}

.rn-achievement-badge--collector_one_thousand_records .rn-achievement-badge__icon::before,
.rn-achievement-badge--collector_archive_ten_percent .rn-achievement-badge__icon::before,
.rn-member-profile__recent-trophy--collector_one_thousand_records .rn-member-profile__recent-trophy-icon::before,
.rn-member-profile__recent-trophy--collector_archive_ten_percent .rn-member-profile__recent-trophy-icon::before,
.rn-member-profile__hero-trophy-card--collector_one_thousand_records .rn-member-profile__hero-trophy-icon::before,
.rn-member-profile__hero-trophy-card--collector_archive_ten_percent .rn-member-profile__hero-trophy-icon::before {
    content: "\1F451";
}

.rn-achievement-badge--listener .rn-achievement-badge__icon::before,
.rn-member-profile__recent-trophy--listener .rn-member-profile__recent-trophy-icon::before,
.rn-member-profile__hero-trophy-card--listener .rn-member-profile__hero-trophy-icon::before {
    content: "\1F3A7";
}

.rn-achievement-badge--listener_night_owl .rn-achievement-badge__icon::before,
.rn-member-profile__recent-trophy--listener_night_owl .rn-member-profile__recent-trophy-icon::before,
.rn-member-profile__hero-trophy-card--listener_night_owl .rn-member-profile__hero-trophy-icon::before {
    content: "\1F319";
}

.rn-achievement-badge--listener_weekend .rn-achievement-badge__icon::before,
.rn-achievement-badge--listener_jazz_marathon .rn-achievement-badge__icon::before,
.rn-member-profile__recent-trophy--listener_weekend .rn-member-profile__recent-trophy-icon::before,
.rn-member-profile__recent-trophy--listener_jazz_marathon .rn-member-profile__recent-trophy-icon::before,
.rn-member-profile__hero-trophy-card--listener_weekend .rn-member-profile__hero-trophy-icon::before,
.rn-member-profile__hero-trophy-card--listener_jazz_marathon .rn-member-profile__hero-trophy-icon::before {
    content: "\23F1";
}

.rn-achievement-badge--listener_archive_explorer .rn-achievement-badge__icon::before,
.rn-achievement-badge--listener_deep_listener .rn-achievement-badge__icon::before,
.rn-member-profile__recent-trophy--listener_archive_explorer .rn-member-profile__recent-trophy-icon::before,
.rn-member-profile__recent-trophy--listener_deep_listener .rn-member-profile__recent-trophy-icon::before,
.rn-member-profile__hero-trophy-card--listener_archive_explorer .rn-member-profile__hero-trophy-icon::before,
.rn-member-profile__hero-trophy-card--listener_deep_listener .rn-member-profile__hero-trophy-icon::before {
    content: "\1F4FB";
}

.rn-achievement-badge--listener_five_hundred_hours .rn-achievement-badge__icon::before,
.rn-achievement-badge--listener_legendary .rn-achievement-badge__icon::before,
.rn-member-profile__recent-trophy--listener_five_hundred_hours .rn-member-profile__recent-trophy-icon::before,
.rn-member-profile__recent-trophy--listener_legendary .rn-member-profile__recent-trophy-icon::before,
.rn-member-profile__hero-trophy-card--listener_five_hundred_hours .rn-member-profile__hero-trophy-icon::before,
.rn-member-profile__hero-trophy-card--listener_legendary .rn-member-profile__hero-trophy-icon::before {
    content: "\1F3C6";
}

.rn-achievement-badge--bronze {
    border-left-color: #9b6a3e;
}

.rn-achievement-badge--bronze .rn-achievement-badge__icon {
    background: linear-gradient(135deg, #c99053, #7a4428);
}

.rn-achievement-badge--silver {
    border-left-color: #aeb7bf;
}

.rn-achievement-badge--silver .rn-achievement-badge__icon {
    background: linear-gradient(135deg, #f2f5f7, #9eaab3);
}

.rn-achievement-badge--gold {
    border-left-color: #d9a93d;
}

.rn-achievement-badge--gold .rn-achievement-badge__icon,
.rn-achievement-badge--platinum .rn-achievement-badge__icon,
.rn-achievement-badge--legendary .rn-achievement-badge__icon {
    background:
        radial-gradient(circle at 32% 24%, #fff8cb, #f2cf77 45%, #a81827 100%);
}

.rn-achievement-badge--platinum,
.rn-achievement-badge--legendary {
    border-color: rgba(242, 207, 119, 0.68);
    border-left-color: #f2cf77;
    background:
        radial-gradient(circle at 0 0, rgba(242, 207, 119, 0.32), transparent 34%),
        linear-gradient(135deg, #fff4d8, #fffdf7);
    box-shadow:
        0 18px 38px rgba(184, 148, 70, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.rn-achievement-badge--legendary .rn-achievement-badge__icon {
    width: 52px;
    height: 52px;
    background:
        radial-gradient(circle at 32% 24%, #fffbd7, #f2cf77 36%, #a81827 72%, #23171b 100%);
    box-shadow:
        0 0 24px rgba(242, 207, 119, 0.36),
        inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.rn-achievement-badge--listener.is-earned {
    border-color: rgba(93, 42, 91, 0.3);
    background:
        radial-gradient(circle at top left, rgba(242, 207, 119, 0.18), transparent 36%),
        linear-gradient(135deg, #fff5e3, #f7fbfb);
}

.rn-achievement-badge--listener.is-earned .rn-achievement-badge__icon {
    background:
        radial-gradient(circle at 32% 24%, #fff8cb, #f2cf77 36%, #225f66 100%);
}

.rn-achievement-badge.is-locked {
    border-left-color: #a99f8e;
    background:
        linear-gradient(135deg, rgba(244, 241, 233, 0.96), rgba(251, 250, 246, 0.98));
}

.rn-achievement-badge.is-locked .rn-achievement-badge__icon {
    background: linear-gradient(135deg, #ddd5c8, #a99f8e);
    opacity: 0.76;
}

.rn-achievement-badge strong,
.rn-member-profile__recent-trophy strong {
    color: #21171a;
    font-weight: 950;
}

.rn-achievement-badge em,
.rn-achievement-badge__progress {
    color: #5f5550;
}

.rn-member-profile__hero-trophy-card {
    position: relative;
    gap: 15px;
    padding: clamp(16px, 2.2vw, 22px);
}

.rn-member-profile__hero-trophy-card--platinum,
.rn-member-profile__hero-trophy-card--legendary {
    border-color: rgba(242, 207, 119, 0.76);
    background:
        radial-gradient(circle at 0 0, rgba(242, 207, 119, 0.32), transparent 36%),
        linear-gradient(135deg, rgba(255, 248, 231, 0.22), rgba(12, 13, 15, 0.3)),
        rgba(31, 18, 22, 0.72);
}

.rn-member-profile__hero-trophy-icon {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
}

.rn-member-profile__hero-trophy-card--legendary .rn-member-profile__hero-trophy-icon {
    background:
        radial-gradient(circle at 32% 24%, #fffbd7, #f2cf77 34%, #a81827 70%, #23171b 100%);
    box-shadow:
        0 0 30px rgba(242, 207, 119, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.rn-member-profile__hero-trophy-card strong {
    font-size: clamp(22px, 2.4vw, 29px);
}

.rn-member-profile__recent-trophy {
    position: relative;
    overflow: hidden;
    border-color: rgba(184, 148, 70, 0.44);
    background:
        radial-gradient(circle at 0 0, rgba(242, 207, 119, 0.16), transparent 34%),
        linear-gradient(135deg, #fff8e7, #fffdf7);
}

.rn-member-profile__recent-trophy--legendary,
.rn-member-profile__recent-trophy--platinum {
    border-color: rgba(242, 207, 119, 0.68);
    box-shadow: 0 18px 38px rgba(184, 148, 70, 0.2);
}

@media (prefers-reduced-motion: no-preference) {
    .rn-member-profile__hero-trophy-card::before {
        content: "";
        pointer-events: none;
        position: absolute;
        inset: -35% auto -35% -55%;
        width: 38%;
        transform: skewX(-18deg);
        background: linear-gradient(90deg, transparent, rgba(255, 248, 214, 0.32), transparent);
        animation: rn-trophy-shine 1200ms ease-out 420ms 1 both;
    }
}

@keyframes rn-trophy-shine {
    from {
        opacity: 0;
        left: -55%;
    }
    18% {
        opacity: 0.72;
    }
    to {
        opacity: 0;
        left: 120%;
    }
}

.rn-release-single__hero {
    display: grid;
    grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
    gap: clamp(20px, 4vw, 42px);
    align-items: start;
    margin-bottom: clamp(42px, 5vw, 64px);
}

.rn-release-single__cover img,
.rn-release-single__cover-placeholder {
    display: flex;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #e9eef0;
}

.rn-release-single__cover-placeholder {
    background: linear-gradient(135deg, #24272a, #6f161f);
    color: #fff;
    font-size: 24px;
    font-weight: 800;
}

.rn-release-single__summary h1 {
    margin: 0 0 10px;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.05;
}

.rn-release-section {
    border-top: 1px solid var(--rn-line);
    padding-top: 24px;
    margin-top: 24px;
}

.rn-release-section h2 {
    margin: 0 0 12px;
    font-size: 26px;
}

.rn-release-external-link {
    margin: 10px 0 0;
}

.rn-release-external-link a {
    color: var(--rn-teal);
    font-weight: 800;
    text-decoration: none;
}

.rn-release-external-link a:hover {
    color: var(--rn-red);
    text-decoration: underline;
}

.rn-release-copy {
    max-width: 860px;
    color: #30383d;
}

.rn-release-video {
    border-top: 0;
    padding-top: 0;
    margin-top: clamp(42px, 5vw, 64px);
}

.rn-video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #101214;
    border-radius: 8px;
    overflow: hidden;
}

.rn-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.rn-release-download {
    display: grid;
    gap: 10px;
    justify-items: start;
}

.rn-taxonomy-hero {
    background: #24272a;
    color: #fff;
    border-bottom: 5px solid var(--rn-red);
}

.rn-taxonomy-hero__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 42px clamp(16px, 3vw, 28px);
}

.rn-taxonomy-hero p {
    margin: 0 0 8px;
    color: #f0c85d;
    font-weight: 800;
}

.rn-taxonomy-hero h1 {
    margin: 0;
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.05;
}

.rn-taxonomy-description {
    max-width: 760px;
    margin-top: 14px;
    color: #e6ecef;
}

@container (min-width: 1120px) {
    .rn-archive-scoreboard__grid,
    .rn-archive-activity {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@container (max-width: 760px) {
    .rn-archive-scoreboard__intro h2 {
        font-size: 44px;
    }

    .rn-archive-scoreboard__metric {
        min-height: 160px;
    }

    .rn-archive-scoreboard__metric strong {
        font-size: 56px;
    }
}

@container (max-width: 620px) {
    .rn-archive-scoreboard__inner {
        padding: 18px 14px 22px;
    }

    .rn-archive-scoreboard__intro {
        display: grid;
        gap: 8px;
        margin-bottom: 16px;
    }

    .rn-archive-scoreboard__discover {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .rn-archive-scoreboard__intro h2 {
        font-size: 30px;
        line-height: 1.02;
    }

    .rn-archive-scoreboard__grid,
    .rn-archive-activity {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .rn-archive-scoreboard__metric {
        width: 100%;
        max-width: 100%;
        min-height: 0;
        padding: 16px 16px 18px;
    }

    .rn-archive-scoreboard__metric::after {
        right: 16px;
        bottom: 13px;
        left: 16px;
    }

    .rn-archive-scoreboard__metric strong {
        margin: 9px 0 6px;
        font-size: 42px;
        line-height: 0.94;
    }

    .rn-archive-activity {
        margin-top: 12px;
    }

    .rn-archive-activity__item {
        padding: 14px 15px;
    }

    .rn-archive-activity__item strong {
        font-size: 15px;
    }

    .rn-archive-activity__member {
        gap: 10px;
    }

    .rn-archive-activity__avatar {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        font-size: 14px;
    }
}

@media (max-width: 980px) {
    .rn-archive-scoreboard__intro h2 {
        font-size: 44px;
    }

    .rn-archive-scoreboard__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rn-archive-scoreboard__metric {
        min-height: 160px;
    }

    .rn-archive-scoreboard__metric strong {
        font-size: 56px;
    }

    .rn-archive-activity {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .rn-member-profile__hero {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 20px;
    }

    .rn-member-profile__hero-trophy {
        grid-column: 1 / -1;
    }

    .rn-account-panel,
    .rn-catalog-search__grid,
    .rn-release-grid,
    .rn-release-grid--compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rn-release-single__hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .rn-collector-progress__grid,
    .rn-achievement-badges {
        grid-template-columns: 1fr;
    }

    .rn-auth-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .rn-archive-scoreboard {
        width: 100%;
        max-width: 100%;
        margin-bottom: 28px;
    }

    .rn-archive-scoreboard__inner {
        padding: 18px 14px 22px;
    }

    .rn-archive-scoreboard__intro {
        display: grid;
        gap: 8px;
        margin-bottom: 16px;
    }

    .rn-archive-scoreboard__intro h2 {
        font-size: 30px;
        line-height: 1.02;
    }

    .rn-archive-scoreboard__grid,
    .rn-archive-activity {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .rn-archive-scoreboard__metric {
        width: 100%;
        max-width: 100%;
        min-height: 0;
        padding: 16px 16px 18px;
    }

    .rn-archive-scoreboard__metric::after {
        right: 16px;
        bottom: 13px;
        left: 16px;
    }

    .rn-archive-scoreboard__metric span {
        min-height: 0;
        white-space: normal;
    }

    .rn-archive-scoreboard__metric strong {
        margin: 9px 0 6px;
        font-size: 42px;
        line-height: 0.94;
    }

    .rn-archive-activity {
        margin-top: 12px;
    }

    .rn-archive-activity__item {
        padding: 14px 15px;
    }

    .rn-archive-activity__item strong {
        font-size: 15px;
    }

    .rn-account,
    .rn-collection {
        gap: 26px;
        padding-top: 16px;
        padding-bottom: 32px;
    }

    .rn-account-hero {
        gap: 6px;
        padding-bottom: 14px;
    }

    .rn-account-hero__lede {
        font-size: 24px;
        line-height: 1.15;
    }

    .rn-account-panel {
        grid-template-columns: 1fr;
        gap: 14px;
        align-items: start;
        padding: 20px;
        box-shadow: 0 10px 26px rgba(22, 27, 31, 0.07);
    }

    .rn-account-profile {
        gap: 12px;
        align-items: flex-start;
    }

    .rn-account-avatar {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        font-size: 20px;
    }

    .rn-account-profile__main {
        gap: 4px;
    }

    .rn-account-eyebrow {
        margin-bottom: 2px;
        font-size: 12px;
    }

    .rn-account-panel h2 {
        font-size: 26px;
    }

    .rn-collector-name-row {
        gap: 6px;
        margin-top: 2px;
    }

    .rn-account-details {
        gap: 6px;
    }

    .rn-account-details div {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .rn-account-logout {
        justify-self: stretch;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .rn-account-collection {
        gap: 18px;
        margin-top: 4px;
    }

    .rn-account-collection > h2 {
        font-size: 24px;
        line-height: 1.15;
    }

    .rn-account-collection > .rn-collection {
        padding: 0;
    }

    .rn-member-profile {
        gap: 20px;
        padding: 20px 16px 34px;
    }

    .rn-member-profile__hero {
        grid-template-columns: 1fr;
        align-items: flex-start;
        padding: 20px;
        gap: 16px;
    }

    .rn-member-profile__hero h1 {
        font-size: 34px;
        line-height: 1.02;
    }

    .rn-member-profile__avatar {
        width: 82px;
        height: 82px;
        flex-basis: 82px;
        font-size: 28px;
    }

    .rn-member-profile__hero-trophy,
    .rn-member-profile__hero-trophy-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .rn-member-profile__hero-trophy-card {
        grid-template-columns: auto minmax(0, 1fr);
        padding: 16px;
    }

    .rn-member-profile__hero-trophy-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        font-size: 20px;
    }

    .rn-member-profile__stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .rn-member-profile__section {
        padding: 18px;
    }

    .rn-member-profile__follow-bar {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
        padding: 13px;
    }

    .rn-member-profile__follow-counts {
        justify-content: space-between;
        gap: 8px;
    }

    .rn-member-profile__follow-form button,
    .rn-member-profile__follow-login {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .rn-member-profile__discovery-link {
        justify-content: stretch;
        margin-top: 0;
    }

    .rn-member-profile__discovery-link a {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .rn-discovery {
        gap: 22px;
        padding: 16px;
    }

    .rn-discovery__hero {
        padding: 22px 18px;
    }

    .rn-discovery-search > div,
    .rn-discovery-grid,
    .rn-discovery-card__stats {
        grid-template-columns: 1fr;
    }

    .rn-discovery-section__header {
        align-items: start;
        flex-direction: column;
    }

    .rn-discovery-card {
        padding: 14px;
    }

    .rn-discovery-card__avatar {
        width: 64px;
        height: 64px;
    }

    .rn-discovery-card__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .rn-discovery-search button,
    .rn-discovery-card__profile,
    .rn-discovery-card__follow-login,
    .rn-discovery-card__follow-form,
    .rn-discovery-card__follow-form button {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .rn-member-activity-feed,
    .rn-curated-list-grid,
    .rn-curated-manager__grid {
        grid-template-columns: 1fr;
    }

    .rn-member-activity-feed__item {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 11px;
        padding: 12px;
    }

    .rn-member-activity-feed__item--trophy {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .rn-member-activity-feed__thumb {
        width: 64px;
    }

    .rn-member-activity-feed__icon {
        width: 46px;
        height: 46px;
        font-size: 17px;
    }

    .rn-curated-manager {
        gap: 15px;
        margin-top: 32px;
        padding: 18px;
    }

    .rn-curated-manager__form {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .rn-curated-manager__list-header {
        margin-top: 8px;
        padding-top: 20px;
    }

    .rn-curated-manager__form button,
    .rn-curated-manager__add-form button,
    .rn-curated-list-view__actions a,
    .rn-curated-list-view__remove-form button,
    .rn-curated-list-view__edit-form button,
    .rn-curated-list-view__delete-form button {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .rn-curated-list-view {
        gap: 16px;
        padding: 18px;
    }

    .rn-curated-list-view__header {
        grid-template-columns: 1fr;
    }

    .rn-curated-list-view__header .rn-account-eyebrow {
        margin-bottom: 10px;
    }

    .rn-curated-list-view__header p {
        margin-top: 11px;
    }

    .rn-curated-list-view__meta {
        gap: 8px;
        margin-top: 14px;
    }

    .rn-curated-list-view__meta span,
    .rn-curated-list-view__meta a {
        max-width: 100%;
        box-sizing: border-box;
        line-height: 1.15;
        white-space: normal;
    }

    .rn-curated-list-view__actions {
        justify-content: stretch;
    }

    .rn-curated-list-view__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .rn-curated-list-view__album-body {
        padding: 12px;
    }

    .rn-member-profile__recent-trophy-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

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

    .rn-member-profile__album-body {
        padding: 10px;
    }

    .rn-member-profile__album-body h3 {
        font-size: 14px;
    }

    .rn-profile-image-form button {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .rn-release-actions,
    .rn-collection-card__actions,
    .rn-collection-auth-actions,
    .rn-collection-toolbar,
    .rn-collection-toolbar__actions {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        align-items: stretch;
    }

    .rn-release-actions,
    .rn-collection-card__actions,
    .rn-collection-auth-actions,
    .rn-collection-toolbar__actions {
        flex-direction: column;
    }

    .rn-catalog-search__button,
    .rn-load-more,
    .rn-release-download,
    .rn-release-actions .rn-collection-form,
    .rn-community-classification,
    .rn-community-classification__form,
    .rn-community-classification__form label,
    .rn-community-classification__tools,
    .rn-collection-empty,
    .rn-auth-card,
    .rn-auth-card form,
    .rn-auth-forgot,
    .rn-collector-name-form {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .rn-catalog-search button,
    .rn-load-more button,
    .rn-release-card__button,
    .rn-release-download__button,
    .rn-share,
    .rn-share-button,
    .rn-release-actions .rn-collection-form,
    .rn-collection-form button,
    .rn-community-classification__form button,
    .rn-community-classification__form select,
    .rn-community-classification__results summary,
    .rn-community-classification__change summary,
    .rn-community-classification__login a,
    .rn-collection-login a,
    .rn-collection-primary-button,
    .rn-collection-secondary-button,
    .rn-collection-catalog-button,
    .rn-collection-card__button,
    .rn-collection-card__actions .rn-collection-form,
    .rn-collection-card__remove,
    .rn-collection-card__remove button,
    .rn-achievements-details summary,
    .rn-collector-name-form button,
    .rn-auth-submit,
    .rn-auth-link-button {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
        align-self: stretch;
        justify-self: stretch;
    }

    .rn-catalog-search button,
    .rn-load-more button,
    .rn-release-card__button,
    .rn-release-download__button,
    .rn-share-button,
    .rn-collection-form button,
    .rn-community-classification__form button,
    .rn-community-classification__results summary,
    .rn-community-classification__change summary,
    .rn-community-classification__login a,
    .rn-collection-login a,
    .rn-collection-primary-button,
    .rn-collection-secondary-button,
    .rn-collection-catalog-button,
    .rn-collection-card__button,
    .rn-collection-card__remove button,
    .rn-achievements-details summary,
    .rn-collector-name-form button,
    .rn-auth-submit,
    .rn-auth-link-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 0;
        overflow: visible;
        text-align: center;
    }

    .rn-release-card__button {
        justify-self: stretch;
    }

    .rn-load-more {
        justify-items: stretch;
        padding-inline: 0;
    }

    .rn-collection-form {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .rn-collection-form button {
        white-space: normal;
    }

    .rn-community-classification {
        width: 100%;
        gap: 8px;
        margin-top: 12px;
        padding: 11px;
    }

    .rn-community-classification::after {
        margin-right: -11px;
        margin-left: -11px;
        margin-bottom: -11px;
    }

    .rn-community-classification__header,
    .rn-community-classification__login,
    .rn-community-classification__form {
        align-items: stretch;
        flex-direction: column;
    }

    .rn-community-classification__tools {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
    }

    .rn-community-classification__change,
    .rn-community-classification__results {
        flex: 1 1 150px;
    }

    .rn-community-classification__change[open],
    .rn-community-classification__results[open] {
        flex-basis: 100%;
    }

    .rn-community-classification__change summary,
    .rn-community-classification__results summary {
        width: 100%;
        align-self: stretch;
    }

    .rn-community-classification__form {
        gap: 8px;
    }

    .rn-community-classification__form label {
        flex-basis: auto;
    }

    .rn-community-classification__current strong {
        font-size: 16px;
    }

    .rn-community-classification__result-list {
        width: 100%;
        box-sizing: border-box;
    }

    .rn-community-classification__result-row {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 6px 8px;
    }

    .rn-community-classification__result-bar {
        display: block;
    }

    .rn-collection-toolbar {
        gap: 8px;
        margin-bottom: 14px;
    }

    .rn-collection-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .rn-collection-card__body {
        gap: 10px;
        padding: 15px;
    }

    .rn-collection-card__title {
        font-size: 20px;
    }

    .rn-collection-card__meta {
        gap: 6px;
    }

    .rn-collection-empty {
        gap: 10px;
        padding: 18px;
    }

    .rn-collector-progress {
        gap: 14px;
        padding: 20px;
        box-shadow: 0 10px 26px rgba(22, 27, 31, 0.07);
    }

    .rn-collector-progress__header h2 {
        font-size: 24px;
        line-height: 1.15;
    }

    .rn-collector-progress__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .rn-collector-level-card,
    .rn-collector-stat {
        gap: 7px;
        min-height: 0;
        padding: 16px;
    }

    .rn-collector-level-card strong,
    .rn-collector-stat strong {
        font-size: 24px;
        line-height: 1.1;
    }

    .rn-collector-level-card span,
    .rn-collector-stat span {
        font-size: 12px;
    }

    .rn-collector-level-card p {
        font-size: 14px;
    }

    .rn-collector-progress-bar {
        height: 10px;
    }

    .rn-achievements-section {
        gap: 18px;
        margin-top: 34px;
    }

    .rn-achievements-section__header {
        gap: 10px;
        padding-top: 8px;
    }

    .rn-achievements-section__header .rn-account-eyebrow {
        font-size: 13px;
    }

    .rn-collection-card__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .rn-collection-card__button,
    .rn-collection-card__actions .rn-collection-form,
    .rn-collection-card__remove,
    .rn-collection-card__remove button {
        flex: 0 0 auto;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .rn-collection-card__button,
    .rn-collection-card__remove button {
        min-height: 42px;
        padding: 9px 14px;
        line-height: 1.15;
        white-space: normal;
    }

    .rn-achievement-badges {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .rn-achievement-badge {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 3px 10px;
        padding: 10px 12px;
    }

    .rn-achievement-badge__icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .rn-achievement-badge__status {
        padding: 3px 8px;
        font-size: 10px;
    }

    .rn-achievement-badge strong {
        font-size: 15px;
    }

    .rn-achievement-badge em {
        font-size: 12px;
        line-height: 1.25;
    }

    .rn-achievement-badge__progress {
        font-size: 11px;
        line-height: 1.2;
    }
}

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

    .rn-member-activity-feed__item,
    .rn-member-activity-feed__item--trophy {
        grid-template-columns: 1fr;
    }

    .rn-member-activity-feed__thumb {
        width: min(100%, 96px);
    }

    .rn-member-activity-feed__icon {
        width: 46px;
    }

    .rn-member-profile__hero-trophy-card {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .rn-member-profile__album-link {
        width: 100%;
        box-sizing: border-box;
    }

    .rn-curated-list-card__covers {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .rn-account,
    .rn-catalog,
    .rn-collection,
    .rn-taxonomy-results,
    .rn-release-single {
        padding-inline: 14px;
    }

    .rn-account-panel,
    .rn-catalog-search__grid,
    .rn-release-grid,
    .rn-release-grid--compact {
        grid-template-columns: 1fr;
    }

    .rn-account-logout {
        justify-self: start;
    }

    .rn-account-profile {
        align-items: flex-start;
    }

    .rn-release-actions,
    .rn-collection-card__actions,
    .rn-collection-auth-actions,
    .rn-collection-toolbar,
    .rn-collection-toolbar__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .rn-share,
    .rn-share-button,
    .rn-community-classification,
    .rn-community-classification__form,
    .rn-community-classification__form select,
    .rn-community-classification__form button,
    .rn-community-classification__results summary,
    .rn-community-classification__change summary,
    .rn-community-classification__login a,
    .rn-collection-login a,
    .rn-collection-primary-button,
    .rn-collection-secondary-button,
    .rn-collection-catalog-button,
    .rn-collection-card__button,
    .rn-collection-card__actions .rn-collection-form,
    .rn-collection-card__remove,
    .rn-collection-card__remove button,
    .rn-collector-name-form,
    .rn-collector-name-form button,
    .rn-auth-submit,
    .rn-auth-link-button {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .rn-share-options {
        grid-template-columns: 1fr;
    }

    .rn-release-card__meta div,
    .rn-collection-card__meta div,
    .rn-account-details div,
    .rn-release-single__meta div {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .rn-collection-form button,
    .rn-release-card__button,
    .rn-release-download__button {
        width: 100%;
    }
}

/* v1.0.69 My Collection 2.0 layout rebuild. */
.rn-account,
.rn-collection {
    gap: 24px;
}

.rn-my-collection-profile.rn-account-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    border: 1px solid rgba(184, 148, 70, 0.3);
    border-left: 5px solid var(--rn-red);
    background:
        linear-gradient(135deg, rgba(255, 248, 231, 0.78), rgba(255, 255, 255, 0.98)),
        #fff;
    padding: clamp(16px, 2.4vw, 24px);
}

.rn-my-collection-profile .rn-account-profile {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-width: 0;
}

.rn-my-collection-profile .rn-account-avatar {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
    font-size: 22px;
}

.rn-my-collection-profile .rn-account-profile__main {
    gap: 8px;
}

.rn-my-collection-profile .rn-account-panel h2,
.rn-my-collection-profile h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.08;
}

.rn-my-collection-profile__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
}

.rn-my-collection-profile__stats div {
    display: grid;
    gap: 2px;
    border: 1px solid rgba(184, 148, 70, 0.26);
    border-radius: 8px;
    background: #fffdf7;
    padding: 8px 10px;
}

.rn-my-collection-profile__stats dt {
    color: var(--rn-muted);
    font-size: 11px;
    font-weight: 950;
    line-height: 1;
    text-transform: uppercase;
}

.rn-my-collection-profile__stats dd {
    margin: 0;
    color: var(--rn-ink);
    font-size: 14px;
    font-weight: 900;
}

.rn-my-collection-profile__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
}

.rn-my-collection-profile .rn-collector-name-row {
    display: contents;
}

.rn-my-collection-profile .rn-collector-name-editor,
.rn-my-collection-profile .rn-profile-image-editor {
    margin: 0;
}

.rn-my-collection-profile .rn-collector-name-editor summary,
.rn-my-collection-profile .rn-profile-image-editor summary {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(168, 24, 39, 0.25);
    border-radius: 999px;
    background: #fff8e7;
    color: var(--rn-red-dark);
    font-size: 11px;
    font-weight: 950;
    line-height: 1;
    padding: 8px 12px;
    text-transform: uppercase;
}

.rn-my-collection-profile .rn-collector-name-form,
.rn-my-collection-profile .rn-profile-image-form {
    min-width: min(360px, 100%);
    max-width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(184, 148, 70, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
}

.rn-collector-progress {
    gap: 14px;
    border-color: rgba(184, 148, 70, 0.28);
    background:
        linear-gradient(135deg, rgba(255, 248, 231, 0.6), rgba(255, 255, 255, 0.98)),
        #fff;
    padding: clamp(16px, 2.5vw, 24px);
}

.rn-collector-progress__header h2,
.rn-my-collection-section__header h2 {
    margin: 0;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.1;
}

.rn-collector-progress__grid {
    grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.7fr));
    gap: 10px;
}

.rn-collector-level-card,
.rn-collector-stat {
    gap: 6px;
    padding: 14px;
}

.rn-collector-level-card strong,
.rn-collector-stat strong {
    font-size: clamp(20px, 2.4vw, 28px);
}

.rn-collector-level-card p {
    font-size: 13px;
}

.rn-my-collection-section {
    display: grid;
    gap: 16px;
    min-width: 0;
}

.rn-my-collection-section__header {
    display: flex;
    gap: 12px;
    align-items: end;
    justify-content: space-between;
    min-width: 0;
    border-bottom: 1px solid rgba(184, 148, 70, 0.24);
    padding-bottom: 12px;
}

.rn-my-collection-section__header span {
    color: var(--rn-muted);
    font-size: 13px;
    font-weight: 800;
}

.rn-curated-manager {
    gap: 16px;
    border-color: rgba(184, 148, 70, 0.3);
    background:
        linear-gradient(135deg, rgba(255, 248, 231, 0.62), rgba(255, 255, 255, 0.98)),
        #fff;
    padding: clamp(16px, 2.5vw, 24px);
}

/* v1.0.72 Emergency My Collection stabilization. */
.rn-curated-manager__showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: 16px;
    min-width: 0;
}

.rn-curated-manager__showcase-card {
    min-width: 0;
}

.rn-curated-manager__showcase-title {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: start;
    min-width: 0;
}

.rn-curated-manager__showcase-title h3 {
    overflow-wrap: anywhere;
}

.rn-curated-manager__showcase-title em,
.rn-curated-manager__showcase-note {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    border: 1px solid rgba(184, 148, 70, 0.28);
    border-radius: 999px;
    background: rgba(255, 244, 216, 0.92);
    color: var(--rn-red-dark);
    font-size: 10px;
    font-style: normal;
    font-weight: 950;
    line-height: 1;
    padding: 7px 9px;
    text-transform: uppercase;
    white-space: nowrap;
}

.rn-curated-manager__showcase-note {
    margin-top: 3px;
    background: rgba(255, 253, 247, 0.9);
    color: var(--rn-muted);
}

.rn-curated-manager__form {
    grid-template-columns: minmax(160px, 0.9fr) minmax(220px, 1.25fr) minmax(150px, 0.7fr) auto;
    gap: 10px;
    margin: 0;
}

.rn-curated-manager__list-header {
    gap: 5px;
    margin-top: 14px;
    padding-top: 18px;
}

.rn-curated-manager__list-header h3 {
    font-size: clamp(22px, 2.4vw, 28px);
}

.rn-curated-manager__list-stack {
    gap: 0;
    border-top: 1px solid rgba(184, 148, 70, 0.24);
}

.rn-curated-manager__list-block {
    gap: 0;
    border-top: 0;
    border-bottom: 1px solid rgba(184, 148, 70, 0.24);
    padding: 0;
}

.rn-curated-manager__list-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 14px 0;
}

.rn-curated-manager__list-heading {
    gap: 5px;
}

.rn-curated-manager__list-heading h3 {
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.18;
}

.rn-curated-manager__list-meta span {
    font-size: 11px;
    padding: 6px 8px;
}

.rn-curated-manager__manage-button {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: var(--rn-red);
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 950;
    line-height: 1;
    padding: 10px 14px;
    text-transform: uppercase;
}

.rn-curated-manager__manage-button[aria-expanded="true"] {
    background: var(--rn-red-dark);
}

.rn-curated-manager__drawer {
    display: grid;
    gap: 12px;
    min-width: 0;
    border: 1px solid rgba(184, 148, 70, 0.24);
    border-radius: 8px;
    background: rgba(255, 253, 247, 0.82);
    margin: 0 0 16px;
    padding: 14px;
}

.rn-curated-manager__drawer[hidden] {
    display: none;
}

.rn-curated-manager__drawer-description {
    margin: 0;
    color: var(--rn-muted);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
}

.rn-curated-manager__list-controls {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
    gap: 12px;
}

.rn-curated-manager__list-controls .rn-curated-manager__add-form {
    grid-template-columns: minmax(0, 1fr) auto;
}

.rn-curated-manager__list-controls .rn-curated-manager__edit-form {
    grid-template-columns: minmax(0, 1.2fr) minmax(150px, 0.6fr) auto;
}

.rn-curated-manager__album-row {
    grid-template-columns: minmax(0, 1fr) auto;
    border-radius: 6px;
    padding: 8px 9px;
}

.rn-curated-manager__album-main h4 {
    font-size: 14px;
    line-height: 1.25;
    overflow-wrap: anywhere;
    word-break: normal;
}

.rn-curated-manager__remove-form button,
.rn-curated-manager__delete-form button,
.rn-curated-manager__form button,
.rn-curated-manager__add-form button,
.rn-curated-manager__edit-form button {
    min-height: 36px;
    font-size: 11px;
    padding: 9px 12px;
}

@media (max-width: 900px) {
    .rn-collector-progress__grid,
    .rn-curated-manager__form,
    .rn-curated-manager__list-controls,
    .rn-curated-manager__list-controls .rn-curated-manager__add-form,
    .rn-curated-manager__list-controls .rn-curated-manager__edit-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .rn-my-collection-profile .rn-account-profile {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .rn-my-collection-profile__stats,
    .rn-my-collection-profile__actions {
        justify-content: center;
        width: 100%;
    }

    .rn-my-collection-profile__stats div {
        min-width: min(150px, 100%);
    }

    .rn-my-collection-profile .rn-collector-name-editor,
    .rn-my-collection-profile .rn-profile-image-editor {
        width: 100%;
    }

    .rn-my-collection-profile .rn-collector-name-editor summary,
    .rn-my-collection-profile .rn-profile-image-editor summary {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .rn-my-collection-section__header,
    .rn-curated-manager__list-summary,
    .rn-curated-manager__showcase-title {
        align-items: stretch;
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .rn-curated-manager__showcase-title em,
    .rn-curated-manager__showcase-note {
        width: 100%;
        justify-content: center;
        white-space: normal;
        text-align: center;
    }

    .rn-curated-manager__manage-button,
    .rn-collection-toolbar__actions,
    .rn-collection-toolbar__actions a,
    .rn-curated-manager__form button,
    .rn-curated-manager__add-form button,
    .rn-curated-manager__edit-form button,
    .rn-curated-manager__delete-form button,
    .rn-curated-manager__remove-form button {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 390px) {
    .rn-community-classification {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        height: auto !important;
        min-height: 0 !important;
        max-height: none;
        gap: 7px;
        margin-right: auto;
        margin-left: auto;
        border-radius: 8px;
        overflow-x: hidden;
        overflow-y: visible;
        padding: 10px;
    }

    .rn-community-classification::after {
        margin-right: -10px;
        margin-left: -10px;
        margin-bottom: -10px;
    }

    .rn-community-classification__header {
        gap: 1px;
    }

    .rn-community-classification__header p {
        font-size: 10px;
    }

    .rn-community-classification__header span,
    .rn-community-classification__current span,
    .rn-community-classification__login p,
    .rn-community-classification__notice,
    .rn-community-classification__status {
        font-size: 10.5px;
    }

    .rn-community-classification__form select {
        min-height: 34px;
        padding: 6px 10px;
        font-size: 12px;
    }

    .rn-community-classification__current {
        align-items: flex-start;
        gap: 4px 6px;
    }

    .rn-community-classification__current strong {
        max-width: 100%;
        gap: 5px;
        font-size: 14px;
        overflow-wrap: anywhere;
    }

    .rn-community-classification__tools {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        flex-direction: column;
        gap: 6px;
        align-items: stretch;
        align-content: start;
        width: 100%;
        max-width: 100%;
        height: auto !important;
        min-height: 0 !important;
    }

    .rn-community-classification__change,
    .rn-community-classification__results {
        display: block;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        flex: 0 1 auto;
        height: auto !important;
        min-height: 0;
        max-height: none;
        overflow: visible;
    }

    .rn-community-classification__change[open],
    .rn-community-classification__results[open] {
        flex: 0 1 auto;
        flex-basis: auto;
        align-self: stretch;
        height: auto !important;
        min-height: 0 !important;
        max-height: none;
    }

    .rn-community-classification__change[open] summary,
    .rn-community-classification__results[open] summary {
        margin-bottom: 6px;
    }

    .rn-community-classification__change[open] .rn-community-classification__form,
    .rn-community-classification__results[open] .rn-community-classification__result-list {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        height: auto !important;
        min-height: 0 !important;
    }

    .rn-community-classification__change[open] ~ .rn-community-classification__results {
        display: none;
    }

    .rn-community-classification__change summary,
    .rn-community-classification__results summary,
    .rn-community-classification__login a {
        width: 100%;
        min-height: 34px;
        height: auto;
        padding: 7px 10px;
        font-size: 11px;
        line-height: 1.15;
        white-space: normal;
    }

    .rn-community-classification__result-list {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
        gap: 6px;
        border-radius: 7px;
        padding: 6px;
    }

    .rn-community-classification__result-row {
        grid-template-columns: minmax(0, 1fr) minmax(32px, auto);
        gap: 4px 6px;
        min-height: 0;
        padding: 5px 6px;
    }

    .rn-community-classification__result-label {
        gap: 5px;
        font-size: 11px;
        line-height: 1.2;
    }

    .rn-community-classification__result-label .rn-classification-icon {
        width: 20px;
        height: 20px;
        flex-basis: 20px;
        font-size: 10px;
    }

    .rn-community-classification__result-row strong {
        font-size: 11px;
    }

    .rn-community-classification__result-bar {
        height: 2px;
    }
}

/* v1.0.65 profile regression repair: keep the Red Note polish, restore usable scale. */
.rn-account {
    gap: clamp(24px, 3vw, 34px);
}

.rn-account-hero {
    gap: 6px;
    padding: clamp(18px, 3vw, 30px);
}

.rn-account-hero__lede {
    max-width: 760px;
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.12;
}

.rn-account-panel {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.46fr) auto;
    gap: 14px;
    padding: clamp(16px, 2.4vw, 24px);
}

.rn-account-profile {
    gap: 12px;
}

.rn-account-avatar {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    font-size: 20px;
}

.rn-account-profile__main {
    gap: 4px;
}

.rn-account-panel h2 {
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.08;
}

.rn-collector-name-row {
    gap: 6px;
}

.rn-collector-name-editor summary,
.rn-profile-image-editor summary {
    min-height: 30px;
    padding: 6px 10px;
    font-size: 11px;
    box-shadow: 0 5px 12px rgba(22, 27, 31, 0.06);
}

.rn-collector-name-form,
.rn-profile-image-form {
    gap: 7px;
    margin-top: 8px;
    padding: 10px;
}

.rn-profile-image-form p {
    font-size: 12px;
}

.rn-account-details {
    gap: 6px;
}

.rn-account-details div {
    gap: 6px;
    padding: 8px 10px;
}

.rn-account-details dt {
    font-size: 11px;
}

.rn-account-details dd {
    font-size: 13px;
}

.rn-account-logout {
    min-height: 36px;
    padding: 8px 13px;
    font-size: 12px;
    box-shadow: 0 6px 14px rgba(22, 27, 31, 0.06);
}

.rn-collector-progress {
    gap: 16px;
    padding: clamp(18px, 2.6vw, 26px);
    box-shadow: 0 16px 36px rgba(22, 27, 31, 0.09);
}

.rn-collector-progress__header {
    gap: 3px;
}

.rn-collector-progress__header .rn-account-eyebrow {
    font-size: clamp(14px, 1.6vw, 18px);
}

.rn-achievements-section__header .rn-account-eyebrow {
    font-size: 13px;
}

.rn-collector-progress__header h2 {
    font-size: clamp(24px, 2.4vw, 32px);
}

.rn-collector-progress__grid {
    gap: 12px;
}

.rn-collector-level-card,
.rn-collector-stat {
    gap: 6px;
    padding: clamp(14px, 1.8vw, 18px);
}

.rn-collector-level-card strong,
.rn-collector-stat strong {
    font-size: clamp(22px, 2.4vw, 30px);
}

.rn-collector-level-card p {
    font-size: 14px;
}

.rn-collector-progress-bar {
    height: 10px;
}

.rn-member-profile {
    gap: clamp(20px, 2.8vw, 30px);
    padding: clamp(20px, 3vw, 34px) clamp(14px, 2.4vw, 24px) clamp(32px, 4vw, 52px);
}

.rn-member-profile__hero {
    grid-template-columns: auto minmax(240px, 1fr) minmax(280px, 0.86fr);
    gap: clamp(18px, 3vw, 30px);
    padding: clamp(22px, 3.6vw, 34px);
}

.rn-member-profile__hero h1 {
    font-size: clamp(34px, 4.8vw, 56px);
    line-height: 1;
}

.rn-member-profile__avatar {
    width: clamp(76px, 8vw, 112px);
    height: clamp(76px, 8vw, 112px);
    flex-basis: clamp(76px, 8vw, 112px);
    font-size: clamp(26px, 3.4vw, 38px);
}

.rn-member-profile__hero-trophy-card {
    gap: 12px;
    padding: clamp(14px, 2vw, 18px);
}

.rn-member-profile__hero-trophy-icon {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
}

.rn-member-profile__hero-trophy-icon::before {
    font-size: 28px;
}

.rn-member-profile__hero-trophy-card strong {
    font-size: clamp(19px, 2vw, 25px);
}

.rn-member-profile__section-title,
.rn-member-profile__recent-trophies h2,
.rn-member-profile__trophy-group h2 {
    font-size: clamp(20px, 2vw, 26px);
}

.rn-member-profile__follow-form button,
.rn-member-profile__follow-login,
.rn-member-profile__discovery-link a {
    min-height: 38px;
    padding: 9px 13px;
    font-size: 11px;
    box-shadow: 0 7px 16px rgba(22, 27, 31, 0.07);
}

@media (max-width: 980px) {
    .rn-member-profile__hero {
        grid-template-columns: auto minmax(0, 1fr);
    }
}

@media (max-width: 767px) {
    .rn-account {
        gap: 22px;
    }

    .rn-account-hero {
        padding: 18px;
    }

    .rn-account-hero__lede {
        font-size: 22px;
    }

    .rn-account-panel {
        gap: 12px;
        padding: 16px;
    }

    .rn-account-avatar {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        font-size: 18px;
    }

    .rn-account-panel h2 {
        font-size: 22px;
    }

    .rn-account-logout {
        justify-self: start;
        width: auto;
        max-width: 100%;
    }

    .rn-collector-progress {
        gap: 12px;
        padding: 16px;
    }

    .rn-collector-progress__header h2 {
        font-size: 22px;
    }

    .rn-achievements-section__header .rn-account-eyebrow {
        font-size: 12px;
    }

    .rn-collector-level-card,
    .rn-collector-stat {
        padding: 14px;
    }

    .rn-member-profile {
        gap: 18px;
        padding: 18px 14px 30px;
    }

    .rn-member-profile__hero {
        padding: 18px;
        gap: 14px;
    }

    .rn-member-profile__hero h1 {
        font-size: 30px;
    }

    .rn-member-profile__avatar {
        width: 74px;
        height: 74px;
        flex-basis: 74px;
        font-size: 25px;
    }

    .rn-member-profile__hero-trophy-card {
        padding: 14px;
    }

    .rn-member-profile__hero-trophy-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .rn-member-profile__hero-trophy-icon::before {
        font-size: 22px;
    }

    .rn-member-profile__hero-trophy-card strong {
        font-size: 18px;
    }
}

/* v1.0.67 My Collection workflow and narrow-mobile repair. */
.rn-curated-manager__panel {
    display: grid;
    gap: 10px;
    margin-top: 4px;
}

.rn-curated-manager__panel > summary,
.rn-curated-manager__edit-panel > summary {
    display: inline-flex;
    min-height: 38px;
    width: fit-content;
    max-width: 100%;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(168, 24, 39, 0.22);
    border-radius: 999px;
    background: var(--rn-red);
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 950;
    line-height: 1;
    list-style: none;
    padding: 10px 14px;
    text-transform: uppercase;
}

.rn-curated-manager__edit-panel > summary {
    min-height: 34px;
    background: #fff8e7;
    color: var(--rn-red-dark);
}

.rn-curated-manager__panel > summary::-webkit-details-marker,
.rn-curated-manager__edit-panel > summary::-webkit-details-marker {
    display: none;
}

.rn-curated-manager__panel > summary::marker,
.rn-curated-manager__edit-panel > summary::marker {
    content: "";
}

.rn-curated-manager__panel-content {
    display: grid;
    gap: 12px;
    min-width: 0;
    border: 1px solid rgba(184, 148, 70, 0.24);
    border-radius: 8px;
    background: rgba(255, 248, 231, 0.5);
    padding: 12px;
}

.rn-curated-manager__edit-panel,
.rn-curated-manager__items,
.rn-curated-manager__delete-form {
    display: grid;
    gap: 9px;
    min-width: 0;
}

.rn-curated-manager__album-row {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    min-width: 0;
    border: 1px solid rgba(184, 148, 70, 0.22);
    border-radius: 8px;
    background: #fffdf7;
    padding: 8px;
}

.rn-curated-manager__album-cover {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 6px;
    background: linear-gradient(135deg, #24272a, #7a1520);
    color: #f2cf77;
    font-size: 11px;
    font-weight: 950;
    text-decoration: none;
}

.rn-curated-manager__album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rn-curated-manager__album-main {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.rn-curated-manager__album-main h4 {
    margin: 0;
    color: var(--rn-ink);
    font-size: 14px;
    line-height: 1.2;
}

.rn-curated-manager__album-main h4 a {
    color: inherit;
    text-decoration: none;
}

.rn-curated-manager__album-main time,
.rn-curated-manager__empty-list {
    color: var(--rn-muted);
    font-size: 12px;
    font-weight: 800;
}

.rn-curated-manager__empty-list {
    margin: 0;
}

.rn-curated-manager__remove-form {
    justify-self: end;
}

.rn-curated-manager__remove-form button {
    min-height: 34px;
    width: auto;
    padding: 9px 12px;
}

.rn-curated-manager__shelf-link {
    width: fit-content;
    max-width: 100%;
}

@media (max-width: 767px) {
    .rn-account-panel {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .rn-account-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .rn-account-profile__main {
        width: 100%;
        min-width: 0;
        align-items: stretch;
        text-align: center;
    }

    .rn-account-avatar {
        margin-right: auto;
        margin-left: auto;
    }

    .rn-account-panel h2 {
        max-width: 100%;
        overflow-wrap: anywhere;
        font-size: clamp(20px, 6vw, 24px);
    }

    .rn-collector-name-row {
        justify-content: center;
        width: 100%;
    }

    .rn-collector-name-editor,
    .rn-profile-image-editor,
    .rn-profile-image-form {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .rn-collector-name-editor summary,
    .rn-profile-image-editor summary {
        display: flex;
        min-height: 34px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        align-items: center;
        justify-content: center;
        padding: 7px 10px;
        text-align: center;
    }

    .rn-collector-name-form,
    .rn-profile-image-form {
        min-width: 0;
        text-align: left;
    }

    .rn-account-details {
        width: 100%;
        min-width: 0;
    }

    .rn-account-logout {
        justify-self: stretch;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    .rn-curated-manager__panel > summary,
    .rn-curated-manager__edit-panel > summary,
    .rn-curated-manager__shelf-link {
        width: 100%;
    }

    .rn-curated-manager__album-row {
        grid-template-columns: 40px minmax(0, 1fr);
        align-items: start;
    }

    .rn-curated-manager__album-cover {
        width: 40px;
        height: 40px;
    }

    .rn-curated-manager__remove-form {
        grid-column: 1 / -1;
        justify-self: stretch;
    }

    .rn-curated-manager__remove-form button {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 390px) {
    .rn-account-panel {
        gap: 10px;
        padding: 14px;
    }

    .rn-account-avatar {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        font-size: 17px;
    }

    .rn-account-panel h2 {
        font-size: 20px;
        line-height: 1.12;
    }

    .rn-account-details div {
        padding: 7px 9px;
    }

    .rn-account-logout,
    .rn-collector-name-editor summary,
    .rn-profile-image-editor summary {
        min-height: 34px;
        font-size: 11px;
    }
}

/* v1.0.68 simplified My Collection list management. */
.rn-curated-manager__list-stack {
    display: grid;
    gap: 22px;
    min-width: 0;
}

.rn-curated-manager__list-block {
    display: grid;
    gap: 14px;
    min-width: 0;
    border-top: 1px solid rgba(184, 148, 70, 0.3);
    padding-top: 20px;
}

.rn-curated-manager__list-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
    min-width: 0;
}

.rn-curated-manager__list-heading {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.rn-curated-manager__list-heading h3 {
    margin: 0;
    color: var(--rn-ink);
    font-size: 22px;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.rn-curated-manager__list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rn-curated-manager__list-meta span {
    display: inline-flex;
    border: 1px solid rgba(184, 148, 70, 0.28);
    border-radius: 999px;
    background: #fffaf0;
    color: #7a1520;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    padding: 7px 9px;
}

.rn-curated-manager__list-summary p {
    margin: 0;
    color: var(--rn-muted);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
}

.rn-curated-manager__list-controls {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
    gap: 14px;
    align-items: start;
    min-width: 0;
}

.rn-curated-manager__list-controls .rn-curated-manager__add-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: end;
    margin-top: 0;
    min-width: 0;
}

.rn-curated-manager__list-controls .rn-curated-manager__edit-form {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(150px, 0.6fr) auto;
    gap: 10px;
    align-items: end;
    min-width: 0;
}

.rn-curated-manager__list-controls textarea,
.rn-curated-manager__list-controls select {
    min-width: 0;
}

.rn-curated-manager__items {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.rn-curated-manager__album-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-width: 0;
    border: 1px solid rgba(184, 148, 70, 0.22);
    border-radius: 7px;
    background: #fffdf7;
    padding: 9px 10px;
}

.rn-curated-manager__album-main {
    min-width: 0;
}

.rn-curated-manager__album-main h4 {
    margin: 0;
    color: var(--rn-ink);
    font-size: 14px;
    line-height: 1.25;
    overflow-wrap: normal;
    word-break: normal;
}

.rn-curated-manager__album-main h4 a {
    color: inherit;
    text-decoration: none;
}

.rn-curated-manager__album-main time {
    display: block;
    margin-top: 3px;
    color: var(--rn-muted);
    font-size: 12px;
    font-weight: 800;
}

.rn-curated-manager__remove-form {
    justify-self: end;
}

.rn-curated-manager__remove-form button {
    min-height: 34px;
    width: auto;
    padding: 9px 12px;
}

.rn-curated-manager__delete-form {
    justify-self: start;
}

.rn-curated-manager__delete-form button {
    min-height: 36px;
}

.rn-curated-manager__shelf-link {
    justify-self: end;
    width: auto;
    margin-top: 0;
}

@media (max-width: 900px) {
    .rn-curated-manager__list-summary,
    .rn-curated-manager__list-controls,
    .rn-curated-manager__list-controls .rn-curated-manager__add-form,
    .rn-curated-manager__list-controls .rn-curated-manager__edit-form {
        grid-template-columns: 1fr;
    }

    .rn-curated-manager__shelf-link,
    .rn-curated-manager__delete-form {
        justify-self: stretch;
    }
}

@media (max-width: 640px) {
    .rn-curated-manager__list-block {
        gap: 12px;
        padding-top: 18px;
    }

    .rn-curated-manager__list-heading h3 {
        font-size: 20px;
    }

    .rn-curated-manager__album-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .rn-curated-manager__remove-form,
    .rn-curated-manager__remove-form button,
    .rn-curated-manager__delete-form button,
    .rn-curated-manager__list-controls .rn-curated-manager__add-form button,
    .rn-curated-manager__list-controls .rn-curated-manager__edit-form button {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* Curated Collections visual shelf restore */
.rn-curated-manager__subhead {
    display: grid;
    gap: 5px;
    margin: 18px 0 10px;
}

.rn-curated-manager__subhead--lists {
    margin-top: 26px;
}

.rn-curated-manager__subhead h3 {
    margin: 0;
    color: #711526;
    font-size: 20px;
    line-height: 1.16;
}

.rn-curated-manager__subhead p {
    margin: 0;
    max-width: 680px;
    color: var(--rn-muted);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.42;
}

.rn-curated-manager__visual-create {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
    border: 1px solid rgba(122, 28, 42, 0.16);
    border-radius: 14px;
    background: linear-gradient(135deg, #fff8ea 0%, #f4ead8 100%);
    box-shadow: 0 16px 34px rgba(38, 20, 18, 0.08);
}

.rn-curated-manager__visual-fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(140px, 0.35fr);
    gap: 12px;
    align-items: end;
}

.rn-curated-manager__visual-description {
    grid-column: 1 / -1;
}

.rn-curated-manager__visual-picker-wrap {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.rn-curated-manager__visual-picker-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--rn-ink);
}

.rn-curated-manager__visual-picker-head strong {
    display: block;
    color: #711526;
    font-size: 14px;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.rn-curated-manager__visual-picker-head small {
    display: block;
    margin-top: 3px;
    color: var(--rn-muted);
    font-size: 12px;
    font-weight: 800;
}

.rn-curated-manager__visual-picker,
.rn-curated-manager__mini-picker {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
    max-height: 278px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 2px 2px 6px;
    min-width: 0;
}

.rn-curated-manager__mini-picker {
    grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
    max-height: 226px;
}

.rn-curated-manager__album-choice {
    position: relative;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 9px;
    align-items: center;
    min-width: 0;
    margin: 0;
    padding: 8px;
    border: 1px solid rgba(122, 28, 42, 0.16);
    border-radius: 12px;
    background: rgba(255, 253, 247, 0.86);
    color: var(--rn-ink);
    cursor: pointer;
    box-sizing: border-box;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.rn-curated-list-card__body .rn-curated-manager__album-choice span,
.rn-curated-list-card__body .rn-curated-manager__selected-strip span {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-transform: none;
}

.rn-curated-manager__album-choice:hover,
.rn-curated-manager__album-choice.is-selected {
    border-color: rgba(184, 148, 70, 0.72);
    box-shadow: 0 10px 20px rgba(122, 28, 42, 0.12);
    transform: translateY(-1px);
}

.rn-curated-manager__album-choice.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

.rn-curated-manager__album-choice input {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 16px;
    height: 16px;
    min-height: 0;
    accent-color: #8f182b;
}

.rn-curated-manager__album-choice-cover,
.rn-curated-manager__selected-tile,
.rn-curated-manager__visual-item-thumb {
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 9px;
    background: linear-gradient(135deg, #38131b, #7d1b2e);
    color: #f7df9d;
    font-weight: 900;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.rn-curated-manager__album-choice-cover {
    width: 54px;
    aspect-ratio: 1;
}

.rn-curated-manager__album-choice-cover img,
.rn-curated-manager__selected-tile img,
.rn-curated-manager__visual-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rn-curated-manager__album-choice-text {
    display: grid;
    gap: 3px;
    min-width: 0;
    padding-right: 16px;
}

.rn-curated-manager__album-choice-text strong {
    overflow: hidden;
    color: var(--rn-ink);
    font-size: 12px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rn-curated-manager__album-choice-text small {
    overflow: hidden;
    color: var(--rn-muted);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rn-curated-manager__selected-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding-top: 2px;
}

.rn-curated-manager__selected-strip[hidden],
.rn-curated-manager__compact-panel[hidden] {
    display: none !important;
}

.rn-curated-manager__selected-tile {
    width: 42px;
    aspect-ratio: 1;
    font-size: 11px;
}

.rn-curated-manager__visual-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.rn-curated-manager__showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.rn-curated-manager__showcase-card {
    overflow: hidden;
    border: 1px solid rgba(122, 28, 42, 0.16);
    border-radius: 14px;
    background: #fffaf0;
    box-shadow: 0 14px 30px rgba(41, 18, 16, 0.08);
}

.rn-curated-manager__showcase-card .rn-curated-list-card__covers {
    min-height: 116px;
}

.rn-curated-manager__showcase-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
}

.rn-curated-manager__showcase-title h3 {
    min-width: 0;
    font-size: 20px;
    line-height: 1.15;
}

.rn-curated-manager__showcase-title em {
    flex: 0 0 auto;
    border: 1px solid rgba(184, 148, 70, 0.35);
    border-radius: 999px;
    padding: 4px 8px;
    background: rgba(247, 223, 157, 0.28);
    color: #711526;
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}

.rn-curated-manager__compact-toggle {
    width: auto;
    min-height: 36px;
    margin-top: 8px;
    padding: 9px 14px;
    border: 0;
    border-radius: 999px;
    background: #86192d;
    color: #fff8ea;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(122, 28, 42, 0.18);
    cursor: pointer;
}

.rn-curated-manager__compact-panel {
    display: grid;
    gap: 14px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(122, 28, 42, 0.12);
}

.rn-curated-manager__compact-form,
.rn-curated-manager__compact-add {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.rn-curated-manager__compact-form label,
.rn-curated-manager__compact-add label {
    display: grid;
    gap: 5px;
}

.rn-curated-manager__visual-items {
    display: grid;
    gap: 8px;
}

.rn-curated-manager__visual-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    min-width: 0;
    padding: 8px;
    border: 1px solid rgba(122, 28, 42, 0.12);
    border-radius: 11px;
    background: rgba(255, 253, 247, 0.78);
}

.rn-curated-manager__visual-item-thumb {
    width: 52px;
    aspect-ratio: 1;
    text-decoration: none;
}

.rn-curated-manager__visual-item-main {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.rn-curated-manager__visual-item-main h4 {
    margin: 0;
    overflow-wrap: normal;
    color: var(--rn-ink);
    font-size: 13px;
    line-height: 1.2;
}

.rn-curated-manager__visual-item-main h4 a {
    color: inherit;
    text-decoration: none;
}

.rn-curated-manager__visual-item-main span,
.rn-curated-manager__visual-item-main time {
    overflow: hidden;
    color: var(--rn-muted);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rn-curated-manager__delete-compact {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 2px;
}

.rn-curated-manager__delete-compact button,
.rn-curated-manager__remove-form button {
    width: auto;
    min-height: 32px;
    padding: 8px 11px;
    border-radius: 999px;
    font-size: 11px;
    line-height: 1.1;
}

@media (max-width: 720px) {
    .rn-curated-manager__visual-fields {
        grid-template-columns: 1fr;
    }

    .rn-curated-manager__visual-picker,
    .rn-curated-manager__mini-picker {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-height: 248px;
    }

    .rn-curated-manager__showcase-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 390px) {
    .rn-curated-manager__visual-create,
    .rn-curated-manager__showcase-card .rn-curated-list-card__body {
        padding: 14px;
    }

    .rn-curated-manager__visual-picker,
    .rn-curated-manager__mini-picker {
        grid-template-columns: 1fr;
        max-height: 238px;
    }

    .rn-curated-manager__visual-item {
        grid-template-columns: 46px minmax(0, 1fr);
    }

    .rn-curated-manager__visual-item-thumb {
        width: 46px;
    }

    .rn-curated-manager__remove-form {
        grid-column: 1 / -1;
        justify-self: stretch;
    }

    .rn-curated-manager__remove-form button,
    .rn-curated-manager__compact-toggle,
    .rn-curated-manager__visual-actions button,
    .rn-curated-manager__compact-form button,
    .rn-curated-manager__compact-add button,
    .rn-curated-manager__delete-compact button {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* v1.0.76: mockup-led Curated Collections visual restoration. */
.rn-curated-manager__intro {
    margin-bottom: 18px;
}

.rn-curated-manager__visual-create {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 280px) !important;
    gap: 26px 44px;
    padding: 28px !important;
    border: 2px solid rgba(34, 24, 20, 0.82) !important;
    border-radius: 8px !important;
    background: #f7f1e6 !important;
    box-shadow: none !important;
}

.rn-curated-manager__visual-fields {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) minmax(210px, 280px) !important;
    gap: 22px 72px !important;
}

.rn-curated-manager__visual-description {
    grid-column: 1 / 2;
}

.rn-curated-manager__visual-create input,
.rn-curated-manager__visual-create textarea,
.rn-curated-manager__visual-create select {
    border: 1px solid rgba(34, 24, 20, 0.72) !important;
    border-radius: 2px !important;
    background: rgba(255, 253, 247, 0.46) !important;
    box-shadow: none !important;
}

.rn-curated-manager__visual-picker-wrap {
    grid-column: 1 / 2;
}

.rn-curated-manager__visual-picker {
    grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)) !important;
    max-height: 292px;
    gap: 14px 18px !important;
    padding: 0 4px 4px 0;
}

.rn-curated-manager__album-choice {
    grid-template-columns: 1fr !important;
    gap: 7px !important;
    padding: 7px !important;
    border-radius: 4px !important;
    background: rgba(255, 253, 247, 0.55) !important;
    box-shadow: none !important;
}

.rn-curated-manager__album-choice-cover {
    width: 100% !important;
    border-radius: 3px !important;
}

.rn-curated-manager__album-choice-text {
    padding-right: 0 !important;
}

.rn-curated-manager__album-choice-text strong {
    font-size: 11px;
}

.rn-curated-manager__album-choice-text small {
    display: none;
}

.rn-curated-manager__visual-actions {
    grid-column: 2 / 3;
    align-self: end;
    justify-content: stretch;
}

.rn-curated-manager__visual-actions button {
    width: 100%;
    min-height: 58px;
    border: 1px solid rgba(34, 24, 20, 0.72) !important;
    border-radius: 2px !important;
    background: rgba(255, 253, 247, 0.6) !important;
    color: #711526 !important;
    box-shadow: none !important;
}

.rn-curated-manager__selected-strip {
    gap: 9px;
}

.rn-curated-manager__selected-tile {
    width: 48px;
    border-radius: 3px;
}

.rn-curated-manager__showcase-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    margin-top: 22px !important;
}

.rn-curated-manager__showcase-card {
    display: grid !important;
    grid-template-columns: minmax(220px, 36%) minmax(0, 1fr);
    overflow: visible !important;
    min-height: 172px;
    border: 2px solid rgba(34, 24, 20, 0.82) !important;
    border-radius: 8px !important;
    background: #f7f1e6 !important;
    box-shadow: none !important;
}

.rn-curated-manager__showcase-card .rn-curated-list-card__covers {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(52px, 76px));
    gap: 16px;
    align-content: center;
    justify-content: start;
    min-height: 0 !important;
    padding: 24px 22px !important;
    background: transparent !important;
}

.rn-curated-manager__showcase-card .rn-curated-list-card__covers span {
    width: 100% !important;
    aspect-ratio: 1;
    border-radius: 3px !important;
    box-shadow: none !important;
}

.rn-curated-manager__shelf-body {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(132px, 178px);
    gap: 24px;
    align-items: center;
    padding: 24px 28px !important;
}

.rn-curated-manager__shelf-copy {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.rn-curated-manager__showcase-title {
    justify-content: flex-start !important;
}

.rn-curated-manager__showcase-title h3 {
    font-size: 18px !important;
}

.rn-curated-manager__shelf-count,
.rn-curated-manager__shelf-count span {
    color: var(--rn-ink) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    text-transform: none !important;
}

.rn-curated-manager__compact-toggle {
    justify-self: stretch;
    min-height: 48px;
    margin: 0 !important;
    border: 1px solid rgba(34, 24, 20, 0.72) !important;
    border-radius: 2px !important;
    background: rgba(255, 253, 247, 0.58) !important;
    color: #711526 !important;
    box-shadow: none !important;
}

.rn-curated-manager__compact-panel {
    grid-column: 1 / -1;
    margin: 0 22px 22px !important;
    padding: 18px !important;
    border: 1px solid rgba(122, 28, 42, 0.18) !important;
    border-radius: 6px;
    background: rgba(255, 253, 247, 0.62);
}

@media (max-width: 820px) {
    .rn-curated-manager__visual-create,
    .rn-curated-manager__visual-fields {
        grid-template-columns: 1fr !important;
    }

    .rn-curated-manager__visual-picker-wrap,
    .rn-curated-manager__visual-actions,
    .rn-curated-manager__visual-description {
        grid-column: 1 / -1;
    }

    .rn-curated-manager__showcase-card {
        grid-template-columns: 1fr;
    }

    .rn-curated-manager__shelf-body {
        grid-template-columns: minmax(0, 1fr) minmax(116px, 160px);
    }
}

@media (max-width: 520px) {
    .rn-curated-manager__visual-create {
        padding: 18px !important;
    }

    .rn-curated-manager__visual-picker {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .rn-curated-manager__showcase-card .rn-curated-list-card__covers {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
        padding: 18px 18px 8px !important;
    }

    .rn-curated-manager__shelf-body {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px 18px 20px !important;
    }

    .rn-curated-manager__compact-panel {
        margin: 0 18px 18px !important;
        padding: 14px !important;
    }
}
