.site-header-inner {
    height: 76px;
    display: grid;
    grid-template-columns: auto minmax(220px, 1fr) auto;
    gap: 18px;
}

.brand-link {
    min-width: 0;
}

.brand-logo-wrap {
    width: 142px;
    height: 58px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.brand-logo {
    width: 142px;
    height: 58px;
    object-fit: contain;
}

.brand-fallback {
    display: none;
}

.nav-search {
    min-width: 0;
    height: 44px;
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #f7f7f7;
    padding: 0 5px 0 18px;
}

.nav-search input {
    min-width: 0;
    flex: 1;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #111827;
    font-size: 14px;
}

.nav-search input::placeholder {
    color: #9ca3af;
}

.nav-search button {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: #080808;
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.nav-search button svg {
    width: 18px;
    height: 18px;
}

.section-head {
    justify-content: center;
    text-align: center;
}

.section-action {
    display: flex;
    justify-content: center;
    margin: 30px 0 8px;
}

.copy-link-btn {
    position: relative;
    overflow: hidden;
    transition: transform .18s ease, background .18s ease;
}

.copy-link-btn.copied {
    background: #080808;
    color: #fff;
    animation: copyPulse .45s ease;
}

.copy-link-btn.copy-failed {
    background: #fee2e2;
    color: #991b1b;
}

.copy-link-btn.copied svg {
    animation: copySpin .45s ease;
}

@keyframes copyPulse {
    0% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.035);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes copySpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 900px) {
    .site-header-inner {
        grid-template-columns: auto auto;
        grid-template-areas:
            "brand nav"
            "search search";
        height: auto;
        padding: 12px 0;
    }

    .brand-link {
        grid-area: brand;
    }

    .site-nav {
        grid-area: nav;
    }

    .nav-search {
        grid-area: search;
        width: 100%;
    }

    .brand-logo-wrap,
    .brand-logo {
        width: 118px;
        height: 48px;
    }
}

@media (max-width: 520px) {
    .site-header-inner {
        width: min(100% - 24px, 1320px);
        gap: 10px;
    }

    .brand-logo-wrap,
    .brand-logo {
        width: 104px;
        height: 42px;
    }

    .site-nav a {
        padding: 0 9px;
    }

    .nav-search {
        height: 42px;
        padding-left: 14px;
    }

    .nav-search button {
        width: 34px;
        height: 34px;
    }

    .section-action {
        margin-top: 22px;
    }
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.site-main {
    flex: 1;
}

.home-intro {
    max-width: 920px;
    margin: 10px auto 42px;
    text-align: center;
}

.home-intro h1 {
    margin: 24px 0 18px;
    font-size: clamp(46px, 7vw, 92px);
    line-height: .9;
    letter-spacing: 0;
}

.home-intro p {
    max-width: 760px;
    margin: 0 auto 28px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.home-section-band {
    padding: 62px 0 54px;
    border-bottom: 1px solid rgba(102, 112, 133, .16);
}

.home-band {
    width: calc(100vw - 48px);
    max-width: 1440px;
    margin: 0 0 0 50%;
    transform: translateX(-50%);
    padding: 56px 24px;
    border-top: 1px solid rgba(102, 112, 133, .16);
}

.home-band-alt {
    background: rgba(255, 255, 255, .46);
    border-radius: 26px;
    border: 1px solid rgba(229, 231, 235, .9);
}

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

.catalog-heading h1 {
    margin: 16px 0 8px;
    font-size: clamp(38px, 5vw, 64px);
    line-height: .95;
    letter-spacing: 0;
}

.catalog-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

.catalog-page-v2 {
    width: calc(100vw - 48px);
    max-width: 1880px;
    margin-left: 50%;
    margin-top: -18px;
    transform: translateX(-50%);
}

.catalog-divider {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
    padding: 0 2px 18px;
    border-bottom: 1px solid rgba(102, 112, 133, .18);
}

.catalog-divider span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 0 14px;
    color: #4b5563;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.catalog-shell {
    display: grid;
    grid-template-columns: 292px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.filter-sidebar {
    padding: 20px;
    position: sticky;
    top: 100px;
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, .08);
}

.filter-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.filter-sidebar-head strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-sidebar-head svg,
.filter-group legend svg {
    width: 18px;
    height: 18px;
}

.filter-sidebar-head a {
    font-size: 12px;
    font-weight: 800;
    color: #667085;
}

.filter-group {
    border: 0;
    margin: 0;
    padding: 18px 0;
    border-bottom: 1px solid rgba(102, 112, 133, .16);
}

.filter-group:last-of-type {
    border-bottom: 0;
}

.filter-group legend {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 900;
}

.filter-pill {
    display: inline-flex;
    margin: 0 8px 9px 0;
    cursor: pointer;
}

.filter-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.filter-pill span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #bfc6d1;
    border-radius: 999px;
    padding: 0 14px;
    color: #667085;
    background: #fff;
    font-size: 12px;
    font-weight: 800;
}

.filter-pill svg {
    width: 14px;
    height: 14px;
}

.filter-pill small {
    margin-left: 6px;
    opacity: .72;
    font-size: 10px;
}

.filter-pill.is-selected span,
.filter-pill:has(input:checked) span {
    border-color: #090909;
    background: #090909;
    color: #fff;
}

.filter-apply {
    width: 100%;
    margin-top: 12px;
}

.catalog-results-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 38px;
    margin-bottom: 14px;
    color: #667085;
}

