html,
body {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    background-color: #000000;
    z-index: -200;
}

/* Prevent layout overflow by default */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Quantized responsive variables for stable layout */
:root {
    --nav-h: 64px;
    /* desktop default header height */
    --footer-h: 8px;
    /* navbar footer highlight bar */
    --header-total: calc(var(--nav-h) + var(--footer-h));
    --nav-font-size: 1rem;
    --nav-item-w: 120px;
    /* desktop width per item */
    --artwork-row-height: 220px;
}

@media (max-width: 1199px) {
    :root {
        --nav-h: 56px;
        --footer-h: 8px;
        --nav-font-size: 0.95rem;
        --nav-item-w: 110px;
        --artwork-row-height: 200px;
    }
}

@media (max-width: 899px) {
    :root {
        --nav-h: 56px;
        --footer-h: 8px;
        --nav-font-size: 0.95rem;
        --nav-item-w: 100px;
        --artwork-row-height: 180px;
    }
}

@media (max-width: 599px) {
    :root {
        --nav-h: 52px;
        /* mobile */
        --footer-h: 6px;
        --nav-font-size: 0.9rem;
        --nav-item-w: auto;
        /* autosize by padding */
        --artwork-row-height: 160px;
    }
}

.root {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
    background: transparent;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    /* push content below fixed header */
    padding-top: var(--header-total);
}

#background_canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border: none;
    /* remove any visible border */
    background-color: #000000;
    transform: translateZ(0);
    will-change: transform;
    pointer-events: none;
}


