/* Unit 1.2 KC reel — rich CSS-only visuals per slide (paired with ap-euro-u12v--v* in graphics.js) */

.ap-euro-u12v {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

/* ========== v1 Petrarch / classical revival ========== */
.ap-euro-u12v--v1 .ap-euro-u12v__aurora {
    position: absolute;
    inset: -40%;
    background: conic-gradient(
        from 220deg,
        rgba(180, 120, 60, 0.25),
        rgba(40, 60, 120, 0.2),
        rgba(200, 100, 80, 0.22),
        rgba(180, 120, 60, 0.25)
    );
    animation: ap-u12-aurora-spin 18s linear infinite;
    opacity: 0.9;
}

.ap-euro-u12v--v1 .ap-euro-u12v__burst {
    position: absolute;
    inset: 0;
    background: repeating-conic-gradient(from 0deg, transparent 0deg 8deg, rgba(255, 255, 255, 0.04) 8deg 9deg);
    animation: ap-u12-burst 24s linear infinite;
    pointer-events: none;
}

.ap-euro-u12v--v1 .ap-euro-u12v__scroll {
    position: absolute;
    left: 50%;
    bottom: 12%;
    transform: translateX(-50%);
    width: 42%;
    height: 38%;
    border-radius: 6px;
    background: linear-gradient(145deg, rgba(240, 220, 180, 0.35), rgba(120, 90, 50, 0.45));
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.15),
        inset 0 0 20px rgba(0, 0, 0, 0.2),
        0 12px 24px rgba(0, 0, 0, 0.35);
    animation: ap-u12-scroll-float 3.2s ease-in-out infinite;
}

.ap-euro-u12v--v1 .ap-euro-u12v__scroll::before {
    content: '';
    position: absolute;
    left: 12%;
    right: 12%;
    top: 18%;
    height: 3px;
    background: rgba(60, 40, 20, 0.35);
    border-radius: 2px;
    box-shadow:
        0 14px 0 rgba(60, 40, 20, 0.28),
        0 28px 0 rgba(60, 40, 20, 0.22);
}

.ap-euro-u12v--v1 .ap-euro-u12v__columns {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14%;
    align-items: flex-end;
    justify-content: center;
    width: 88%;
    height: 48%;
}

.ap-euro-u12v--v1 .ap-euro-u12v__col {
    width: 16%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    border-radius: 4px 4px 0 0;
    box-shadow: inset 0 -8px 0 rgba(0, 0, 0, 0.15);
    animation: ap-u12-col-rise 2.6s ease-in-out infinite;
}

.ap-euro-u12v--v1 .ap-euro-u12v__col:nth-child(1) {
    height: 52%;
    animation-delay: 0s;
}
.ap-euro-u12v--v1 .ap-euro-u12v__col:nth-child(2) {
    height: 68%;
    animation-delay: 0.15s;
}
.ap-euro-u12v--v1 .ap-euro-u12v__col:nth-child(3) {
    height: 55%;
    animation-delay: 0.3s;
}

.ap-euro-u12v--v1 .ap-euro-u12v__glyph {
    position: absolute;
    top: 14%;
    right: 16%;
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    font-weight: 700;
    color: rgba(255, 220, 160, 0.45);
    text-shadow: 0 0 24px rgba(255, 200, 120, 0.4);
    animation: ap-u12-glyph-drift 4s ease-in-out infinite;
}

@keyframes ap-u12-aurora-spin {
    to {
        transform: rotate(360deg);
    }
}
@keyframes ap-u12-burst {
    to {
        transform: rotate(-360deg);
    }
}
@keyframes ap-u12-scroll-float {
    0%,
    100% {
        transform: translateX(-50%) translateY(0) rotate(-1deg);
    }
    50% {
        transform: translateX(-50%) translateY(-8px) rotate(1deg);
    }
}
@keyframes ap-u12-col-rise {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.85;
    }
    50% {
        transform: translateY(-5px);
        opacity: 1;
    }
}
@keyframes ap-u12-glyph-drift {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-6px, 4px) scale(1.05);
        opacity: 0.85;
    }
}