.catalog-results .catalog-grid {
    position: relative;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 24px;
    align-items: start;
}

@media (min-width: 721px) {
    .catalog-results .catalog-grid {
        display: block;
        columns: 5 220px;
        column-gap: 24px;
    }

    .catalog-results .catalog-grid .public-card.art-card {
        display: inline-block;
        width: 100%;
        margin: 0 0 24px;
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .catalog-results .catalog-grid .empty-card,
    .catalog-results .catalog-grid .loading-card {
        display: block;
        width: 100%;
        break-inside: avoid;
    }
}

.catalog-results .catalog-grid.is-loading::after {
    content: "Carregando...";
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    border-radius: 999px;
    background: rgba(8, 8, 8, .86);
    color: #fff;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 900;
    pointer-events: none;
}

.public-card.art-card {
    position: relative;
    display: block;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.public-card.art-card:hover {
    box-shadow: none;
}

.public-card-link {
    display: block;
    border-radius: 18px;
}

.art-card .public-thumb {
    border-radius: 18px;
    box-shadow: 0 16px 42px rgba(15, 23, 42, .12);
    transition: box-shadow .2s ease, transform .2s ease;
}

.art-card:hover .public-thumb {
    box-shadow: 0 20px 54px rgba(15, 23, 42, .16);
}

.art-card .public-thumb.skeleton,
.collection-cover.skeleton {
    background: linear-gradient(90deg, #e8edf3, #f7f9fb, #e8edf3);
    background-size: 200% 100%;
    animation: sk 1.2s infinite;
}

.art-card .public-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .2s ease;
}

.art-card .public-thumb img.is-loaded,
.collection-cover img.is-loaded {
    opacity: 1;
}

.card-view-mark {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%) scale(.92);
    width: 54px;
    height: 54px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(0, 0, 0, .78);
    opacity: 0;
    transition: opacity .2s ease, transform .2s ease;
    pointer-events: none;
    z-index: 3;
}

.card-view-mark svg {
    width: 24px;
    height: 24px;
}

.art-card:hover .card-view-mark,
.collection-card:hover .card-view-mark {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.card-copy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    min-width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 10px;
    color: #fff;
    background: rgba(0, 0, 0, .78);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
    cursor: pointer;
    overflow: hidden;
    transition: background .18s ease, min-width .18s ease, transform .18s ease;
}

.card-copy-btn svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.card-copy-btn span {
    width: 0;
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
    transition: width .18s ease, opacity .18s ease;
}

.card-copy-btn:hover,
.card-copy-btn.copied,
.card-copy-btn.copy-failed {
    min-width: 126px;
}

.card-copy-btn:hover span,
.card-copy-btn.copied span,
.card-copy-btn.copy-failed span {
    width: auto;
    opacity: 1;
}

.card-copy-btn.copied {
    background: #080808;
    animation: copyPulse .45s ease;
}

.card-copy-btn.copy-failed {
    background: #991b1b;
}

.collection-cover {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    background: #eef1f4;
    flex: 0 0 auto;
}

.collection-cover img,
.collection-card .collection-cover img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
}

.collections-grid-page {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    align-items: start;
}