.top {
    position: fixed;
    /* keep header stable */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(to right, #E5D9FF, #BACAEC);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: var(--nav-h);
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
}

.watermark {
    margin-right: auto;
    align-self: center;
    opacity: 0.8;
    height: 100%;
    max-height: 40px;
    width: auto;
    color: #000;
}

.banner {
    z-index: 0;
    /* within header background */
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin-left: auto;
    align-self: center;
    height: var(--nav-h);
    width: 28vw;
    object-fit: cover;
    color: #000;
}

.settings_button {
    position: absolute;
    bottom: -10px;
    right: 20px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    color: transparent;
    /* hide original text */
    font-size: 0;
    /* prevent layout from original text */
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1500;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.settings_button::before {
    content: "⚙";
    display: inline-block;
    font-size: 18px;
    color: #333;
    line-height: 1;
    transform-origin: 50% 50%;
    transition: transform 0.2s;
}

.settings_button:hover {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.settings_button:hover::before {
    transform: rotate(30deg) scale(1.1);
}

/* Settings panel overlay */
.settings_overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
    background: transparent;
    z-index: 2200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 240ms cubic-bezier(0.4, 0, 0.2, 1);
}

.settings_overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.settings_panel {
    position: relative;
    width: min(400px, 100%);
    max-height: 100%;
    background: linear-gradient(145deg, rgba(22, 26, 42, 0.88), rgba(14, 16, 26, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 
        0 32px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 2px 4px rgba(255, 255, 255, 0.08) inset;
    color: #e9edf5;
    overflow: hidden;
    z-index: 2300;
    transform: translate3d(0, 16px, 0) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: 
        opacity 280ms cubic-bezier(0.4, 0, 0.2, 1),
        transform 280ms cubic-bezier(0.34, 1.2, 0.64, 1);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
}

.settings_panel::before {
    content: "";
    position: absolute;
    inset: -60px;
    background: radial-gradient(
        ellipse at center, 
        rgba(14, 18, 32, 0.35) 0%, 
        rgba(6, 8, 14, 0.15) 40%,
        transparent 70%
    );
    z-index: -1;
    pointer-events: none;
    filter: blur(40px);
}

.settings_panel.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
}

.settings_panel_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.settings_panel_title {
    font: 700 17px/1 Rubik, system-ui, sans-serif;
    letter-spacing: 0.3px;
}

.settings_panel_subtitle {
    font: 500 12.5px/1.35 Rubik, system-ui, sans-serif;
    color: rgba(233, 237, 245, 0.7);
    margin-top: 5px;
}

.settings_close_btn {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #e9edf5;
    cursor: pointer;
    transition: background 180ms cubic-bezier(0.4, 0, 0.2, 1), transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

.settings_close_btn:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: scale(1.05);
}

.settings_panel_body {
    padding: 16px 18px 20px;
    overflow-y: auto;
    max-height: calc(100vh - 120px);
    display: grid;
    gap: 14px;
}

.settings_section_label {
    font: 700 11.5px/1.2 Rubik, system-ui, sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(233, 237, 245, 0.55);
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.settings_card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px 14px 14px 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.1);
    transition: border-color 200ms ease, background 200ms ease;
}

.settings_card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.settings_card_title {
    font: 700 14px/1.2 Rubik, system-ui, sans-serif;
    color: #e9edf5;
}

.settings_card_desc {
    font: 500 12px/1.4 Rubik, system-ui, sans-serif;
    color: rgba(233, 237, 245, 0.7);
    margin-top: 4px;
}

.toggle_switch {
    position: relative;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.toggle_switch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle_slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: background 200ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 200ms ease, border-color 200ms ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.45);
}

.toggle_slider::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: radial-gradient(circle at 35% 30%, #ffffff, #e8edff);
    border-radius: 50%;
    box-shadow: 
        0 4px 14px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(255, 255, 255, 0.3) inset;
    transition: transform 200ms cubic-bezier(0.34, 1.2, 0.64, 1);
}

.toggle_switch input:checked+.toggle_slider {
    background: linear-gradient(135deg, #5a9aff, #85d4ff);
    border-color: rgba(90, 154, 255, 0.6);
    box-shadow: 
        0 6px 18px rgba(90, 154, 255, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.toggle_switch input:checked+.toggle_slider::before {
    transform: translateX(22px);
}

.cookie_consent_banner {
    position: fixed;
    left: clamp(8px, 2vw, 24px);
    right: clamp(8px, 2vw, 24px);
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px 16px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.9);
    color: #222;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    font: 400 14px/1.45 Rubik, system-ui, sans-serif;
    z-index: 1800;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    pointer-events: auto;
    animation: cookie_slide_in 280ms ease-out both;
}

@keyframes cookie_slide_in {
    from {
        transform: translateY(16px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie_consent_message {
    margin: 0;
    padding: 0 2px;
}

.cookie_consent_buttons {
    display: inline-flex;
    gap: 8px;
    justify-self: end;
}

.cookie_consent_button {
    appearance: none;
    border: 0;
    padding: 8px 14px;
    border-radius: 8px;
    font: 600 14px/1 Rubik, system-ui, sans-serif;
    cursor: pointer;
    transition: transform 0.05s ease, background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    background: #f2f2f7;
    color: #333;
}

.cookie_consent_button:focus-visible {
    outline: 2px solid #3B3556;
    outline-offset: 2px;
}

#cookie_accept.cookie_consent_button {
    background: #4caf50;
    color: #fff;
    box-shadow: 0 2px 6px rgba(76, 175, 80, 0.35);
}

#cookie_accept.cookie_consent_button:hover {
    filter: brightness(1.05);
}

#cookie_accept.cookie_consent_button:active {
    transform: translateY(1px);
}

#cookie_decline.cookie_consent_button {
    background: #e0e0e6;
    color: #333;
}

#cookie_decline.cookie_consent_button:hover {
    background: #d5d5dc;
}

#cookie_decline.cookie_consent_button:active {
    transform: translateY(1px);
}

@media (max-width: 599px) {
    .cookie_consent_banner {
        grid-template-columns: 1fr;
        row-gap: 10px;
        padding: 12px;
        left: 8px;
        right: 8px;
    }

    .cookie_consent_buttons {
        justify-self: start;
    }

    .cookie_consent_button {
        padding: 10px 14px;
    }
}

.context_menu {
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    min-width: 140px;
    font-family: 'Rubik', system-ui, sans-serif;
    transition: opacity 0.2s ease;
}

.context_menu_item {
    position: relative;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #333;
    user-select: none;
    border-radius: 3px;
    transition: background-color 0.2s ease;
}

.context_menu_item:hover {
    background-color: #b7b7b7;
}

/* Make the banner act as a background of the navbar items container */
.navbar_items {
    position: relative;
    overflow: hidden;
    z-index: 2;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    font-weight: 600;
    color: #333;
    height: var(--nav-h);
}