/* ========== v2 Platonic Academy / Ficino ========== */
.ap-euro-u12v--v2 .ap-euro-u12v__sun {
    position: absolute;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    width: 48%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, rgba(255, 240, 200, 0.55), rgba(200, 140, 60, 0.15) 55%, transparent 70%);
    box-shadow:
        0 0 40px rgba(255, 200, 100, 0.35),
        0 0 80px rgba(255, 160, 80, 0.15);
    animation: ap-u12-sun-pulse 3s ease-in-out infinite;
}

.ap-euro-u12v--v2 .ap-euro-u12v__orbit {
    position: absolute;
    left: 50%;
    top: 42%;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    aspect-ratio: 1;
    height: auto;
}

.ap-euro-u12v--v2 .ap-euro-u12v__orbit--a {
    width: 62%;
    animation: ap-u12-orbit-spin 12s linear infinite;
}

.ap-euro-u12v--v2 .ap-euro-u12v__orbit--b {
    width: 78%;
    border-style: dashed;
    opacity: 0.5;
    animation: ap-u12-orbit-spin-rev 18s linear infinite;
}

.ap-euro-u12v--v2 .ap-euro-u12v__orbit--a::after,
.ap-euro-u12v--v2 .ap-euro-u12v__orbit--b::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 220, 160, 0.8);
    top: 0;
    left: 50%;
    margin: -4px 0 0 -4px;
    box-shadow: 0 0 12px rgba(255, 200, 120, 0.8);
}

.ap-euro-u12v--v2 .ap-euro-u12v__academy {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 56%;
    height: 18%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border-radius: 8px 8px 0 0;
    clip-path: polygon(8% 100%, 0 40%, 50% 0, 100% 40%, 92% 100%);
    animation: ap-u12-academy-shimmer 2.8s ease-in-out infinite;
}

.ap-euro-u12v--v2 .ap-euro-u12v__books {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    align-items: flex-end;
}

.ap-euro-u12v--v2 .ap-euro-u12v__books span {
    width: 14px;
    border-radius: 2px 2px 0 0;
    background: linear-gradient(90deg, rgba(140, 90, 50, 0.7), rgba(100, 60, 35, 0.8));
    box-shadow: 2px 0 0 rgba(0, 0, 0, 0.2);
    animation: ap-u12-book-sway 2.4s ease-in-out infinite;
}

.ap-euro-u12v--v2 .ap-euro-u12v__books span:nth-child(1) {
    height: 36px;
    animation-delay: 0s;
}
.ap-euro-u12v--v2 .ap-euro-u12v__books span:nth-child(2) {
    height: 44px;
    animation-delay: 0.2s;
}
.ap-euro-u12v--v2 .ap-euro-u12v__books span:nth-child(3) {
    height: 32px;
    animation-delay: 0.4s;
}

@keyframes ap-u12-sun-pulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        filter: brightness(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.06);
        filter: brightness(1.15);
    }
}
@keyframes ap-u12-orbit-spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes ap-u12-orbit-spin-rev {
    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}
@keyframes ap-u12-academy-shimmer {
    0%,
    100% {
        opacity: 0.85;
    }
    50% {
        opacity: 1;
    }
}
@keyframes ap-u12-book-sway {
    0%,
    100% {
        transform: rotate(-2deg);
    }
    50% {
        transform: rotate(2deg);
    }
}

/* ========== v3 Gutenberg / print ========== */
.ap-euro-u12v--v3 .ap-euro-u12v__press {
    position: absolute;
    left: 50%;
    bottom: 18%;
    transform: translateX(-50%);
    width: 52%;
    height: 42%;
    background: linear-gradient(180deg, rgba(60, 55, 50, 0.85), rgba(30, 28, 26, 0.95));
    border-radius: 6px;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.4);
    animation: ap-u12-press-thump 2s ease-in-out infinite;
}

.ap-euro-u12v--v3 .ap-euro-u12v__press-plate {
    position: absolute;
    bottom: 28%;
    left: 10%;
    right: 10%;
    height: 18%;
    background: linear-gradient(180deg, rgba(120, 120, 130, 0.6), rgba(80, 80, 90, 0.7));
    border-radius: 4px;
    animation: ap-u12-plate-down 2s ease-in-out infinite;
}