.collection-card {
    box-shadow: 0 12px 34px rgba(15, 23, 42, .08);
}

.collection-card-large {
    display: block;
    padding: 14px;
    border-radius: 22px;
}

.collection-card-large .collection-cover {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    margin-bottom: 14px;
}

.collection-card-large strong {
    font-size: 22px;
}

.collection-card-large p {
    min-height: 36px;
}

.collections-shell .collections-grid {
    min-width: 0;
}

.site-footer,
.site-footer * {
    font-family: inherit;
}

.site-footer {
    border-top: 1px solid rgba(102, 112, 133, .18);
}

.site-footer-inner {
    align-items: flex-start;
}

.footer-brand {
    display: block;
}

.footer-logo {
    width: 132px;
    height: 58px;
    object-fit: contain;
    margin: 0 0 14px;
}

.footer-copy strong {
    display: block;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: 0;
}

.footer-copy p {
    max-width: 620px;
    font-size: 15px;
    line-height: 1.45;
}

.footer-info {
    padding-top: 72px;
    font-size: 15px;
}

@media (max-width: 1100px) {
    .catalog-page-v2 {
        width: min(100% - 28px, 1320px);
        margin-left: auto;
        transform: none;
    }

    .catalog-shell {
        grid-template-columns: 1fr;
    }

    .filter-sidebar {
        position: static;
    }

    .footer-info {
        padding-top: 0;
    }
}

@media (max-width: 720px) {
    .home-section-band,
    .home-band {
        width: min(100% - 28px, 1320px);
        margin-left: auto;
        transform: none;
        padding: 34px 0;
    }

    .home-intro {
        margin-top: 8px;
        text-align: left;
    }

    .home-intro h1 {
        font-size: 46px;
    }

    .home-intro p {
        font-size: 16px;
    }

    .catalog-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .catalog-divider {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .card-copy-btn {
        min-width: 34px;
        height: 34px;
    }

    .card-copy-btn:hover,
    .card-copy-btn.copied,
    .card-copy-btn.copy-failed {
        min-width: 112px;
    }

    .collection-cover {
        width: 86px;
        height: 86px;
    }

    .collection-card-large .collection-cover {
        width: 100%;
        height: auto;
    }

    .footer-logo {
        width: 116px;
        height: 50px;
    }
}

/* Final public skin adjustments */
.site-header {
    background: #050505;
    border-bottom-color: rgba(255, 255, 255, .12);
}

.site-header-inner {
    height: 70px;
}

.site-nav a {
    color: rgba(255, 255, 255, .86);
}

.site-nav a.is-active {
    background: #fff;
    color: #050505;
}

.nav-search {
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 12px 34px rgba(0, 0, 0, .22);
}

.nav-search button {
    background: #050505;
    color: #fff;
}

.btn,
.site-nav a,
.nav-search button,
.filter-apply {
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.btn:hover,
.site-nav a:hover,
.nav-search button:hover,
.filter-apply:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
}

.btn:active,
.site-nav a:active,
.nav-search button:active,
.filter-apply:active {
    transform: scale(.97);
}

.btn:hover svg,
.nav-search button:hover svg,
.filter-apply:hover svg {
    transform: rotate(-8deg) scale(1.08);
}

.btn svg,
.nav-search button svg,
.filter-apply svg {
    transition: transform .22s ease;
}

body:has(.home-intro) .site-main {
    padding-top: 24px;
}

.home-intro {
    margin: 0 auto 28px;
}

.home-intro h1 {
    margin: 18px 0 14px;
    font-size: clamp(42px, 5.6vw, 78px);
}

.home-intro p {
    margin-bottom: 22px;
    font-size: 17px;
}

.home-section-band {
    padding: 34px 0 30px;
}

.home-band {
    padding: 34px 24px 38px;
}

.home-band + .home-band {
    margin-top: 18px;
}

.home-band-alt {
    background: rgba(255, 255, 255, .62);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}

.section-head {
    margin: 26px 0 18px;
}

.section-action {
    margin: 24px 0 2px;
}

.collection-card,
.art-card .public-thumb,
.preview-image-card,
.about-art,
.preview-side {
    box-shadow: 0 18px 46px rgba(15, 23, 42, .11);
}

.collection-card p:empty {
    display: none;
}

.public-thumb,
.collection-cover {
    position: relative;
}

.public-thumb .card-view-mark,
.collection-cover .card-view-mark {
    inset: auto;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%) scale(.92);
}