.navbar_items>.banner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.navbar_item {
    color: #ffffff;
    text-decoration: none;
    text-shadow: #000 4px 4px 7px;
    font-family: 'Rubik';
    font-weight: bold;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0);
    white-space: nowrap;
    font-size: var(--nav-font-size);
    transition: background-color 0.2s ease, color 0.2s ease, backdrop-filter 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--nav-item-w);
    min-width: 88px;
    height: var(--nav-h);
    backdrop-filter: blur(0px);
    padding: 0 12px;
}

.navbar_item:hover {
    backdrop-filter: blur(5px);
}

/* Active tab style */
.navbar_item.is-active {
    backdrop-filter: blur(6px);
    background-color: rgba(255, 255, 255, 0.08);
}

.navbar_footer {
    position: relative;
    z-index: 10;
    /* above most elements on the page */
    width: 100%;
    height: var(--footer-h);
    background-color: #3B3556;
    overflow: hidden;
    pointer-events: none;
    /* don't block interactions */
}

.navbar_footer_highlight {
    position: absolute;
    z-index: 1;
    left: 0;
    width: 0;
    /* set by JS */
    height: 100%;
    background-color: #E491FF;
    transition: left 0.25s ease, width 0.25s ease;
    pointer-events: none;
}

.artwork_container {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: center;
    overflow-y: auto;
    overflow-x: hidden;
    height: calc(100vh - var(--header-total));
    width: 100%;
    transition: all 0.5s ease;
    position: relative;
    /* keep header above */
}

/* Generic responsive sections (blog, Comm Info) */
.section_container {
    box-sizing: border-box;
    display: none;
    /* hidden by default; toggled in JS */
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    height: calc(100vh - var(--header-total));
    overflow-y: auto;
    overflow-x: hidden;
    transition: opacity 0.35s ease, max-height 0.35s ease;
    opacity: 0;
    max-height: 0;
}

.section_container.is-visible {
    display: block;
    opacity: 1;
    max-height: calc(100vh - var(--header-total));
}

.section_inner {
    max-width: min(1200px, 96vw);
    margin: 0 auto;
    padding: 16px 16px 24px 16px;
    color: #a1a1a1;
    font-family: Rubik, system-ui, sans-serif;
}

.section_inner h2 {
    margin: 8px 0 12px;
    font-size: 1.6rem;
}

.section_body {
    line-height: 1.6;
    font-size: 1rem;
}

.artwork_header {
    width: 100%;
    text-align: center;
    font-family: 'Rubik', system-ui, sans-serif;
    font-size: 2.4rem;
    font-weight: bold;
    color: #e1e1e1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    margin: 30px 0;
}

.artwork_spacer {
    height: 12px;
    width: 100%;
    flex-shrink: 0;
}

.artwork_image {
    position: relative;
    height: var(--artwork-row-height);
    width: auto;
    /* width varies by image aspect ratio */
    /* min-width: 140px; */
    /* avoid overly skinny columns */
    overflow: hidden;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 6px;
    transition: transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1111;
    margin: 3px;
    /* subtle base to avoid header bleed-through */
}

.artwork_image:hover {
    outline: 3px solid rgba(0, 72, 255, 0.654);
    outline-offset: -3px;
    transform: scale(1.03);
}

.artwork_image img {
    height: 100%;
    width: auto;
    /* maintain aspect ratio; determines frame width */
    object-fit: contain;
    /* no cropping */
    display: block;
    -webkit-user-drag: none;
}

.artwork_image p {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    margin: 0;
    padding: 3px 4px;
    text-align: center;
    font-size: 1.3rem;
    color: #ffffff00;
    /* hidden until hover */
    mix-blend-mode: difference;
    /* invert against background */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    width: 100%;
    border-radius: 0;
    justify-self: center;
    max-width: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(0px);
}

/* Show date caption on hover */
.artwork_image:hover p {
    color: #acacac;
    backdrop-filter: blur(10px);
}

/* GIF overlay + play button */
.gif_overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    opacity: 1;
    transition: opacity 0.2s ease;
    pointer-events: auto;
}

.gif_overlay:hover .gif_play_btn {
    transform: scale(1) translate(-50%, -50%);
    left: 50%;
    top: 50%;
    background: rgba(255, 255, 255, 0.85);
}