.ap-euro-u12v--v3 .ap-euro-u12v__press-screw {
    position: absolute;
    top: 8%;
    left: 50%;
    width: 12px;
    height: 38%;
    margin-left: -6px;
    background: repeating-linear-gradient(
        180deg,
        rgba(200, 200, 210, 0.5) 0 4px,
        rgba(100, 100, 110, 0.6) 4px 8px
    );
    border-radius: 4px;
    animation: ap-u12-screw-spin 2s linear infinite;
}

.ap-euro-u12v--v3 .ap-euro-u12v__type-rain {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-around;
    padding: 8% 10% 0;
    font-size: clamp(0.65rem, 2.5vw, 0.85rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.35);
}

.ap-euro-u12v--v3 .ap-euro-u12v__type-rain span {
    display: block;
    animation: ap-u12-letter-fall 2.4s ease-in-out infinite;
}

.ap-euro-u12v--v3 .ap-euro-u12v__type-rain span:nth-child(1) {
    animation-delay: 0s;
}
.ap-euro-u12v--v3 .ap-euro-u12v__type-rain span:nth-child(2) {
    animation-delay: 0.15s;
}
.ap-euro-u12v--v3 .ap-euro-u12v__type-rain span:nth-child(3) {
    animation-delay: 0.3s;
}
.ap-euro-u12v--v3 .ap-euro-u12v__type-rain span:nth-child(4) {
    animation-delay: 0.45s;
}
.ap-euro-u12v--v3 .ap-euro-u12v__type-rain span:nth-child(5) {
    animation-delay: 0.6s;
}

.ap-euro-u12v--v3 .ap-euro-u12v__sheet-fly {
    position: absolute;
    top: 22%;
    right: 8%;
    width: 32%;
    height: 22%;
    background: rgba(255, 250, 235, 0.2);
    border-radius: 2px;
    transform: rotate(12deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    animation: ap-u12-sheet-fly 3s ease-in-out infinite;
}

@keyframes ap-u12-press-thump {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(3px);
    }
}
@keyframes ap-u12-plate-down {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}
@keyframes ap-u12-screw-spin {
    to {
        transform: rotate(360deg);
    }
}
@keyframes ap-u12-letter-fall {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.35;
    }
    50% {
        transform: translateY(12px);
        opacity: 0.9;
    }
}
@keyframes ap-u12-sheet-fly {
    0%,
    100% {
        transform: rotate(12deg) translate(0, 0);
    }
    50% {
        transform: rotate(8deg) translate(-8px, 6px);
    }
}

/* ========== v4 Machiavelli / political theater ========== */
.ap-euro-u12v--v4 .ap-euro-u12v__chess-floor {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 38%;
    background: repeating-conic-gradient(#2a2a30 0% 25%, #1a1a22 0% 50%) 50% / 20px 20px;
    opacity: 0.65;
    animation: ap-u12-chess-shift 8s linear infinite;
}

.ap-euro-u12v--v4 .ap-euro-u12v__crown {
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    width: 38%;
    height: 22%;
    background: linear-gradient(180deg, rgba(255, 215, 100, 0.45), rgba(180, 140, 40, 0.35));
    clip-path: polygon(
        10% 100%,
        15% 40%,
        25% 70%,
        35% 35%,
        50% 55%,
        65% 35%,
        75% 70%,
        85% 40%,
        90% 100%
    );
    filter: drop-shadow(0 4px 12px rgba(255, 200, 80, 0.35));
    animation: ap-u12-crown-tilt 3.5s ease-in-out infinite;
}

.ap-euro-u12v--v4 .ap-euro-u12v__mask {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translateX(-50%);
    width: 44%;
    height: 26%;
    border-radius: 50% 50% 45% 45%;
    background: radial-gradient(ellipse at 50% 40%, rgba(220, 200, 180, 0.35), rgba(80, 70, 65, 0.5));
    box-shadow: inset 0 -12px 20px rgba(0, 0, 0, 0.35);
    animation: ap-u12-mask-float 3s ease-in-out infinite;
}

.ap-euro-u12v--v4 .ap-euro-u12v__mask::before,
.ap-euro-u12v--v4 .ap-euro-u12v__mask::after {
    content: '';
    position: absolute;
    top: 38%;
    width: 14%;
    height: 10%;
    background: rgba(20, 20, 24, 0.85);
    border-radius: 50%;
}
.ap-euro-u12v--v4 .ap-euro-u12v__mask::before {
    left: 22%;
}
.ap-euro-u12v--v4 .ap-euro-u12v__mask::after {
    right: 22%;
}

.ap-euro-u12v--v4 .ap-euro-u12v__dagger {
    position: absolute;
    bottom: 28%;
    right: 18%;
    width: 6px;
    height: 32%;
    background: linear-gradient(180deg, rgba(220, 230, 240, 0.7), rgba(140, 150, 170, 0.5));
    border-radius: 2px;
    transform: rotate(-35deg);
    box-shadow: 0 0 20px rgba(200, 220, 255, 0.25);
    animation: ap-u12-dagger-glint 2.2s ease-in-out infinite;
}

@keyframes ap-u12-chess-shift {
    to {
        background-position: 20px 20px;
    }
}
@keyframes ap-u12-crown-tilt {
    0%,
    100% {
        transform: translateX(-50%) rotate(-2deg);
    }
    50% {
        transform: translateX(-50%) rotate(2deg);
    }
}
@keyframes ap-u12-mask-float {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-4px);
    }
}
@keyframes ap-u12-dagger-glint {
    0%,
    100% {
        opacity: 0.75;
        filter: brightness(1);
    }
    50% {
        opacity: 1;
        filter: brightness(1.25);
    }
}