.art-card:hover .public-thumb .card-view-mark,
.collection-card:hover .collection-cover .card-view-mark {
    transform: translate(-50%, -50%) scale(1);
}

.filter-sidebar {
    background: #050505;
    border-color: rgba(255, 255, 255, .12);
    color: #fff;
}

.filter-sidebar-head {
    border-bottom-color: rgba(255, 255, 255, .16);
}

.filter-sidebar-head a,
.filter-group legend {
    color: #fff;
}

.filter-group {
    border-bottom-color: rgba(255, 255, 255, .14);
}

.filter-pill span {
    background: transparent;
    border-color: rgba(255, 255, 255, .58);
    color: rgba(255, 255, 255, .88);
}

.filter-pill.is-selected span,
.filter-pill:has(input:checked) span {
    background: #fff;
    border-color: #fff;
    color: #050505;
}

.filter-apply,
.filter-sidebar .btn-dark {
    background: #fff;
    color: #050505;
}

.catalog-divider {
    border-bottom-color: rgba(8, 8, 8, .14);
}

.catalog-divider span {
    background: #050505;
    border-color: #050505;
    color: #fff;
}

.preview-side {
    background: #050505;
    border-color: rgba(255, 255, 255, .12);
    color: #fff;
}

.preview-side>p,
.preview-side .creator small {
    color: rgba(255, 255, 255, .68);
}

.preview-side .creator {
    border-top-color: rgba(255, 255, 255, .16);
    border-bottom-color: rgba(255, 255, 255, .16);
}

.preview-side .creator span {
    background: #fff;
    color: #050505;
}

.preview-side .copy-link-btn,
.preview-side .btn-primary {
    background: #fff;
    color: #050505;
}

.preview-side .tech-grid div {
    background: #111;
    border-color: rgba(255, 255, 255, .16);
}

.preview-side .tech-grid small {
    color: rgba(255, 255, 255, .58);
}

.preview-side .tags span {
    background: #fff;
    color: #050505;
}

.site-footer {
    background: #050505;
    color: #fff;
    border-top-color: rgba(255, 255, 255, .12);
}

.site-footer .footer-copy p,
.site-footer .footer-info {
    color: rgba(255, 255, 255, .72);
}

.site-footer .footer-copy strong {
    color: #fff;
}

.site-footer .footer-info svg {
    color: #fff;
}

@media (max-width: 900px) {
    .site-header-inner {
        height: auto;
    }
}

@media (max-width: 720px) {
    body:has(.home-intro) .site-main {
        padding-top: 18px;
    }

    .home-section-band,
    .home-band {
        padding: 26px 0;
    }

    .home-intro {
        text-align: center;
    }

    .home-intro h1 {
        font-size: 42px;
    }
}

/* Restore light colors and add text selection highlight */
::selection {
    background: rgba(24, 214, 207, .45);
    color: #050505;
    text-shadow: none;
}

.site-header {
    background: rgba(255, 255, 255, .88);
    border-bottom-color: var(--line);
}

.site-nav a {
    color: #303746;
}

.site-nav a.is-active {
    background: #090909;
    color: #fff;
}

.nav-search {
    background: #f7f7f7;
    border-color: var(--line);
    box-shadow: none;
}

.nav-search button {
    background: #080808;
    color: #fff;
}

.filter-sidebar {
    background: #fff;
    border-color: var(--line);
    color: var(--text);
}

.filter-sidebar-head {
    border-bottom-color: var(--line);
}

.filter-sidebar-head a {
    color: #667085;
}

.filter-group legend {
    color: var(--text);
}

.filter-group {
    border-bottom-color: rgba(102, 112, 133, .16);
}

.filter-pill span {
    background: #fff;
    border-color: #bfc6d1;
    color: #667085;
}

.filter-pill.is-selected span,
.filter-pill:has(input:checked) span {
    background: #090909;
    border-color: #090909;
    color: #fff;
}

.filter-apply,
.filter-sidebar .btn-dark {
    background: #080808;
    color: #fff;
}

.catalog-divider span {
    background: #fff;
    border-color: var(--line);
    color: #4b5563;
}