.gif_play_btn {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.47);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.65) translate(-10%, -10%);
    transition: all 0.3s ease;
}

.gif_play_btn:after {
    content: "";
    display: block;
    margin-left: 4px;
    /* visually center the triangle */
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #333;
}


/* Loading state: spinner */
.gif_overlay.loading {
    opacity: 1;
    pointer-events: auto;
}

.gif_overlay.loading .gif_play_btn {
    position: relative;
    background: rgba(255, 255, 255, 0.6);
}

.gif_overlay.loading .gif_play_btn:after {
    content: "";
    width: 22px;
    height: 22px;
    border: 3px solid rgba(51, 51, 51, 0.25);
    border-top-color: #333;
    border-radius: 50%;
    margin: 0;
    animation: spin 0.8s linear infinite;
    border-left-color: #333;
    border-bottom-color: rgba(51, 51, 51, 0.25);
    border-right-color: rgba(51, 51, 51, 0.25);
}

.home_spacer {
    height: var(--header-total);
    /* match header height */
    flex-shrink: 0;
}

.home_container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    height: calc(100vh - var(--header-total));
    overflow: auto;
    opacity: 1;
    transition: all 0.5s ease;
}

.home_text {
    box-sizing: border-box;
    font-family: "rubik";
    font-size: 1rem;
    color: #a1a1a1;
    text-align: center;
    align-self: center;
    width: min(1100px, 100%);
    padding-inline: clamp(12px, 4vw, 32px);
}

.home_text_title {
    font-size: clamp(28px, 9vw, 96px);
    font-weight: bold;
    margin: 1vh;
}

.home_text_subtitle {
    font-size: clamp(14px, 2.8vw, 24px);
    margin-top: 12px;
    font-weight: 500;
}

.home_text_description {
    font-size: clamp(14px, 2.4vw, 18px);
    line-height: 1.5;
    max-width: min(72ch, 92vw);
    margin: 8px auto 0;
    overflow-wrap: anywhere;
}



/* Mobile navbar mode: controlled by JS with .is-mobile on .navbar */
.nav_toggle {
    display: none;
}

.navbar.is-mobile .nav_toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: auto;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.6);
    color: #333;
    font-weight: 800;
    cursor: pointer;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.navbar.is-mobile .navbar_items {
    display: none;
}

.navbar.is-mobile .navbar_items[data-open="true"] {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    right: 8px;
    left: 8px;
    flex-direction: column;
    background: linear-gradient(to right, #E5D9FF, #BACAEC);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    padding: 6px 8px;
    gap: 6px;
    z-index: 1100;
    border-radius: 8px;
    /* Let the dropdown grow to fit content and scroll if needed */
    height: auto;
    max-height: calc(100vh - var(--nav-h) - 16px);
    overflow: auto;
    min-width: 220px;
    box-sizing: border-box;
}

.navbar.is-mobile .navbar_items[data-open="true"]>.banner {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.navbar.is-mobile .navbar_items[data-open="true"]::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.navbar.is-mobile .navbar_items[data-open="true"] .navbar_item {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 44px;
}

.navbar.is-mobile+.navbar_footer {
    display: none;
}



@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Mobile layout */
@media (max-width: 599px) {
    .navbar {
        padding: 0 8px;
    }

    .navbar_item {
        padding: 0 12px;
        font-size: var(--nav-font-size);
        width: auto;
        line-height: 1;
    }

    .watermark {
        max-height: 28px;
    }

    .artwork_image {
        height: var(--artwork-row-height);
    }

    /* Larger touch targets for viewer arrows (injected buttons) */
    .iv_nav_btn {
        width: 56px !important;
        height: 56px !important;
    }

    .iv_zoom_badge {
        font-size: 13px !important;
    }

    /* Hide banner only when navbar switches to mobile mode */
    .navbar.is-mobile .banner {
        display: none;
    }
}

/* Global copy/screenshot blackout (top-level rules) */
.copy_block_overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.94);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10050;
    text-align: center;
    padding: 24px;
}

.copy_block_overlay .msg {
    font: 800 28px/1.3 Rubik, system-ui, sans-serif;
    letter-spacing: 1px;
}

/* Optional: hide visual content on print */
@media print {

    .artwork_container,
    .iv_panel {
        display: none !important;
    }
}