/* ========== v5 Civic Rome / forum ========== */
.ap-euro-u12v--v5 .ap-euro-u12v__forum-sky {
    position: absolute;
    inset: 0;
    background: linear-gradient(185deg, rgba(80, 60, 120, 0.35) 0%, rgba(40, 35, 55, 0.5) 40%, rgba(25, 22, 30, 0.9) 100%);
}

.ap-euro-u12v--v5 .ap-euro-u12v__forum-sky::after {
    content: '';
    position: absolute;
    bottom: 35%;
    left: 15%;
    width: 25%;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 200, 140, 0.12);
    filter: blur(8px);
    animation: ap-u12-sun-glow 4s ease-in-out infinite;
}

.ap-euro-u12v--v5 .ap-euro-u12v__arch {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    width: 58%;
    height: 42%;
    border: 3px solid rgba(255, 255, 255, 0.18);
    border-bottom: none;
    border-radius: 999px 999px 0 0;
    box-shadow: inset 0 -20px 40px rgba(0, 0, 0, 0.25);
}

.ap-euro-u12v--v5 .ap-euro-u12v__forum-cols {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10%;
    width: 70%;
    height: 48%;
    justify-content: center;
    align-items: flex-end;
}

.ap-euro-u12v--v5 .ap-euro-u12v__forum-cols span {
    flex: 1;
    max-width: 18%;
    background: linear-gradient(180deg, rgba(240, 230, 210, 0.25), rgba(120, 110, 100, 0.2));
    border-radius: 4px 4px 0 0;
    box-shadow: inset 2px 0 0 rgba(255, 255, 255, 0.08);
    animation: ap-u12-forum-pulse 2.8s ease-in-out infinite;
}

.ap-euro-u12v--v5 .ap-euro-u12v__forum-cols span:nth-child(1) {
    height: 55%;
}
.ap-euro-u12v--v5 .ap-euro-u12v__forum-cols span:nth-child(2) {
    height: 72%;
    animation-delay: 0.1s;
}
.ap-euro-u12v--v5 .ap-euro-u12v__forum-cols span:nth-child(3) {
    height: 68%;
    animation-delay: 0.2s;
}
.ap-euro-u12v--v5 .ap-euro-u12v__forum-cols span:nth-child(4) {
    height: 58%;
    animation-delay: 0.15s;
}

.ap-euro-u12v--v5 .ap-euro-u12v__shield {
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translateX(-50%);
    width: 28%;
    aspect-ratio: 1;
    background: linear-gradient(145deg, rgba(180, 60, 50, 0.5), rgba(100, 30, 35, 0.6));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: 0 0 24px rgba(200, 80, 60, 0.25);
    animation: ap-u12-shield-proud 3s ease-in-out infinite;
}