.preview-side {
    background: #fff;
    border-color: var(--line);
    color: var(--text);
}

.preview-side>p,
.preview-side .creator small {
    color: #667085;
}

.preview-side .creator {
    border-top-color: var(--line);
    border-bottom-color: var(--line);
    padding-left: 0;
}

.preview-side .creator span {
    display: none;
}

.preview-side .copy-link-btn,
.preview-side .btn-primary {
    background: var(--accent);
    color: #000;
}

.preview-side .tech-grid div {
    background: #fafafa;
    border-color: var(--line);
}

.preview-side .tech-grid small {
    color: #8a93a3;
}

.preview-side .tags span {
    background: #101828;
    color: #fff;
}

.site-footer {
    background: #fff;
    color: var(--text);
    border-top-color: var(--line);
}

.site-footer .footer-copy p,
.site-footer .footer-info {
    color: #667085;
}

.site-footer .footer-copy strong {
    color: var(--text);
}

.site-footer .footer-info svg {
    color: #667085;
}

.home-section-band,
.home-band {
    border-top: 0;
    border-bottom: 0;
}

.collection-card .collection-cover .card-view-mark {
    inset: auto !important;
    top: 50% !important;
    left: 50% !important;
    width: 68px;
    height: 68px;
    display: grid !important;
    place-items: center !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 999px;
    background: rgba(0, 0, 0, .78);
    color: #fff !important;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
    transform: translate(-50%, -50%) scale(.92);
}

.collection-card:hover .collection-cover .card-view-mark {
    transform: translate(-50%, -50%) scale(1);
}

.collection-card .collection-cover .card-view-mark svg {
    width: 32px;
    height: 32px;
    margin: 0;
    color: #fff !important;
    stroke: #fff !important;
}

/* Motion/video cards */
.art-card .public-thumb {
    aspect-ratio: var(--card-aspect, 4 / 5);
    position: relative;
    overflow: hidden;
}

.card-hover-video {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    background: #000;
    transition: opacity .2s ease;
}

.art-card.is-video.is-video-playing .card-hover-video {
    opacity: 1;
}

.art-card.is-video .card-view-mark {
    opacity: .94;
    transform: translate(-50%, -50%) scale(1);
}

.art-card.is-video:hover .card-view-mark,
.art-card.is-video.is-video-playing .card-view-mark {
    opacity: .16;
}

.art-card.is-video .card-view-mark svg {
    margin-left: 3px;
    fill: currentColor;
}

.preview-media-card {
    min-height: auto;
}

.preview-media-card.is-video {
    display: grid;
    place-items: center;
}

.preview-video-button {
    position: relative;
    display: block;
    width: min(390px, 100%);
    aspect-ratio: var(--preview-aspect, 4 / 5);
    padding: 0;
    border: 0;
    border-radius: 22px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
}

.preview-media-card.is-wide .preview-video-button {
    width: min(780px, 100%);
}

.preview-video-button .preview-main-image {
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
    object-fit: cover;
    box-shadow: none;
}

.preview-hover-video {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

.preview-video-button.is-hover-playing .preview-hover-video {
    opacity: 1;
}

.preview-video-button.is-hover-playing .preview-play-mark {
    opacity: .14;
}

.preview-play-mark {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    border-radius: 999px;
    background: rgba(0, 0, 0, .78);
    color: #fff;
    transform: translate(-50%, -50%);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .26);
}

.preview-play-mark svg {
    width: 34px;
    height: 34px;
    margin-left: 4px;
    fill: currentColor;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 23, 42, .82);
}

.video-modal.show {
    display: flex;
}

