

        :root {
            --bg: #05060a;
            --bg-soft: #0b0d14;
            --panel: rgba(15, 17, 27, 0.86);
            --panel-strong: rgba(17, 20, 31, 0.96);
            --line: rgba(255, 255, 255, 0.09);
            --line-strong: rgba(255, 255, 255, 0.15);
            --text: #f7f8fc;
            --text-soft: #b8bdca;
            --text-muted: #777e90;
            --violet: #a26dff;
            --blue: #5dbdff;
            --pink: #ff6fcf;
            --cyan: #63f2e1;
            --gold: #ffd87a;
            --max-width: 1180px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        html,
        body {
            margin: 0;
            padding: 0;
            min-height: 100%;
        }

        body {
            font-family:
                Inter,
                system-ui,
                -apple-system,
                BlinkMacSystemFont,
                "Segoe UI",
                Arial,
                sans-serif;

            color: var(--text);

            background:
                radial-gradient(
                    circle at 15% 0%,
                    rgba(162, 109, 255, 0.15),
                    transparent 32%
                ),
                radial-gradient(
                    circle at 85% 10%,
                    rgba(93, 189, 255, 0.12),
                    transparent 30%
                ),
                radial-gradient(
                    circle at 50% 65%,
                    rgba(255, 111, 207, 0.07),
                    transparent 35%
                ),
                linear-gradient(
                    180deg,
                    #080a11 0%,
                    #05060a 45%,
                    #030407 100%
                );

            line-height: 1.65;
        }

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

        img {
            -webkit-user-drag: none;
            user-drag: none;
            -webkit-touch-callout: none;
            user-select: none;
        }


        .page-glow {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: -1;

            background:
                linear-gradient(
                    115deg,
                    transparent 15%,
                    rgba(116, 217, 255, 0.025) 30%,
                    rgba(255, 122, 217, 0.035) 45%,
                    rgba(154, 111, 255, 0.025) 58%,
                    transparent 75%
                );
        }

        .wrap {
            width: min(calc(100% - 40px), var(--max-width));
            margin: 0 auto;
        }

        .nav {
            position: sticky;
            top: 0;
            z-index: 100;

            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);

            background: rgba(5, 6, 10, 0.72);
            border-bottom: 1px solid var(--line);
        }

        .nav-inner {
            min-height: 76px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 800;
            letter-spacing: -0.4px;
        }

        .brand-mark {
            width: 34px;
            height: 34px;
            border-radius: 10px;

            background:
                linear-gradient(
                    135deg,
                    var(--violet),
                    var(--blue),
                    var(--pink),
                    var(--cyan)
                );

            position: relative;

            box-shadow:
                0 0 30px rgba(162, 109, 255, 0.22);
        }

        .brand-mark::after {
            content: "";
            position: absolute;
            inset: 2px;
            background: #0a0c12;
            border-radius: 8px;
        }

        .brand-text {
            font-size: 18px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            font-size: 18px;
            font-weight: 600;
            color: var(--text-soft);
        }

        .nav-links a {
            transition:
                color 0.2s ease,
                transform 0.2s ease;
        }

        .nav-links a:hover {
            color: #ffffff;
            transform: translateY(-1px);
        }

        .hero {
            padding:
                clamp(38px, 5vw, 58px)
                0
                clamp(80px, 10vw, 125px);

            text-align: center;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 11px 18px;
            border: 1px solid var(--line-strong);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.035);
            color: #ccd0dc;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 1.45px;
            text-transform: uppercase;
        }

        .eyebrow-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--cyan);
            box-shadow:
                0 0 15px rgba(99, 242, 225, 0.7);
        }

        .hero h1 {
            max-width: 1000px;
            margin: 30px auto 24px;
            font-size: clamp(54px, 9vw, 112px);
            line-height: 0.95;
            letter-spacing: clamp(-5px, -0.4vw, -2px);
            font-weight: 900;
        }

        .prismatic-text {
            background:
                linear-gradient(
                    100deg,
                    #ffffff 0%,
                    #b7eaff 18%,
                    #c9a4ff 38%,
                    #ff9cda 56%,
                    #8ef1e4 74%,
                    #fff2bd 100%
                );

            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;

            filter:
                drop-shadow(
                    0 8px 25px
                    rgba(151, 117, 255, 0.1)
                );
        }

        .hero-lead {
            width: min(100%, 980px);
            margin: 0 auto;
            color: var(--text-soft);
            font-size: clamp(18px, 2vw, 21px);
        }

        .hero-intro,
        .hero-emphasis,
        .hero-ownership,
        .hero-teaser,
        .hero-charizard-question {
            max-width: 930px;
            margin-left: auto;
            margin-right: auto;

            color: var(--text-soft);

            font-size: clamp(18px, 1.85vw, 20px);
            font-weight: 600;
            line-height: 1.65;
            letter-spacing: 0;
        }

        .hero-intro {
            margin-top: 0;
            margin-bottom: 0;
        }

        .hero-emphasis {
            display: block;
            margin-top: 18px;
            padding: 0;

            border: 0;
            border-radius: 0;
            background: none;

            color: #eef1f7;
        }

        .hero-ownership {
            margin-top: 18px;
            margin-bottom: 0;
        }

        .hero-teaser {
            display: block;
            margin-top: 18px;
            padding-top: 0;

            border-top: 0;

            color: #d8dce6;
        }

        .hero-teaser strong {
            color: var(--gold);
            font-weight: 800;
        }

        .hero-charizard-question {
            display: block;
            margin-top: 12px;

            color: var(--gold);
            font-weight: 800;
            text-shadow: none;
        }

        @media (max-width: 700px) {
            .hero-lead {
                width: 100%;
                max-width: none;
            }

            .hero-intro,
            .hero-emphasis,
            .hero-ownership,
            .hero-teaser,
            .hero-charizard-question {
                max-width: 100%;
                font-size: 18px;
                line-height: 1.6;
            }
        }

        .hero-actions {
            margin-top: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            padding: 0 22px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 700;
            transition:
                transform 0.2s ease,
                border-color 0.2s ease,
                background 0.2s ease;
        }

        .button:hover {
            transform: translateY(-2px);
        }

        .button-primary {
            color: #08090d;
            background:
                linear-gradient(
                    110deg,
                    #d7c3ff,
                    #8bdcff,
                    #f4a7df
                );
        }

        .button-secondary {
            border: 1px solid var(--line-strong);
            background: rgba(255, 255, 255, 0.035);
            color: #e7e9ef;
        }

        .hero-object {
            position: relative;
            width: min(720px, 90vw);
            min-height: 330px;
            margin: 75px auto 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-ring {
            position: absolute;
            width: 310px;
            height: 310px;
            border-radius: 50%;

            background:
                conic-gradient(
                    from 180deg,
                    rgba(162,109,255,0.9),
                    rgba(93,189,255,0.8),
                    rgba(99,242,225,0.75),
                    rgba(255,216,122,0.72),
                    rgba(255,111,207,0.8),
                    rgba(162,109,255,0.9)
                );

            filter: blur(40px);
            opacity: 0.18;
        }

        .card-placeholder {
            position: relative;
            z-index: 2;
            width: 235px;
            aspect-ratio: 0.715;
            border-radius: 18px;
            border: 1px solid rgba(255,255,255,0.2);

            background:
                radial-gradient(
                    circle at 25% 15%,
                    rgba(255,255,255,0.15),
                    transparent 25%
                ),
                linear-gradient(
                    135deg,
                    rgba(91,63,156,0.85),
                    rgba(24,34,62,0.95) 42%,
                    rgba(105,44,107,0.85) 78%,
                    rgba(31,71,77,0.9)
                );

            transform:
                perspective(1200px)
                rotateY(-8deg)
                rotateX(3deg);

            box-shadow:
                0 45px 85px rgba(0,0,0,0.55),
                0 0 50px rgba(145,108,255,0.15);
        }

        .card-placeholder::before {
            content: "PRISMATIC";
            position: absolute;
            left: 0;
            right: 0;
            top: 42%;
            text-align: center;
            font-size: 23px;
            font-weight: 900;
            letter-spacing: 3px;
            color: rgba(255,255,255,0.78);
        }

        .card-placeholder::after {
            content: "EXCLUSIVE COLLECTION";
            position: absolute;
            left: 0;
            right: 0;
            top: 53%;
            text-align: center;
            font-size: 8px;
            font-weight: 700;
            letter-spacing: 2px;
            color: rgba(255,255,255,0.5);
        }

        section {
            padding: 95px 0;
        }

        .section-head {
            max-width: 860px;
            margin-bottom: 50px;
        }

        .section-kicker {
            margin-bottom: 10px;
            color: #8bdcff;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .section-title {
            margin: 0 0 15px;
            font-size: clamp(34px, 5vw, 54px);
            line-height: 1.06;
            letter-spacing: -2px;
        }

        .section-copy {
            margin: 0;
            color: var(--text-soft);
            font-size: 20px;
        }

        .intro-panel {
            position: relative;
            overflow: hidden;
            padding: clamp(35px, 6vw, 65px);
            border: 1px solid var(--line);
            border-radius: 24px;

            background:
                linear-gradient(
                    135deg,
                    rgba(18,21,34,0.95),
                    rgba(10,12,19,0.95)
                );

            box-shadow:
                0 30px 80px rgba(0,0,0,0.28);
        }

        .intro-panel::before {
            content: "";
            position: absolute;
            width: 340px;
            height: 340px;
            right: -120px;
            top: -140px;
            border-radius: 50%;

            background:
                radial-gradient(
                    circle,
                    rgba(163,109,255,0.18),
                    transparent 70%
                );
        }

        .intro-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 55px;
            align-items: center;
        }

        .intro-text {
            color: var(--text-soft);
            font-size: 20px;
        }

        .intro-text strong {
            color: #ffffff;
        }

        .intro-points {
            display: grid;
            gap: 13px;
        }

        .intro-point {
            display: flex;
            align-items: center;
            gap: 12px;
            min-height: 48px;
            padding: 0 16px;
            border: 1px solid var(--line);
            border-radius: 12px;
            background: rgba(255,255,255,0.025);
            color: #d7dbe5;
            font-size: 16px;
        }

        .intro-point span:first-child {
            color: var(--cyan);
        }

        .collection-highlights {
            padding-top: 35px;
        }

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

        .highlight-card {
            position: relative;
            overflow: hidden;

            min-height: 405px;
            padding: 26px;

            display: flex;
            flex-direction: column;
            justify-content: flex-start;

            border: 1px solid var(--line);
            border-radius: 20px;

            background:
                radial-gradient(
                    circle at 50% 18%,
                    rgba(162,109,255,0.11),
                    transparent 35%
                ),
                linear-gradient(
                    155deg,
                    rgba(20,23,35,0.96),
                    rgba(9,11,17,0.98)
                );

            transition:
                transform 0.25s ease,
                border-color 0.25s ease,
                box-shadow 0.25s ease;
        }

        .highlight-card:hover {
            transform: translateY(-5px);

            border-color:
                rgba(157,126,255,0.35);

            box-shadow:
                0 22px 50px rgba(0,0,0,0.28);
        }

        .highlight-card-visual {
            position: relative;

            width: 142px;
            aspect-ratio: 0.715;

            margin:
                0
                auto
                24px;

            flex: 0 0 auto;

            transform:
                perspective(900px)
                rotateY(-5deg);

            border: 1px solid rgba(255,255,255,0.18);
            border-radius: 12px;

            background:
                radial-gradient(
                    circle at 30% 18%,
                    rgba(255,255,255,0.14),
                    transparent 28%
                ),
                linear-gradient(
                    145deg,
                    rgba(91,63,156,0.8),
                    rgba(28,36,66,0.96) 45%,
                    rgba(88,44,101,0.86) 78%,
                    rgba(31,71,77,0.9)
                );

            box-shadow:
                0 24px 45px rgba(0,0,0,0.42),
                0 0 28px rgba(145,108,255,0.12);
        }

        .highlight-card-visual::before {
            content: "CARD";
            position: absolute;
            inset: 0;

            display: flex;
            align-items: center;
            justify-content: center;

            color: rgba(255,255,255,0.48);

            font-size: 15px;
            font-weight: 900;
            letter-spacing: 2px;
        }

        .highlight-type {
            position: relative;
            z-index: 2;

            margin-bottom: 8px;

            color: #8bdcff;

            font-size: 13px;
            font-weight: 800;
            letter-spacing: 1.2px;
            text-transform: uppercase;
        }

        .highlight-card h3 {
            position: relative;
            z-index: 2;

            margin: 0 0 8px;

            font-size: 24px;
            line-height: 1.2;
        }

        .highlight-card p {
            position: relative;
            z-index: 2;

            margin: 0;

            color: var(--text-soft);

            font-size: 16px;
            line-height: 1.5;
        }

        .highlight-note {
            display: inline-flex;
            align-items: center;

            margin-top: auto;
            padding: 5px 8px;
            margin-top: auto;

            width: fit-content;

            transform: translateY(4px);

            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 999px;

            background: rgba(255,255,255,0.03);
            color: #929aaa;

            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .highlight-card-charizard {
            border-color: rgba(255, 166, 58, 0.34);

            background:
                radial-gradient(
                    circle at 50% 10%,
                    rgba(255, 178, 78, 0.18),
                    transparent 38%
                ),
                radial-gradient(
                    circle at 50% 62%,
                    rgba(255, 88, 28, 0.08),
                    transparent 48%
                ),
                linear-gradient(
                    180deg,
                    rgba(44, 19, 11, 0.98),
                    rgba(18, 12, 10, 0.98)
                );

            box-shadow:
                0 24px 48px rgba(0, 0, 0, 0.44),
                0 0 42px rgba(255, 128, 32, 0.13);
        }

        .highlight-card-charizard:hover {
            border-color: rgba(255, 184, 92, 0.48);

            box-shadow:
                0 28px 55px rgba(0, 0, 0, 0.48),
                0 0 52px rgba(255, 128, 32, 0.17);
        }

        .highlight-card-charizard .highlight-type {
            color: #ffbd70;
        }

        .highlight-card-charizard h3 {
            color: #ffe2ba;
        }

        .highlight-card-charizard .highlight-note {
            border-color: rgba(255, 176, 82, 0.22);
            background: rgba(255, 166, 58, 0.09);
            color: #ffd69b;
        }

        .highlight-card-visual-charizard {
            position: relative;
            overflow: hidden;

            width: 156px;
            aspect-ratio: 0.715;

            border-color: rgba(255, 188, 102, 0.42);
            border-radius: 14px;

            background:
                radial-gradient(
                    circle at 50% 22%,
                    rgba(255, 224, 158, 0.25),
                    transparent 28%
                ),
                radial-gradient(
                    circle at 50% 72%,
                    rgba(255, 82, 22, 0.20),
                    transparent 44%
                ),
                linear-gradient(
                    155deg,
                    rgba(101, 30, 13, 0.98),
                    rgba(42, 14, 9, 0.99) 48%,
                    rgba(87, 24, 10, 0.98)
                );

            box-shadow:
                0 24px 46px rgba(0, 0, 0, 0.50),
                0 0 32px rgba(255, 137, 52, 0.20),
                inset 0 0 36px rgba(255, 190, 95, 0.05);

            transform:
                perspective(900px)
                rotateY(-4deg)
                scale(1.03);
        }

        /* Remove the generic CARD label from the mystery card. */
        .highlight-card-visual-charizard::before {
            content: none;
        }

        .highlight-card-visual-charizard::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;

            background:
                linear-gradient(
                    145deg,
                    rgba(255,255,255,0.11),
                    transparent 24%,
                    transparent 72%,
                    rgba(255,145,68,0.07)
                );
        }

        .charizard-silhouette {
            position: absolute;
            left: 50%;
            top: 50%;
            z-index: 2;

            width: 86%;
            height: 84%;

            transform:
                translate(-50%, -42%)
                rotate(-1deg);

            fill: none;
            stroke: rgba(255, 228, 198, 0.96);
            stroke-width: 8;
            stroke-linecap: round;
            stroke-linejoin: round;
            vector-effect: non-scaling-stroke;

            filter:
                drop-shadow(0 0 8px rgba(255, 196, 111, 0.30))
                drop-shadow(0 0 18px rgba(255, 111, 45, 0.18));
        }

        .charizard-silhouette .accent {
            stroke: rgba(255, 206, 150, 0.62);
            stroke-width: 6;
            vector-effect: non-scaling-stroke;
        }

        .charizard-question {
            position: absolute;
            inset: 0;
            z-index: 3;

            display: flex;
            align-items: center;
            justify-content: center;

            padding-top: 12px;

            color: rgba(255, 247, 232, 0.97);
            font-size: 78px;
            font-weight: 900;
            line-height: 1;

            text-shadow:
                0 0 12px rgba(255, 211, 143, 0.54),
                0 0 28px rgba(255, 128, 46, 0.30),
                0 4px 16px rgba(0,0,0,0.45);

            pointer-events: none;
        }

        .charizard-mystery-caption {
            position: absolute;
            left: 50%;
            bottom: 10px;
            z-index: 4;

            transform: translateX(-50%);

            padding: 4px 8px;

            border: 1px solid rgba(255, 191, 113, 0.20);
            border-radius: 999px;

            background: rgba(32, 12, 8, 0.58);
            color: rgba(255, 222, 181, 0.82);

            font-size: 8px;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
            white-space: nowrap;
        }



        .highlight-card-visual-budew {
            position: relative;

            width: 100%;
            max-width: 245px;
            height: 190px;
            aspect-ratio: auto;

            margin:
                0
                auto
                24px;

            padding: 10px;

            display: grid;
            gap: 7px;

            transform: none;

            border: 1px solid rgba(139, 220, 255, 0.18);
            border-radius: 14px;

            background:
                radial-gradient(
                    circle at 50% 0%,
                    rgba(93, 189, 255, 0.10),
                    transparent 45%
                ),
                rgba(255,255,255,0.018);

            box-shadow:
                0 18px 36px rgba(0,0,0,0.30);
        }

        .highlight-card-visual-budew::before {
            content: none;
        }

        .budew-preview-thumb {
            position: relative;
            overflow: hidden;

            min-width: 0;
            min-height: 0;

            display: flex;
            align-items: center;
            justify-content: center;

            border: 1px solid rgba(255,255,255,0.09);
            border-radius: 7px;

            background:
                linear-gradient(
                    145deg,
                    rgba(47, 40, 84, 0.74),
                    rgba(20, 25, 44, 0.94)
                );
        }

        .budew-preview-thumb img {
            display: block;

            width: 100%;
            height: 100%;

            object-fit: contain;
        }

        .budew-preview-empty {
            grid-column: 1 / -1;

            display: flex;
            align-items: center;
            justify-content: center;

            padding: 18px;

            color: rgba(255,255,255,0.42);

            font-size: 11px;
            font-weight: 800;
            line-height: 1.5;
            letter-spacing: 0.8px;
            text-align: center;
            text-transform: uppercase;
        }

        .budew-preview-count {
            position: absolute;
            right: 8px;
            bottom: 8px;
            z-index: 3;

            padding: 4px 7px;

            border: 1px solid rgba(139,220,255,0.16);
            border-radius: 999px;

            background: rgba(7,9,14,0.84);
            color: #bfeeff;

            font-size: 9px;
            font-weight: 800;
            line-height: 1;
            letter-spacing: 0.5px;
        }

        .highlight-card-clickable {
            cursor: pointer;
        }

        .highlight-card-clickable:focus-visible {
            outline: 2px solid rgba(139, 220, 255, 0.75);
            outline-offset: 3px;
        }

        .variant-gallery-modal {
            position: fixed;
            inset: 0;
            z-index: 2000;

            display: none;
            align-items: center;
            justify-content: center;

            padding: 24px;

            background: rgba(2, 3, 7, 0.84);

            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
        }

        .variant-gallery-modal.open {
            display: flex;
        }

        .variant-gallery-dialog {
            position: relative;

            width: min(1180px, 100%);
            max-height: calc(100vh - 48px);
            max-height: calc(100dvh - 48px);

            overflow: hidden;

            border: 1px solid rgba(255, 255, 255, 0.13);
            border-radius: 24px;

            background:
                radial-gradient(
                    circle at 15% 0%,
                    rgba(93, 189, 255, 0.08),
                    transparent 30%
                ),
                radial-gradient(
                    circle at 90% 10%,
                    rgba(162, 109, 255, 0.11),
                    transparent 32%
                ),
                rgba(8, 10, 16, 0.985);

            box-shadow:
                0 35px 100px rgba(0, 0, 0, 0.68);
        }

        .variant-gallery-header {
            position: sticky;
            top: 0;
            z-index: 5;

            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 24px;

            padding: 24px 26px 20px;

            border-bottom: 1px solid rgba(255, 255, 255, 0.08);

            background: rgba(8, 10, 16, 0.96);

            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
        }

        .variant-gallery-kicker {
            margin-bottom: 7px;

            color: #8bdcff;

            font-size: 14px;
            font-weight: 800;
            letter-spacing: 1.35px;
            text-transform: uppercase;
        }

        .variant-gallery-title {
            margin: 0;

            color: #ffffff;

            font-size: clamp(36px, 4.8vw, 52px);
            line-height: 1.05;
            letter-spacing: -1.8px;
        }

        .variant-gallery-subtitle {
            margin: 12px 0 0;

            max-width: 880px;

            color: var(--text-soft);

            font-size: 19px;
            line-height: 1.58;
        }

        .variant-gallery-close {
            flex: 0 0 auto;

            width: 42px;
            height: 42px;

            border: 1px solid rgba(255, 255, 255, 0.10);
            border-radius: 11px;

            background: rgba(255, 255, 255, 0.035);
            color: #ffffff;

            font-size: 26px;
            line-height: 1;

            cursor: pointer;
        }

        .variant-gallery-close:hover {
            background: rgba(255, 255, 255, 0.07);
        }

        .variant-gallery-body {
            max-height: calc(100vh - 185px);
            max-height: calc(100dvh - 185px);

            overflow-y: auto;
            overscroll-behavior: contain;
            -webkit-overflow-scrolling: touch;

            padding: 24px 26px 26px;
        }

        .variant-gallery-section {
            padding: 0;
        }

        .variant-gallery-section + .variant-gallery-section {
            margin-top: 38px;
            padding-top: 34px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .variant-gallery-section-head {
            margin-bottom: 20px;
        }

        .variant-gallery-section-kicker {
            margin-bottom: 5px;

            color: #8bdcff;

            font-size: 13px;
            font-weight: 800;
            letter-spacing: 1.1px;
            text-transform: uppercase;
        }

        .variant-gallery-section-title {
            margin: 0;

            color: #ffffff;

            font-size: clamp(26px, 3vw, 34px);
            line-height: 1.1;
            letter-spacing: -0.8px;
        }

        .variant-gallery-section-copy {
            max-width: 850px;
            margin: 9px 0 0;

            color: #aeb5c3;

            font-size: 16px;
            line-height: 1.55;
        }

        .variant-gallery-grid {
            display: grid;
            gap: 18px;
        }

        .variant-gallery-grid-main {
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }

        .variant-gallery-grid-extended {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .variant-gallery-item {
            min-width: 0;

            display: flex;
            flex-direction: column;

            padding: 16px;

            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;

            background: rgba(255, 255, 255, 0.025);
        }

        .variant-gallery-image {
            position: relative;
            overflow: hidden;

            width: 100%;
            aspect-ratio: 0.715;
            flex: 0 0 auto;

            cursor: zoom-in;

            border: 1px solid rgba(255, 255, 255, 0.10);
            border-radius: 12px;

            background:
                radial-gradient(
                    circle at 30% 15%,
                    rgba(255, 255, 255, 0.10),
                    transparent 28%
                ),
                linear-gradient(
                    145deg,
                    rgba(67, 51, 116, 0.85),
                    rgba(23, 31, 57, 0.96) 50%,
                    rgba(55, 31, 69, 0.90)
                );

            box-shadow:
                0 16px 30px rgba(0, 0, 0, 0.32);
        }

        .variant-gallery-image:hover {
            border-color: rgba(139, 220, 255, 0.30);

            box-shadow:
                0 18px 34px rgba(0, 0, 0, 0.38),
                0 0 0 1px rgba(139, 220, 255, 0.06);
        }

        .variant-gallery-image img {
            position: absolute;
            inset: 0;

            width: 100%;
            height: 100%;

            object-fit: contain;

            background: #0b0d14;
        }

        .variant-gallery-image-dual {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
        }

        .variant-gallery-image-dual .variant-gallery-image {
            aspect-ratio: 0.715;
        }

        .variant-gallery-side-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            z-index: 2;

            display: inline-flex;
            align-items: center;
            justify-content: center;

            padding: 6px 10px;

            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 999px;

            background: rgba(8, 10, 18, 0.72);
            color: #ffffff;

            font-size: 12px;
            font-weight: 800;
            line-height: 1;
            letter-spacing: 0.4px;
            text-transform: uppercase;
        }

        .variant-gallery-placeholder {
            position: absolute;
            inset: 0;

            display: flex;
            align-items: center;
            justify-content: center;

            padding: 18px;

            color: rgba(255, 255, 255, 0.48);

            text-align: center;
            font-size: 14px;
            font-weight: 800;
            line-height: 1.4;
            letter-spacing: 0.8px;
            text-transform: uppercase;
        }

        .variant-gallery-item-title {
            margin: 15px 0 0;

            min-height: 48px;

            color: #ffffff;

            font-size: 18px;
            font-weight: 800;
            line-height: 1.25;
        }

        .variant-gallery-number {
            display: block;

            min-height: 22px;
            margin-top: 5px;

            color: #ffffff;

            font-size: 16px;
            font-weight: 800;
            line-height: 1.25;

            white-space: nowrap;
        }

        .variant-gallery-number.no-pre {
            color: #747c8c;
            font-size: 13px;
            font-weight: 700;
        }

        .variant-gallery-treatment {
            min-height: 24px;
            margin-top: 7px;

            color: #d9dde6;

            font-size: 16px;
            font-weight: 800;
            line-height: 1.3;
        }

        .variant-gallery-item-type {
            min-height: 38px;
            margin-top: 7px;

            color: #8bdcff;

            font-size: 16px;
            font-weight: 800;
            line-height: 1.3;
            letter-spacing: 0.35px;
            text-transform: none;
        }

        .variant-gallery-item-copy {
            margin: 10px 0 0;

            min-height: 78px;

            color: #b8bfcc;

            font-size: 16px;
            line-height: 1.58;
        }

        @media (max-width: 640px) {
            .variant-gallery-image-dual {
                grid-template-columns: 1fr;
            }

            .variant-gallery-side-badge {
                top: 8px;
                left: 8px;
                padding: 5px 9px;
                font-size: 11px;
            }
        }


        .card-image-lightbox {
            position: fixed;
            inset: 0;
            z-index: 3000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 24px;
            background: rgba(0, 0, 0, 0.94);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .card-image-lightbox.open {
            display: flex;
        }

        .card-image-lightbox-inner {
            position: relative;
            width: min(92vw, 900px);
            height: min(92vh, 1100px);
            height: min(92dvh, 1100px);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-image-lightbox img {
            display: block;
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 14px;
            box-shadow: 0 30px 90px rgba(0, 0, 0, 0.75);
        }

        .card-image-lightbox-close {
            position: absolute;
            top: 0;
            right: 0;
            z-index: 2;
            width: 46px;
            height: 46px;
            border: 1px solid rgba(255,255,255,0.16);
            border-radius: 12px;
            background: rgba(10, 12, 19, 0.86);
            color: #ffffff;
            font-size: 28px;
            line-height: 1;
            cursor: pointer;
        }

        .card-image-lightbox-nav {
            position: absolute;
            top: 50%;
            z-index: 3;

            width: 54px;
            height: 64px;

            transform: translateY(-50%);

            border: 1px solid rgba(255,255,255,0.16);
            border-radius: 14px;

            background: rgba(10, 12, 19, 0.82);
            color: #ffffff;

            font-size: 42px;
            font-weight: 400;
            line-height: 1;

            cursor: pointer;

            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);

            transition:
                background 0.2s ease,
                border-color 0.2s ease,
                transform 0.2s ease;
        }

        .card-image-lightbox-nav:hover {
            background: rgba(20, 23, 35, 0.94);
            border-color: rgba(139,220,255,0.30);
        }

        .card-image-lightbox-prev {
            left: 0;
        }

        .card-image-lightbox-next {
            right: 0;
        }

        .card-image-lightbox-nav[disabled] {
            opacity: 0.28;
            cursor: default;
        }

        @media (max-width: 700px) {
            .card-image-lightbox-nav {
                width: 46px;
                height: 56px;
                font-size: 36px;
            }

            .card-image-lightbox-prev {
                left: 4px;
            }

            .card-image-lightbox-next {
                right: 4px;
            }
        }

        .card-image-lightbox-caption {
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            max-width: 90%;
            padding: 8px 12px;
            border: 1px solid rgba(255,255,255,0.10);
            border-radius: 999px;
            background: rgba(10, 12, 19, 0.82);
            color: #dfe4ed;
            font-size: 14px;
            font-weight: 700;
            line-height: 1.3;
            text-align: center;
            white-space: nowrap;
        }

        body.gallery-open {
            overflow: hidden;
        }

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

        .category {
            position: relative;
            overflow: hidden;
            min-height: 215px;
            padding: 22px 24px 24px;
            border: 1px solid var(--line);
            border-radius: 18px;

            background:
                linear-gradient(
                    150deg,
                    rgba(20,23,35,0.92),
                    rgba(10,12,19,0.96)
                );

            transition:
                transform 0.25s ease,
                border-color 0.25s ease;
        }

        .category:hover {
            transform: translateY(-5px);
            border-color:
                rgba(157,126,255,0.35);
        }

        .category-number {
            position: absolute;
            top: 18px;
            right: 20px;
            color: #696f80;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 1px;
            text-align: right;
        }

        .category h3 {
            margin: 6px 0 10px;
            padding-right: 42px;
            font-size: 25px;
            line-height: 1.2;
        }

        .category p {
            margin: 0;
            padding-right: 10px;
            color: var(--text-soft);
            font-size: 16px;
        }

        .category-glow {
            position: absolute;
            width: 130px;
            height: 130px;
            right: -50px;
            bottom: -50px;
            border-radius: 50%;
            filter: blur(35px);
            opacity: 0.13;
        }

        .glow-purple { background: var(--violet); }
        .glow-blue { background: var(--blue); }
        .glow-pink { background: var(--pink); }
        .glow-cyan { background: var(--cyan); }
        .glow-gold { background: var(--gold); }


        .variant-showcase {
            padding-top: 35px;
        }

        .variant-card {
            position: relative;
            overflow: hidden;

            padding: clamp(30px, 5vw, 52px);

            border: 1px solid var(--line);
            border-radius: 24px;

            background:
                radial-gradient(
                    circle at 10% 0%,
                    rgba(99, 242, 225, 0.09),
                    transparent 30%
                ),
                radial-gradient(
                    circle at 88% 12%,
                    rgba(162, 109, 255, 0.11),
                    transparent 32%
                ),
                linear-gradient(
                    145deg,
                    rgba(17, 20, 31, 0.97),
                    rgba(8, 10, 16, 0.98)
                );

            box-shadow:
                0 28px 70px rgba(0, 0, 0, 0.30);
        }

        .variant-card-head {
            position: relative;
            z-index: 2;

            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 24px;

            margin-bottom: 30px;
        }

        .variant-card-number {
            margin-bottom: 7px;

            color: #8bdcff;

            font-size: 13px;
            font-weight: 800;
            letter-spacing: 1.2px;
            text-transform: uppercase;
        }

        .variant-card h3 {
            margin: 0;

            font-size: clamp(32px, 4vw, 46px);
            line-height: 1.05;
            letter-spacing: -1.5px;
        }

        .variant-count {
            flex: 0 0 auto;

            display: inline-flex;
            align-items: center;
            justify-content: center;

            min-width: 110px;
            padding: 10px 15px;

            border: 1px solid rgba(99, 242, 225, 0.22);
            border-radius: 999px;

            background: rgba(99, 242, 225, 0.055);
            color: #b7f3ea;

            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.7px;
            text-transform: uppercase;
        }

        .variant-card-copy {
            position: relative;
            z-index: 2;

            max-width: 800px;
            margin: 0 0 32px;

            color: var(--text-soft);

            font-size: 18px;
            line-height: 1.6;
        }

        .variant-groups {
            position: relative;
            z-index: 2;

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

        .variant-group {
            padding: 20px;

            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;

            background: rgba(255, 255, 255, 0.025);
        }

        .variant-group-title {
            margin-bottom: 13px;

            color: #f2f4f8;

            font-size: 14px;
            font-weight: 800;
            letter-spacing: 0.6px;
        }

        .variant-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .variant-chip {
            display: inline-flex;
            align-items: center;

            padding: 7px 10px;

            border: 1px solid rgba(255, 255, 255, 0.09);
            border-radius: 999px;

            background: rgba(255, 255, 255, 0.035);
            color: #cdd2dd;

            font-size: 12px;
            font-weight: 700;
            line-height: 1.2;
        }

        .variant-group-main .variant-chip {
            border-color: rgba(162, 109, 255, 0.18);
            background: rgba(162, 109, 255, 0.055);
        }

        .variant-group-league .variant-chip {
            border-color: rgba(255, 216, 122, 0.18);
            background: rgba(255, 216, 122, 0.045);
        }

        .variant-group-prize .variant-chip {
            border-color: rgba(255, 111, 207, 0.18);
            background: rgba(255, 111, 207, 0.045);
        }

        .variant-group-gym .variant-chip,
        .variant-group-wcd .variant-chip {
            border-color: rgba(93, 189, 255, 0.18);
            background: rgba(93, 189, 255, 0.045);
        }

        .status-panel {
            text-align: center;
            padding: clamp(45px, 8vw, 80px);
            border: 1px solid var(--line);
            border-radius: 24px;

            background:
                radial-gradient(
                    circle at top,
                    rgba(94,189,255,0.08),
                    transparent 35%
                ),
                rgba(13,15,23,0.84);
        }

        .status-panel h2 {
            margin: 0 0 18px;
            font-size: clamp(34px, 5vw, 56px);
            letter-spacing: -2px;
        }

        .status-panel p {
            max-width: 720px;
            margin: 0 auto;
            color: var(--text-soft);
            font-size: 20px;
        }

        .status-badge {
            display: inline-block;
            margin-bottom: 20px;
            padding: 7px 13px;
            border: 1px solid rgba(99,242,225,0.25);
            border-radius: 999px;
            color: #aef4eb;
            background: rgba(99,242,225,0.04);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 1.4px;
            text-transform: uppercase;
        }

        footer {
            padding: 45px 0 35px;
            border-top: 1px solid var(--line);
            color: var(--text-muted);
        }

        .footer-main {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            text-align: center;
        }

        .footer-brand,
        .footer-disclaimer {
            font-size: 14px;
            line-height: 1.5;
            color: var(--text-muted);
            text-align: center;
        }

        .footer-disclaimer {
            max-width: none;
        }

        .visitor-stats {
            margin-top: 20px;
            padding-top: 14px;
            border-top:
                1px solid
                rgba(255,255,255,0.045);

            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;

            color: #4f5562;
            font-size: 10px;
        }

        .visitor-stats strong {
            color: #6e7585;
            font-weight: 500;
        }

        .stat-separator {
            color: #343945;
        }

        .nav-contact {
            border: 1px solid rgba(162, 109, 255, 0.38);
            border-radius: 10px;
            padding: 9px 15px;
            background: linear-gradient(110deg, rgba(162,109,255,0.16), rgba(93,189,255,0.12));
            color: #f2efff;
            font: inherit;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
        }


        .nav-contact {
            position: relative;
        }

        .contact-unread-badge {
            display: none;
            min-width: 19px;
            height: 19px;
            padding: 0 5px;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: -7px;
            right: -8px;
            border: 2px solid #07090f;
            border-radius: 999px;
            background: #d84d63;
            color: #ffffff;
            font-size: 10px;
            font-weight: 800;
            line-height: 1;
            box-shadow: 0 4px 12px rgba(216,77,99,0.35);
        }

        .contact-unread-badge.visible {
            display: inline-flex;
        }

        .eyebrow-separator { color: #626979; }

        .hero-status-stack {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .eyebrow-construction {
            color: var(--gold);
        }

        .update-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;

            padding: 9px 16px;

            border: 1px solid var(--line-strong);
            border-radius: 999px;

            background: rgba(255, 255, 255, 0.032);
            color: #aab1c0;

            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.75px;

            box-shadow:
                inset 0 0 0 1px rgba(255,255,255,0.01);
        }

        .contact-live-pill {
            border-color: rgba(99, 242, 225, 0.22);
            background: rgba(99, 242, 225, 0.035);
            color: #b7f3ea;
        }

        .contact-chat {
            position: fixed;
            right: 24px;
            top: 92px;
            z-index: 1000;
            width: min(390px, calc(100vw - 32px));
            max-height: calc(100vh - 116px);
            max-height: calc(100dvh - 116px);
            display: none;
            overflow: hidden;
            flex-direction: column;
            border: 1px solid rgba(255,255,255,0.13);
            border-radius: 18px;
            background: rgba(10,12,19,0.98);
            box-shadow: 0 28px 80px rgba(0,0,0,0.58);
            backdrop-filter: blur(18px);
        }
        .contact-chat.open { display:flex; }
        .contact-chat-header {
            min-height:68px; padding:15px 17px; display:flex; align-items:center; justify-content:space-between;
            gap:15px; border-bottom:1px solid rgba(255,255,255,0.08);
            background:linear-gradient(110deg, rgba(162,109,255,0.10), rgba(93,189,255,0.06));
        }
        .contact-chat-title { font-size:16px; font-weight:800; color:#fff; }
        .contact-chat-subtitle { margin-top:1px; font-size:11px; color:#81899a; }
        .contact-chat-close {
            width:35px; height:35px; padding:0; border:1px solid rgba(255,255,255,0.09); border-radius:9px;
            background:rgba(255,255,255,0.035); color:#c7cbd4; font-size:23px; line-height:1; cursor:pointer;
        }
        .contact-chat-body {
            flex: 1 1 auto;
            min-height: 0;
            max-height: calc(100vh - 185px);
            max-height: calc(100dvh - 185px);
            overflow-y: auto;
            overscroll-behavior: contain;
            -webkit-overflow-scrolling: touch;
            padding: 20px;
            padding-bottom: calc(24px + env(safe-area-inset-bottom));
        }
        .contact-chat-intro { margin:0 0 18px; color:var(--text-soft); font-size:14px; line-height:1.55; }
        .contact-field { margin-bottom:14px; }
        .contact-field label { display:block; margin-bottom:5px; color:#c9ced9; font-size:12px; font-weight:700; }
        .contact-field input, .contact-field textarea {
            width:100%; padding:11px 12px; border:1px solid rgba(255,255,255,0.11); border-radius:9px;
            outline:none; background:rgba(255,255,255,0.035); color:#fff; font:inherit; font-size:14px;
        }
        .contact-field textarea { resize:vertical; min-height:110px; }
        .contact-field input:focus, .contact-field textarea:focus { border-color:rgba(162,109,255,0.65); }
        .contact-privacy { margin:5px 0 15px; color:#6f7685; font-size:10px; line-height:1.5; }
        .contact-submit {
            width:100%; min-height:44px; border:0; border-radius:10px;
            background:linear-gradient(110deg,#d7c3ff,#8bdcff,#f4a7df);
            color:#07080c; font-size:13px; font-weight:800; cursor:pointer;
        }

        .contact-submit:disabled {
            opacity:0.65;
            cursor:wait;
        }

        .contact-honeypot {
            position:absolute !important;
            left:-9999px !important;
            width:1px !important;
            height:1px !important;
            overflow:hidden !important;
            opacity:0 !important;
            pointer-events:none !important;
        }

        .contact-status {
            display:none;
            margin-top:12px;
            padding:10px 12px;
            border-radius:9px;
            font-size:11px;
            line-height:1.45;
        }

        .contact-status.success {
            display:block;
            border:1px solid rgba(99,242,225,0.28);
            background:rgba(99,242,225,0.06);
            color:#b7f3ea;
        }

        .contact-status.error {
            display:block;
            border:1px solid rgba(255,111,128,0.28);
            background:rgba(255,111,128,0.06);
            color:#ffb8c0;
        }

        .contact-view-hidden {
            display: none !important;
        }

        .chat-conversation-head {
            position: sticky;
            top: 0;
            z-index: 8;

            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;

            margin: -4px -2px 14px;
            padding: 10px 2px 12px;

            border-bottom: 1px solid rgba(255,255,255,0.07);

            background:
                linear-gradient(
                    180deg,
                    rgba(10,12,19,1) 0%,
                    rgba(10,12,19,0.97) 82%,
                    rgba(10,12,19,0.90) 100%
                );

            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .chat-conversation-name {
            color: #ffffff;
            font-size: 13px;
            font-weight: 800;
        }

        .chat-conversation-email {
            margin-top: 2px;
            color: #747c8c;
            font-size: 10px;
        }

        .chat-new-conversation {
            border: 1px solid rgba(255,255,255,0.10);
            border-radius: 8px;
            padding: 7px 9px;
            background: rgba(255,255,255,0.035);
            color: #9ca4b3;
            font-size: 10px;
            cursor: pointer;
        }

        .chat-new-conversation:hover {
            color: #ffffff;
            background: rgba(255,255,255,0.06);
        }

        .chat-messages {
            display: flex;
            flex-direction: column;
            gap: 10px;
            min-height: 180px;
            max-height: 330px;
            overflow-y: auto;
            padding: 4px 2px 12px;
            scroll-behavior: smooth;
        }

        .chat-message {
            display: flex;
        }

        .chat-message.visitor {
            justify-content: flex-end;
        }

        .chat-message.admin {
            justify-content: flex-start;
        }

        .chat-bubble {
            max-width: 84%;
            padding: 10px 12px;
            border-radius: 12px;
            white-space: pre-wrap;
            word-break: break-word;
            font-size: 12px;
            line-height: 1.5;
        }

        .chat-message.visitor .chat-bubble {
            border: 1px solid rgba(162,109,255,0.35);
            border-bottom-right-radius: 4px;
            background: rgba(162,109,255,0.14);
            color: #eee9ff;
        }

        .chat-message.admin .chat-bubble {
            border: 1px solid rgba(93,189,255,0.25);
            border-bottom-left-radius: 4px;
            background: rgba(93,189,255,0.08);
            color: #e7f4ff;
        }

        .chat-message-meta {
            margin-bottom: 5px;
            color: #9aa3b3;
            font-size: 10px;
            font-weight: 800;
        }

        .chat-loading {
            padding: 22px 10px;
            text-align: center;
            color: #798191;
            font-size: 12px;
        }

        .chat-reply {
            padding-top: 14px;
            border-top: 1px solid rgba(255,255,255,0.07);
        }

        .chat-reply textarea {
            width: 100%;
            min-height: 82px;
            padding: 11px 12px;
            border: 1px solid rgba(255,255,255,0.11);
            border-radius: 9px;
            resize: vertical;
            outline: none;
            background: rgba(255,255,255,0.035);
            color: #ffffff;
            font: inherit;
            font-size: 13px;
        }

        .chat-reply textarea:focus {
            border-color: rgba(162,109,255,0.65);
        }

        .chat-reply-actions {
            display: flex;
            justify-content: flex-end;
            margin-top: 8px;
        }

        .chat-reply-send {
            min-height: 38px;
            padding: 0 16px;
            border: 0;
            border-radius: 9px;
            background: linear-gradient(110deg,#d7c3ff,#8bdcff,#f4a7df);
            color: #07080c;
            font-size: 12px;
            font-weight: 800;
            cursor: pointer;
        }

        .chat-reply-send:disabled {
            opacity: 0.65;
            cursor: wait;
        }

        @media (max-width: 900px) {

            .nav-links { display: flex; }
            .nav-links > a { display: none; }
            .nav-contact { display: inline-flex; align-items: center; }

            .intro-grid {
                grid-template-columns: 1fr;
            }

            .highlight-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .category-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .variant-groups {
                grid-template-columns: 1fr;
            }

            .variant-gallery-grid-main,
            .variant-gallery-grid-extended {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .feature {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 620px) {

            .eyebrow {
                align-items: center;
                flex-wrap: wrap;
                justify-content: center;
            }

            .update-pill {
                max-width: calc(100vw - 40px);
                text-align: center;
                font-size: 12px;
                padding: 8px 14px;
            }

            .eyebrow {
                font-size: 13px;
            }

            .contact-chat {
                top: 74px;
                right: 10px;
                left: 10px;
                width: auto;
                height: calc(100vh - 84px);
                height: calc(100dvh - 84px);
                max-height: calc(100vh - 84px);
                max-height: calc(100dvh - 84px);
                border-radius: 16px;
            }

            .contact-chat-header {
                flex: 0 0 auto;
            }

            .contact-chat-body {
                flex: 1 1 auto;
                min-height: 0;
                max-height: none;
                overflow-y: auto;
                padding: 18px;
                padding-bottom: calc(24px + env(safe-area-inset-bottom));
            }

            .contact-submit {
                position: sticky;
                bottom: 0;
                z-index: 5;
                margin-top: 8px;
                box-shadow:
                    0 -10px 24px rgba(10, 12, 19, 0.75);
            }

            .chat-reply-actions {
                position: sticky;
                bottom: 0;
                z-index: 5;
                padding-top: 8px;
                background: rgba(10, 12, 19, 0.96);
            }

            .wrap {
                width:
                    min(
                        calc(100% - 28px),
                        var(--max-width)
                    );
            }

            .nav-inner {
                min-height: 66px;
            }

            .brand-text {
                font-size: 16px;
            }

            .hero {
                padding-top: 42px;
            }

            .hero h1 {
                font-size: 52px;
                letter-spacing: -3px;
            }

            .hero-object {
                margin-top: 55px;
                min-height: 290px;
            }

            .card-placeholder {
                width: 190px;
            }

            section {
                padding: 70px 0;
            }

            .highlight-grid {
                grid-template-columns: 1fr;
            }

            .highlight-card-visual-budew {
                max-width: 280px;
                height: 215px;
            }

            .variant-card-head {
                flex-direction: column;
                align-items: flex-start;
            }

            .variant-count {
                min-width: 0;
            }

            .variant-gallery-modal {
                padding: 0;
                align-items: stretch;
                justify-content: stretch;
            }

            .variant-gallery-dialog {
                width: 100vw;
                height: 100vh;
                height: 100dvh;

                max-height: none;

                overflow-y: auto;
                overscroll-behavior: contain;
                -webkit-overflow-scrolling: touch;

                border: 0;
                border-radius: 0;
            }

            .variant-gallery-header {
                position: relative;
                top: auto;

                padding:
                    max(18px, env(safe-area-inset-top))
                    18px
                    18px;
            }

            .variant-gallery-body {
                max-height: none;

                overflow: visible;

                padding:
                    18px
                    18px
                    max(28px, env(safe-area-inset-bottom));
            }

            .variant-gallery-grid-main,
            .variant-gallery-grid-extended {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .variant-gallery-item {
                padding: 10px;
            }

            .card-image-lightbox {
                padding: 0;
            }

            .card-image-lightbox-inner {
                width: 100vw;
                height: 100vh;
                height: 100dvh;
            }

            .card-image-lightbox img {
                max-width: 96vw;
                max-height: 88vh;
                max-height: 88dvh;
                border-radius: 10px;
            }

            .card-image-lightbox-close {
                top: calc(12px + env(safe-area-inset-top));
                right: 12px;
            }

            .card-image-lightbox-caption {
                bottom: calc(12px + env(safe-area-inset-bottom));
                max-width: calc(100vw - 32px);
                white-space: normal;
            }

            .highlight-card {
                min-height: 335px;
            }

            .category-grid {
                grid-template-columns: 1fr;
            }

            .feature-large {
                min-height: 390px;
                padding: 30px;
            }

            .feature-small {
                min-height: 210px;
                padding: 25px;
            }
        }

        @media (max-width: 620px) and (max-height: 760px) {

            .contact-chat {
                top: 68px;
                height: calc(100dvh - 76px);
                max-height: calc(100dvh - 76px);
            }

            .contact-chat-header {
                min-height: 58px;
                padding: 11px 14px;
            }

            .contact-chat-body {
                padding: 14px;
                padding-bottom: calc(20px + env(safe-area-inset-bottom));
            }

            .contact-chat-intro {
                margin-bottom: 12px;
            }

            .contact-field {
                margin-bottom: 10px;
            }

            .contact-field input {
                padding: 9px 11px;
            }

            .contact-field textarea {
                min-height: 92px;
            }
        }


        /*
        |--------------------------------------------------------------------------
        | PROFESSIONAL TYPOGRAPHY & UI CONSISTENCY PASS
        |--------------------------------------------------------------------------
        |
        | One unified visual scale across navigation, content cards,
        | buttons and the public contact/chat interface.
        |
        */

        body {
            font-size: 16px;
            line-height: 1.62;
        }

        /* Top navigation */
        .brand-text {
            font-size: 18px;
            font-weight: 800;
        }

        .nav-links {
            gap: 26px;
            font-size: 17px;
            font-weight: 650;
        }

        .nav-contact {
            min-height: 42px;
            padding: 0 16px;
            font-size: 15px;
            font-weight: 750;
        }

        /* Main buttons */
        .button {
            min-height: 50px;
            padding: 0 23px;
            font-size: 16px;
            font-weight: 750;
        }

        /* Section typography */
        .section-kicker,
        .highlight-type,
        .variant-gallery-section-kicker {
            font-size: 14px;
            font-weight: 800;
        }

        .section-copy,
        .intro-text {
            font-size: 19px;
            line-height: 1.62;
        }

        .category h3 {
            font-size: 25px;
            line-height: 1.22;
        }

        .category p,
        .highlight-card p {
            font-size: 17px;
            line-height: 1.58;
        }

        .highlight-note {
            font-size: 13px;
        }

        .footer-brand,
        .footer-disclaimer {
            font-size: 15px;
            line-height: 1.6;
        }

        /* Status pills - compact, but still readable */
        .eyebrow {
            font-size: 14px;
        }

        .update-pill {
            font-size: 13px;
        }

        /*
        |--------------------------------------------------------------------------
        | CONTACT / LIVE CHAT - PROFESSIONAL DESKTOP SIZE
        |--------------------------------------------------------------------------
        */

        .contact-chat {
            width: min(460px, calc(100vw - 40px));
            right: 24px;
            top: 90px;
            border-radius: 20px;
        }

        .contact-chat-header {
            min-height: 76px;
            padding: 17px 20px;
        }

        .contact-chat-title {
            font-size: 20px;
            font-weight: 800;
            line-height: 1.25;
        }

        .contact-chat-subtitle {
            margin-top: 3px;
            font-size: 12px;
            line-height: 1.35;
        }

        .contact-chat-close {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            font-size: 25px;
        }

        .contact-chat-body {
            padding: 24px;
            padding-bottom: calc(26px + env(safe-area-inset-bottom));
        }

        .contact-chat-intro {
            margin-bottom: 22px;
            font-size: 16px;
            line-height: 1.6;
        }

        .contact-field {
            margin-bottom: 17px;
        }

        .contact-field label {
            margin-bottom: 7px;
            font-size: 14px;
            font-weight: 750;
        }

        .contact-field input,
        .contact-field textarea {
            padding: 13px 14px;
            border-radius: 10px;
            font-size: 16px;
            line-height: 1.45;
        }

        .contact-field input {
            min-height: 48px;
        }

        .contact-field textarea {
            min-height: 140px;
        }

        .contact-privacy {
            margin: 7px 0 18px;
            font-size: 12px;
            line-height: 1.55;
        }

        .contact-submit {
            min-height: 50px;
            border-radius: 11px;
            font-size: 15px;
            font-weight: 800;
        }

        .contact-status {
            margin-top: 14px;
            padding: 11px 13px;
            font-size: 13px;
            line-height: 1.5;
        }

        /*
        |--------------------------------------------------------------------------
        | EXISTING CONVERSATION VIEW
        |--------------------------------------------------------------------------
        */

        .chat-conversation-head {
            margin-bottom: 16px;
            padding-bottom: 14px;
        }

        .chat-conversation-name {
            font-size: 15px;
        }

        .chat-conversation-email {
            font-size: 12px;
        }

        .chat-new-conversation {
            padding: 8px 11px;
            font-size: 12px;
        }

        .chat-messages {
            gap: 12px;
            max-height: 380px;
        }

        .chat-bubble {
            max-width: 86%;
            padding: 12px 14px;
            border-radius: 13px;
            font-size: 14px;
            line-height: 1.55;
        }

        .chat-message-meta {
            font-size: 11px;
        }

        .chat-loading {
            font-size: 14px;
        }

        .chat-reply {
            padding-top: 16px;
        }

        .chat-reply textarea {
            min-height: 105px;
            padding: 13px 14px;
            border-radius: 10px;
            font-size: 15px;
            line-height: 1.5;
        }

        .chat-reply-send {
            min-height: 44px;
            padding: 0 18px;
            border-radius: 10px;
            font-size: 14px;
        }

        /*
        |--------------------------------------------------------------------------
        | TABLET / MOBILE CONSISTENCY
        |--------------------------------------------------------------------------
        */

        @media (max-width: 900px) {
            .nav-contact {
                min-height: 40px;
                font-size: 14px;
            }
        }

        @media (max-width: 620px) {
            body {
                font-size: 16px;
            }

            .brand-text {
                font-size: 16px;
            }

            .nav-contact {
                min-height: 38px;
                padding: 0 13px;
                font-size: 13px;
            }

            .button {
                min-height: 48px;
                font-size: 15px;
            }

            .section-copy,
            .intro-text,
            .category p,
            .highlight-card p {
                font-size: 17px;
            }

            .contact-chat {
                top: 68px;
                right: 0;
                left: 0;
                width: 100vw;
                height: calc(100dvh - 68px);
                max-height: calc(100dvh - 68px);
                border-left: 0;
                border-right: 0;
                border-bottom: 0;
                border-radius: 18px 18px 0 0;
            }

            .contact-chat-header {
                min-height: 70px;
                padding:
                    15px
                    17px;
            }

            .contact-chat-title {
                font-size: 19px;
            }

            .contact-chat-subtitle {
                font-size: 12px;
            }

            .contact-chat-body {
                padding: 20px 17px;
                padding-bottom: calc(24px + env(safe-area-inset-bottom));
            }

            .contact-chat-intro {
                font-size: 16px;
            }

            .contact-field label {
                font-size: 14px;
            }

            .contact-field input,
            .contact-field textarea {
                font-size: 16px;
            }

            .contact-field textarea {
                min-height: 125px;
            }

            .contact-privacy {
                font-size: 12px;
            }

            .contact-submit {
                min-height: 50px;
                font-size: 15px;
            }

            .chat-bubble {
                max-width: 90%;
                font-size: 14px;
            }

            .chat-reply textarea {
                font-size: 16px;
            }
        }



        /*
        |--------------------------------------------------------------------------
        | ERROR CARDS - PREVIEW + INDIVIDUAL GALLERIES
        |--------------------------------------------------------------------------
        */

        .highlight-card-visual-errors {
            position: relative;

            width: 100%;
            max-width: 245px;
            height: 190px;

            margin: 0 auto 24px;
            padding: 10px;

            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;

            border: 1px solid rgba(255, 216, 122, 0.18);
            border-radius: 14px;

            background:
                radial-gradient(
                    circle at 50% 0%,
                    rgba(255, 216, 122, 0.08),
                    transparent 45%
                ),
                rgba(255,255,255,0.018);

            box-shadow:
                0 18px 36px rgba(0,0,0,0.30);
        }

        .error-highlight-preview {
            position: relative;
            overflow: hidden;

            min-width: 0;
            min-height: 0;

            border: 1px solid rgba(255,255,255,0.09);
            border-radius: 8px;

            background:
                linear-gradient(
                    145deg,
                    rgba(68, 53, 30, 0.60),
                    rgba(24, 25, 36, 0.96)
                );
        }

        .error-highlight-preview img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .error-card-gallery {
            padding: 20px;

            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 18px;

            background: rgba(255,255,255,0.024);
        }

        .error-card-gallery + .error-card-gallery {
            margin-top: 24px;
        }

        .error-card-gallery-title {
            margin: 0 0 16px;

            color: #ffffff;

            font-size: 24px;
            font-weight: 800;
            line-height: 1.2;
        }

        .error-card-gallery-layout {
            display: grid;
            grid-template-columns: minmax(0, 1.45fr) minmax(190px, 0.55fr);
            gap: 18px;
            align-items: start;
        }

        .error-card-main {
            position: relative;
            overflow: hidden;

            width: 100%;
            min-height: 500px;

            display: flex;
            align-items: center;
            justify-content: center;

            cursor: zoom-in;

            border: 1px solid rgba(255,255,255,0.10);
            border-radius: 14px;

            background: #0b0d14;

            box-shadow:
                0 18px 38px rgba(0,0,0,0.34);
        }

        .error-card-main img {
            display: block;

            width: 100%;
            height: 100%;
            max-height: 690px;

            object-fit: contain;
        }

        .error-card-thumbnails {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
        }

        .error-card-thumb {
            position: relative;
            overflow: hidden;

            aspect-ratio: 0.715;

            cursor: pointer;

            border: 1px solid rgba(255,255,255,0.10);
            border-radius: 10px;

            background: #0b0d14;

            transition:
                border-color 0.2s ease,
                transform 0.2s ease,
                box-shadow 0.2s ease;
        }

        .error-card-thumb:hover {
            transform: translateY(-2px);
            border-color: rgba(139,220,255,0.30);
        }

        .error-card-thumb.active {
            border-color: rgba(139,220,255,0.62);

            box-shadow:
                0 0 0 1px rgba(139,220,255,0.12);
        }

        .error-card-thumb img {
            display: block;

            width: 100%;
            height: 100%;

            object-fit: contain;
        }

        .error-gallery-empty {
            min-height: 220px;

            display: flex;
            align-items: center;
            justify-content: center;

            padding: 24px;

            border: 1px dashed rgba(255,255,255,0.12);
            border-radius: 14px;

            color: #777e90;

            font-size: 15px;
            font-weight: 700;
            text-align: center;
        }

        @media (max-width: 780px) {
            .error-card-gallery-layout {
                grid-template-columns: 1fr;
            }

            .error-card-main {
                min-height: 0;
            }

            .error-card-main img {
                max-height: none;
            }

            .error-card-thumbnails {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        @media (max-width: 520px) {
            .error-card-gallery {
                padding: 14px;
            }

            .error-card-thumbnails {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }


        .highlight-card-visual-prize-pack {
            position: relative;

            width: 100%;
            max-width: 245px;
            height: 190px;
            aspect-ratio: auto;

            margin: 0 auto 24px;
            padding: 10px;

            display: grid;
            gap: 7px;

            transform: none;

            border: 1px solid rgba(139, 220, 255, 0.18);
            border-radius: 14px;

            background:
                radial-gradient(
                    circle at 50% 0%,
                    rgba(93, 189, 255, 0.10),
                    transparent 45%
                ),
                rgba(255,255,255,0.018);

            box-shadow:
                0 18px 36px rgba(0,0,0,0.30);
        }

        .highlight-card-visual-prize-pack::before {
            content: none;
        }

        .prize-pack-preview-thumb {
            position: relative;
            overflow: hidden;

            min-width: 0;
            min-height: 0;

            display: flex;
            align-items: center;
            justify-content: center;

            border: 1px solid rgba(255,255,255,0.09);
            border-radius: 7px;

            background:
                linear-gradient(
                    145deg,
                    rgba(47, 40, 84, 0.74),
                    rgba(20, 25, 44, 0.94)
                );
        }

        .prize-pack-preview-thumb img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .prize-pack-preview-empty {
            grid-column: 1 / -1;

            display: flex;
            align-items: center;
            justify-content: center;

            padding: 18px;

            color: rgba(255,255,255,0.42);

            font-size: 11px;
            font-weight: 800;
            line-height: 1.5;
            letter-spacing: 0.8px;
            text-align: center;
            text-transform: uppercase;
        }

        .prize-pack-preview-count {
            position: absolute;
            right: 8px;
            bottom: 8px;
            z-index: 3;

            padding: 4px 7px;

            border: 1px solid rgba(139,220,255,0.16);
            border-radius: 999px;

            background: rgba(7,9,14,0.84);
            color: #bfeeff;

            font-size: 9px;
            font-weight: 800;
            line-height: 1;
            letter-spacing: 0.5px;
        }


        .prize-pack-grid-secondary {
            margin-top: 28px;
        }


        .category-clickable {
            cursor: pointer;
        }

        .category-clickable:focus-visible {
            outline: 2px solid rgba(139, 220, 255, 0.72);
            outline-offset: 3px;
        }

        .category-specials {
            border-color: rgba(255, 216, 122, 0.20);

            background:
                radial-gradient(
                    circle at 85% 15%,
                    rgba(255, 216, 122, 0.08),
                    transparent 32%
                ),
                linear-gradient(
                    150deg,
                    rgba(24, 22, 28, 0.94),
                    rgba(10, 12, 19, 0.97)
                );
        }

        .category-specials h3 {
            color: #ffe6a4;
        }


        .variant-showcase-main-catalog {
            position: relative;
        }

        .variant-showcase-main-catalog > .wrap {
            padding:
                clamp(28px, 4vw, 46px);

            border: 1px solid rgba(139, 220, 255, 0.14);
            border-radius: 26px;

            background:
                radial-gradient(
                    circle at 12% 0%,
                    rgba(93, 189, 255, 0.07),
                    transparent 34%
                ),
                radial-gradient(
                    circle at 88% 5%,
                    rgba(162, 109, 255, 0.08),
                    transparent 32%
                ),
                rgba(255,255,255,0.015);
        }

        @media (max-width: 700px) {
            .variant-showcase-main-catalog > .wrap {
                padding: 20px;
                border-radius: 20px;
            }
        }


        .highlight-card-visual-base-variants {
            position: relative;
            width: 100%;
            max-width: 245px;
            height: 190px;
            margin: 0 auto 24px;
            padding: 10px;
            display: grid;
            gap: 7px;
            overflow: hidden;
            border: 1px solid rgba(139, 220, 255, 0.18);
            border-radius: 14px;
            background:
                radial-gradient(
                    circle at 50% 0%,
                    rgba(93, 189, 255, 0.10),
                    transparent 45%
                ),
                rgba(255,255,255,0.018);
            box-shadow:
                0 18px 36px rgba(0,0,0,0.30);
        }

        .base-variant-preview-thumb {
            position: relative;
            overflow: hidden;
            min-width: 0;
            min-height: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255,255,255,0.09);
            border-radius: 7px;
            background:
                linear-gradient(
                    145deg,
                    rgba(47, 40, 84, 0.74),
                    rgba(20, 25, 44, 0.94)
                );
        }

        .base-variant-preview-thumb img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .base-variant-preview-count {
            position: absolute;
            right: 8px;
            bottom: 8px;
            z-index: 3;
            padding: 4px 7px;
            border: 1px solid rgba(139,220,255,0.16);
            border-radius: 999px;
            background: rgba(7,9,14,0.84);
            color: #bfeeff;
            font-size: 9px;
            font-weight: 800;
            line-height: 1;
            letter-spacing: 0.5px;
        }

        .base-variant-preview-empty {
            grid-column: 1 / -1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 18px;
            color: rgba(255,255,255,0.42);
            font-size: 11px;
            font-weight: 800;
            line-height: 1.5;
            letter-spacing: 0.8px;
            text-align: center;
            text-transform: uppercase;
        }


        .highlight-title-with-number {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
        }

        .highlight-card-number {
            color: #8bdcff;
            font-size: 13px;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: 0.45px;
            white-space: nowrap;
        }

        .catalog-video-showcase {
            padding-top: 42px;
        }

        .catalog-video-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 22px;
            align-items: stretch;
        }

        .catalog-large-panel {
            position: relative;
            overflow: hidden;
            min-width: 0;
            padding: clamp(28px, 3.5vw, 42px);
            border: 1px solid rgba(255,255,255,0.10);
            border-radius: 26px;
            background:
                radial-gradient(
                    circle at 12% 0%,
                    rgba(93, 189, 255, 0.07),
                    transparent 35%
                ),
                radial-gradient(
                    circle at 88% 4%,
                    rgba(162, 109, 255, 0.08),
                    transparent 32%
                ),
                rgba(12, 14, 22, 0.92);
            box-shadow:
                0 26px 70px rgba(0,0,0,0.24);
        }

        .catalog-large-panel-video {
            display: flex;
            flex-direction: column;
        }

        .catalog-large-title {
            margin: 8px 0 14px;
            color: #ffffff;
            font-size: clamp(31px, 3.6vw, 46px);
            line-height: 1.08;
            letter-spacing: -1.4px;
        }

        .catalog-large-copy {
            margin: 0 0 28px;
            color: var(--text-soft);
            font-size: 17px;
            line-height: 1.62;
        }

        .catalog-large-panel .variant-card {
            margin-top: 30px;
        }

        .album-video-placeholder {
            position: relative;
            overflow: hidden;
            flex: 1 1 auto;
            min-height: 430px;
            margin-top: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 18px;
            border: 1px solid rgba(255,255,255,0.10);
            border-radius: 20px;
            background:
                radial-gradient(
                    circle at 50% 42%,
                    rgba(162,109,255,0.18),
                    transparent 35%
                ),
                radial-gradient(
                    circle at 38% 65%,
                    rgba(93,189,255,0.10),
                    transparent 32%
                ),
                linear-gradient(
                    145deg,
                    rgba(21, 24, 38, 0.96),
                    rgba(8, 10, 16, 0.98)
                );
        }

        .album-video-play {
            width: 82px;
            height: 82px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-left: 5px;
            border: 1px solid rgba(255,255,255,0.16);
            border-radius: 50%;
            background: rgba(255,255,255,0.045);
            color: #ffffff;
            font-size: 30px;
            box-shadow:
                0 0 40px rgba(162,109,255,0.16);
        }

        .album-video-label {
            color: #c7ccd8;
            font-size: 15px;
            font-weight: 800;
            letter-spacing: 0.5px;
            text-align: center;
            text-transform: uppercase;
        }

        @media (max-width: 980px) {
            .catalog-video-grid {
                grid-template-columns: 1fr;
            }

            .album-video-placeholder {
                min-height: 320px;
            }
        }

        @media (max-width: 700px) {
            .catalog-video-showcase {
                padding-top: 28px;
            }

            .catalog-large-panel {
                padding: 22px;
                border-radius: 20px;
            }

            .catalog-large-panel .variant-card {
                margin-top: 22px;
            }

            .album-video-placeholder {
                min-height: 260px;
            }
        }


        .catalog-large-panel-clickable {
            cursor: pointer;
        }

        .catalog-large-panel-clickable:hover {
            border-color: rgba(139, 220, 255, 0.28);

            box-shadow:
                0 30px 78px rgba(0,0,0,0.30),
                0 0 0 1px rgba(139,220,255,0.035);
        }

        .catalog-large-panel-clickable:focus-visible {
            outline: 2px solid rgba(139, 220, 255, 0.72);
            outline-offset: 4px;
        }

        .catalog-random-preview {
            position: relative;
            overflow: hidden;

            min-height: 430px;
            margin-top: 10px;
            padding: 28px;

            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
            align-items: center;

            border: 1px solid rgba(255,255,255,0.10);
            border-radius: 20px;

            background:
                radial-gradient(
                    circle at 18% 20%,
                    rgba(93,189,255,0.11),
                    transparent 30%
                ),
                radial-gradient(
                    circle at 82% 74%,
                    rgba(162,109,255,0.14),
                    transparent 34%
                ),
                linear-gradient(
                    145deg,
                    rgba(21, 24, 38, 0.96),
                    rgba(8, 10, 16, 0.98)
                );
        }

        .catalog-random-card {
            position: relative;
            overflow: hidden;

            width: 100%;
            aspect-ratio: 0.715;

            border: 1px solid rgba(255,255,255,0.11);
            border-radius: 14px;

            background: rgba(6, 8, 13, 0.88);

            box-shadow:
                0 18px 34px rgba(0,0,0,0.38);

            transition:
                opacity 0.22s ease,
                transform 0.28s ease,
                border-color 0.25s ease;
        }

        .catalog-random-card:nth-child(1) {
            transform: translateY(15px) rotate(-2.5deg);
        }

        .catalog-random-card:nth-child(2) {
            transform: translateY(-8px);
        }

        .catalog-random-card:nth-child(3) {
            transform: translateY(16px) rotate(2.5deg);
        }

        .catalog-random-card.is-changing {
            opacity: 0.12;
        }

        .catalog-random-card img {
            display: block;

            width: 100%;
            height: 100%;

            object-fit: contain;

            background: #080a10;
        }

        .catalog-random-empty {
            grid-column: 1 / -1;

            display: flex;
            align-items: center;
            justify-content: center;

            min-height: 340px;

            color: #7e8595;

            font-size: 15px;
            font-weight: 800;
            letter-spacing: 0.5px;
            text-align: center;
            text-transform: uppercase;
        }

        .catalog-open-gallery {
            display: inline-flex;
            align-items: center;

            width: fit-content;
            margin-top: 20px;
            padding: 8px 12px;

            border: 1px solid rgba(139,220,255,0.16);
            border-radius: 999px;

            background: rgba(139,220,255,0.045);
            color: #bfeeff;

            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.45px;
        }

        @media (max-width: 700px) {
            .catalog-random-preview {
                min-height: 310px;
                padding: 18px;
                gap: 10px;
            }

            .catalog-random-card:nth-child(1) {
                transform: translateY(8px) rotate(-2deg);
            }

            .catalog-random-card:nth-child(2) {
                transform: translateY(-4px);
            }

            .catalog-random-card:nth-child(3) {
                transform: translateY(8px) rotate(2deg);
            }
        }


        .all-variants-dialog {
            width: min(1180px, 100%);
        }

        .all-variants-dialog .variant-gallery-header {
            gap: 18px;
            padding: 14px 18px 12px;
        }

        .all-variants-dialog .variant-gallery-kicker {
            margin-bottom: 4px;
            font-size: 11px;
            letter-spacing: 1px;
        }

        .all-variants-dialog .variant-gallery-title {
            font-size: clamp(24px, 2.6vw, 32px);
            line-height: 1.08;
            letter-spacing: -0.8px;
        }

        .all-variants-dialog .variant-gallery-subtitle {
            margin-top: 6px;
            font-size: 14px;
            line-height: 1.35;
        }

        .all-variants-dialog .variant-gallery-close {
            width: 36px;
            height: 36px;
            font-size: 22px;
        }

        .all-variants-dialog .variant-gallery-body {
            max-height: calc(100vh - 125px);
            max-height: calc(100dvh - 125px);
            padding: 18px 18px 20px;
        }

        .all-variants-groups {
            display: grid;
            gap: 24px;
        }

        .all-variants-group {
            padding: 26px;
            border: 1px solid rgba(255,255,255,0.09);
            border-radius: 22px;
            background:
                radial-gradient(circle at 0% 0%, rgba(93,189,255,0.055), transparent 30%),
                rgba(10, 12, 19, 0.74);
        }

        .all-variants-group-head {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 18px;
            margin-bottom: 20px;
        }

        .all-variants-title-line {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .all-variants-card-title {
            margin: 0;
            color: #ffffff;
            font-size: clamp(24px, 2.4vw, 34px);
            line-height: 1.1;
        }

        .all-variants-card-number-inline {
            color: #8bdcff;
            font-size: calc(clamp(24px, 2.4vw, 34px) - 2px);
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: 0;
            white-space: nowrap;
        }

        .all-variants-count {
            flex: 0 0 auto;
            padding: 7px 11px;
            border: 1px solid rgba(139,220,255,0.18);
            border-radius: 999px;
            background: rgba(139,220,255,0.045);
            color: #bfeeff;
            font-size: 12px;
            font-weight: 900;
            letter-spacing: 0.4px;
        }

        .all-variants-group .variant-gallery-section-head {
            margin-bottom: 18px;
        }

        .all-variants-group .variant-gallery-section-title {
            margin: 0;
        }

        .all-variants-subsection + .all-variants-subsection {
            margin-top: 28px;
            padding-top: 28px;
            border-top: 1px solid rgba(255,255,255,0.08);
        }

        .all-variants-group:not(.all-variants-group-ex) .variant-gallery-grid-main {
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }

        .all-variants-group:not(.all-variants-group-ex) .variant-gallery-grid-extended {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .all-variants-empty {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 270px;
            border: 1px dashed rgba(255,255,255,0.08);
            border-radius: 16px;
            background: rgba(255,255,255,0.018);
            color: #747c8d;
            font-size: 14px;
            font-weight: 700;
            text-align: center;
        }

        .all-variants-group-ex .all-variants-group-head {
            margin-bottom: 24px;
        }

        .all-variants-group-ex .all-variants-count {
            padding: 10px 16px;
            font-size: 16px;
            line-height: 1;
        }

        .all-variants-ex-row {
            display: grid;
            grid-template-columns: 250px minmax(0, 1fr);
            gap: 64px;
            align-items: start;
        }

        .all-variants-ex-row > .variant-gallery-section {
            min-width: 0;
            margin: 0;
            padding: 0;
            align-self: start;
        }

        .all-variants-ex-row > .variant-gallery-section + .variant-gallery-section {
            border: 0;
        }

        .all-variants-ex-standard {
            position: relative;
        }

        .all-variants-ex-standard::after {
            content: "";
            position: absolute;
            top: 0;
            right: -32px;
            bottom: 0;
            width: 1px;
            background: rgba(255,255,255,0.08);
        }

        .all-variants-ex-row .variant-gallery-section-head {
            display: flex;
            align-items: flex-start;
            height: 38px;
            min-height: 38px;
            margin: 0 0 18px;
        }

        .all-variants-ex-row .variant-gallery-section-title {
            font-size: 24px;
            line-height: 1.15;
        }

        .all-variants-base-grid,
        .all-variants-ex-variant-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, 250px);
            gap: 20px;
            justify-content: start;
            align-items: start;
        }

        .all-variants-ex-row .variant-gallery-item {
            width: 250px;
            max-width: 100%;
        }

        .all-variants-group-ex .all-variants-empty {
            min-height: 300px;
        }

        .all-variants-variant-highlight {
            color: #8bdcff;
            font-weight: 800;
        }

        @media (max-width: 980px) {
            .all-variants-group:not(.all-variants-group-ex) .variant-gallery-grid-main,
            .all-variants-group:not(.all-variants-group-ex) .variant-gallery-grid-extended {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 760px) {
            .all-variants-ex-row {
                grid-template-columns: minmax(0, 1fr);
                gap: 34px;
            }

            .all-variants-ex-standard::after {
                display: none;
            }

            .all-variants-ex-row > .all-variants-ex-extended {
                padding-top: 28px;
                border-top: 1px solid rgba(255,255,255,0.08);
            }

            .all-variants-ex-row .variant-gallery-section-head {
                height: auto;
                min-height: 0;
            }
        }

        @media (max-width: 700px) {
            .all-variants-group {
                padding: 18px;
            }

            .all-variants-group-head {
                flex-direction: column;
                gap: 10px;
            }

            .all-variants-card-number-inline {
                font-size: calc(clamp(24px, 6vw, 30px) - 2px);
            }

            .all-variants-subsection + .all-variants-subsection {
                margin-top: 22px;
                padding-top: 22px;
            }

            .all-variants-group:not(.all-variants-group-ex) .variant-gallery-grid-main,
            .all-variants-group:not(.all-variants-group-ex) .variant-gallery-grid-extended {
                grid-template-columns: 1fr;
            }

            .all-variants-dialog .variant-gallery-header {
                padding: 12px 14px 10px;
            }

            .all-variants-dialog .variant-gallery-title {
                font-size: clamp(22px, 7vw, 28px);
            }

            .all-variants-dialog .variant-gallery-subtitle {
                font-size: 13px;
            }

            .all-variants-dialog .variant-gallery-body {
                max-height: calc(100vh - 116px);
                max-height: calc(100dvh - 116px);
                padding: 14px;
            }
        }

        @media (max-width: 520px) {
            .all-variants-base-grid,
            .all-variants-ex-variant-grid {
                grid-template-columns: minmax(0, 1fr);
            }

            .all-variants-ex-row .variant-gallery-item {
                width: 100%;
                max-width: 250px;
            }

            .all-variants-group-ex .all-variants-count {
                font-size: 13px;
            }

            .all-variants-empty {
                min-height: 180px;
            }
        }

    