.ap-euro-u12v--v5 .ap-euro-u12v__shield::after {
    content: 'SPQR';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.45rem, 1.8vw, 0.55rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    color: rgba(255, 220, 200, 0.55);
}

@keyframes ap-u12-sun-glow {
    0%,
    100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}
@keyframes ap-u12-forum-pulse {
    0%,
    100% {
        opacity: 0.85;
    }
    50% {
        opacity: 1;
    }
}
@keyframes ap-u12-shield-proud {
    0%,
    100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.04);
    }
}

/* ========== v6 Art beef / triptych ========== */
.ap-euro-u12v--v6 .ap-euro-u12v__triptych {
    position: absolute;
    bottom: 14%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 48%;
}

.ap-euro-u12v--v6 .ap-euro-u12v__panel {
    width: 52px;
    height: 85%;
    border-radius: 4px;
    background: linear-gradient(180deg, rgba(100, 140, 200, 0.35), rgba(40, 50, 80, 0.5));
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
    animation: ap-u12-panel-shine 2.4s ease-in-out infinite;
}

.ap-euro-u12v--v6 .ap-euro-u12v__panel--mid {
    height: 100%;
    background: linear-gradient(180deg, rgba(220, 180, 120, 0.4), rgba(80, 60, 40, 0.55));
    animation-delay: 0.2s;
}

.ap-euro-u12v--v6 .ap-euro-u12v__panel:not(.ap-euro-u12v__panel--mid) {
    animation-delay: 0s;
}

.ap-euro-u12v--v6 .ap-euro-u12v__bust {
    position: absolute;
    bottom: 20%;
    width: 22%;
    height: 35%;
    border-radius: 50% 50% 40% 40%;
    background: linear-gradient(180deg, rgba(200, 190, 175, 0.4), rgba(90, 85, 80, 0.45));
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
}

.ap-euro-u12v--v6 .ap-euro-u12v__bust--l {
    left: 8%;
    animation: ap-u12-bust-nod 2.8s ease-in-out infinite;
}

.ap-euro-u12v--v6 .ap-euro-u12v__bust--r {
    right: 8%;
    animation: ap-u12-bust-nod 2.8s ease-in-out infinite reverse;
}

.ap-euro-u12v--v6 .ap-euro-u12v__vs {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(1.1rem, 5vw, 1.65rem);
    font-weight: 900;
    font-style: italic;
    color: rgba(255, 100, 80, 0.85);
    text-shadow:
        0 0 20px rgba(255, 80, 60, 0.6),
        0 2px 0 rgba(0, 0, 0, 0.4);
    animation: ap-u12-vs-pulse 1.2s ease-in-out infinite;
    letter-spacing: 0.05em;
}

@keyframes ap-u12-panel-shine {
    0%,
    100% {
        filter: brightness(0.95);
    }
    50% {
        filter: brightness(1.15);
    }
}
@keyframes ap-u12-bust-nod {
    0%,
    100% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-3px) rotate(2deg);
    }
}
@keyframes ap-u12-vs-pulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 1;
    }
}

/* ========== v7 Brunelleschi / dome + perspective ========== */
.ap-euro-u12v--v7 .ap-euro-u12v__persp {
    position: absolute;
    inset: 0;
    perspective: 120px;
    overflow: hidden;
}

.ap-euro-u12v--v7 .ap-euro-u12v__persp-line {
    position: absolute;
    left: 50%;
    bottom: 22%;
    width: 2px;
    height: 55%;
    margin-left: -1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.15));
    transform-origin: 50% 100%;
}

.ap-euro-u12v--v7 .ap-euro-u12v__persp-line:nth-child(1) {
    transform: rotate(-28deg);
    animation: ap-u12-line-fade 3s ease-in-out infinite;
}
.ap-euro-u12v--v7 .ap-euro-u12v__persp-line:nth-child(2) {
    transform: rotate(0deg);
    animation-delay: 0.1s;
}
.ap-euro-u12v--v7 .ap-euro-u12v__persp-line:nth-child(3) {
    transform: rotate(28deg);
    animation: ap-u12-line-fade 3s ease-in-out infinite 0.2s;
}