.video-modal>button {
    position: absolute;
    top: 18px;
    right: 22px;
    z-index: 2;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.video-modal-player {
    width: min(960px, 96vw);
    max-height: 88vh;
    aspect-ratio: var(--preview-aspect, 16 / 9);
    overflow: hidden;
    border-radius: 24px;
    background: #000;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .34);
}

.video-modal-player video {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: contain;
    background: #000;
}

.mobile-filter-toggle,
.filter-backdrop,
.filter-close-btn {
    display: none;
}

.filter-sidebar-head .filter-close-btn {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: #f3f4f6;
    color: #111827;
    place-items: center;
    cursor: pointer;
}

.filter-sidebar-head .filter-close-btn svg {
    width: 18px;
    height: 18px;
}

.collections-grid-page.is-loading,
.catalog-grid.is-loading {
    opacity: .72;
}

html {
    scrollbar-color: #050505 #e5e7eb;
    scrollbar-width: thin;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
.filter-sidebar::-webkit-scrollbar {
    width: 10px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
.filter-sidebar::-webkit-scrollbar-track {
    background: #e5e7eb;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
.filter-sidebar::-webkit-scrollbar-thumb {
    background: #050505;
    border: 2px solid #e5e7eb;
    border-radius: 999px;
}

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

.home-five-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-six-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.home-fixed-grid .public-thumb {
    aspect-ratio: var(--card-aspect, 4 / 5);
}

.home-fixed-grid .public-thumb img,
.home-fixed-grid .card-hover-video {
    object-fit: cover;
}

.related-head {
    justify-content: center;
    text-align: center;
}

.related-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: start;
}

@media (max-width: 720px) {
    html,
    body {
        overflow-x: hidden;
    }

    .site-main,
    .site-header-inner,
    .site-footer-inner {
        width: calc(100% - 28px);
        max-width: 1320px;
    }

    .site-main {
        padding-left: 0;
        padding-right: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .catalog-page-v2,
    .preview-layout,
    .breadcrumb,
    .section-head,
    .public-card-grid,
    .collections-grid {
        width: 100%;
        max-width: 100%;
    }

    .breadcrumb {
        margin-left: 0;
        margin-right: 0;
    }

    .catalog-page-v2 {
        margin-top: 0;
    }

    .catalog-divider {
        margin-bottom: 14px;
    }

    .home-section-band,
    .home-band,
    .home-intro {
        width: min(100% - 28px, 1320px);
        margin-left: auto !important;
        margin-right: auto !important;
        transform: none !important;
    }

    .home-band {
        padding-left: 0;
        padding-right: 0;
    }

    .home-collections-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 10px;
    }

    .home-collections-grid .collection-card {
        display: block;
        min-width: 0;
        padding: 8px;
        border-radius: 16px;
        text-align: center;
    }

    .home-collections-grid .collection-cover {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        margin: 0 0 8px;
        border-radius: 13px;
    }

    .home-collections-grid .collection-card > div:last-child > span {
        justify-content: center;
        font-size: 8px;
        letter-spacing: .08em;
    }

    .home-collections-grid .collection-card strong {
        margin-top: 4px;
        font-size: 12px;
        line-height: 1.15;
        overflow-wrap: anywhere;
    }

    .home-collections-grid .collection-card p {
        display: none;
    }

    .home-five-grid,
    .home-six-grid,
    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px;
    }

    .mobile-filter-toggle {
        display: inline-flex;
        width: 100%;
        margin: 0 0 18px;
    }

    .filter-backdrop {
        position: fixed;
        inset: 0;
        z-index: 70;
        background: rgba(15, 23, 42, .52);
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease;
    }

    .filter-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 80;
        width: min(86vw, 340px);
        max-height: 100vh;
        overflow-y: auto;
        border-radius: 0 24px 24px 0;
        transform: translateX(-105%);
        transition: transform .24s ease;
        box-shadow: 24px 0 80px rgba(15, 23, 42, .24);
    }

    .filter-sidebar-head {
        position: sticky;
        top: 0;
        z-index: 2;
        background: #fff;
        padding-top: 4px;
    }

    .filter-close-btn,
    .filter-sidebar-head .filter-close-btn {
        display: grid;
    }

    body.filters-open {
        overflow: hidden;
    }

    body.filters-open .filter-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    body.filters-open .filter-sidebar {
        transform: translateX(0);
    }

    .catalog-shell,
    .collections-shell {
        display: block;
    }

    .catalog-results,
    .collections-grid-page {
        width: 100%;
    }

    .collections-grid-page {
        grid-template-columns: 1fr;
        gap: 18px;
    }

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

    .home-intro h1,
    .preview-side h1 {
        overflow-wrap: anywhere;
    }

    .preview-layout {
        gap: 18px;
    }

    .preview-image-card,
    .preview-side,
    .about-art {
        width: 100%;
        max-width: 100%;
    }

    .preview-video-button {
        width: 100%;
    }

    .preview-play-mark {
        width: 66px;
        height: 66px;
    }
}