.ap-euro-u12v--v7 .ap-euro-u12v__vp {
    position: absolute;
    left: 50%;
    bottom: 18%;
    width: 6px;
    height: 6px;
    margin: -3px 0 0 -3px;
    border-radius: 50%;
    background: rgba(255, 220, 160, 0.6);
    box-shadow: 0 0 16px rgba(255, 200, 120, 0.5);
    animation: ap-u12-vp-glow 2s ease-in-out infinite;
}

.ap-euro-u12v--v7 .ap-euro-u12v__dome {
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%);
    width: 58%;
    height: 38%;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, rgba(220, 210, 200, 0.35), rgba(80, 75, 85, 0.45));
    box-shadow:
        inset 0 -20px 40px rgba(0, 0, 0, 0.35),
        0 8px 0 rgba(0, 0, 0, 0.25);
    animation: ap-u12-dome-rise 4s ease-in-out infinite;
}

.ap-euro-u12v--v7 .ap-euro-u12v__rib {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    margin-left: -1.5px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
    transform-origin: 50% 100%;
}

.ap-euro-u12v--v7 .ap-euro-u12v__rib:nth-child(1) {
    transform: rotate(-35deg);
}
.ap-euro-u12v--v7 .ap-euro-u12v__rib:nth-child(2) {
    transform: rotate(-12deg);
}
.ap-euro-u12v--v7 .ap-euro-u12v__rib:nth-child(3) {
    transform: rotate(12deg);
}
.ap-euro-u12v--v7 .ap-euro-u12v__rib:nth-child(4) {
    transform: rotate(35deg);
}

@keyframes ap-u12-line-fade {
    0%,
    100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.85;
    }
}
@keyframes ap-u12-vp-glow {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}
@keyframes ap-u12-dome-rise {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-4px);
    }
}

/* ========== v8 Naturalism / studio ========== */
.ap-euro-u12v--v8 .ap-euro-u12v__mesh {
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(200, 120, 160, 0.2), transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(100, 160, 220, 0.18), transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(60, 50, 80, 0.4), transparent 70%);
    animation: ap-u12-mesh-morph 10s ease-in-out infinite;
}

.ap-euro-u12v--v8 .ap-euro-u12v__easel {
    position: absolute;
    left: 50%;
    bottom: 12%;
    transform: translateX(-50%);
    width: 4px;
    height: 42%;
    background: linear-gradient(180deg, rgba(160, 120, 80, 0.7), rgba(80, 55, 40, 0.85));
    border-radius: 2px;
}

.ap-euro-u12v--v8 .ap-euro-u12v__easel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    padding-bottom: 100%;
    height: 0;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(20, 22, 30, 0.5);
}

.ap-euro-u12v--v8 .ap-euro-u12v__figure {
    position: absolute;
    left: 50%;
    bottom: 38%;
    transform: translateX(-50%);
    width: 22%;
    height: 32%;
    border-radius: 50% 50% 42% 42%;
    background: linear-gradient(160deg, rgba(230, 200, 175, 0.45), rgba(140, 110, 95, 0.5));
    box-shadow:
        -8px 0 0 -2px rgba(200, 170, 150, 0.25),
        8px 0 0 -2px rgba(200, 170, 150, 0.2);
    animation: ap-u12-figure-breathe 3s ease-in-out infinite;
}

.ap-euro-u12v--v8 .ap-euro-u12v__stroke-line {
    position: absolute;
    top: 28%;
    left: 22%;
    width: 56%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    border-radius: 2px;
    transform: rotate(-8deg);
    animation: ap-u12-stroke-sweep 2.5s ease-in-out infinite;
}

@keyframes ap-u12-mesh-morph {
    0%,
    100% {
        filter: hue-rotate(0deg);
        transform: scale(1);
    }
    50% {
        filter: hue-rotate(25deg);
        transform: scale(1.05);
    }
}
@keyframes ap-u12-figure-breathe {
    0%,
    100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.03);
    }
}
@keyframes ap-u12-stroke-sweep {
    0%,
    100% {
        opacity: 0.4;
        transform: rotate(-8deg) translateX(0);
    }
    50% {
        opacity: 1;
        transform: rotate(-5deg) translateX(6px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ap-euro-u12v *,
    .ap-euro-u12v *::before,
    .ap-euro-u12v *::after {
        animation: none !important;
    }
}
