/* LYLLIC Digital Art House - Showroom Styles */

/* ============================================
   SHOWROOM HERO SECTION
   ============================================ */

.arthaus-showroom {
    position: relative;
    background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 50%, #0F0F0F 100%);
    overflow: hidden;
    padding: 8rem 0;
}

.arthaus-showroom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.showroom-hero {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.showroom-hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    background: linear-gradient(135deg, #6366F1, #8B5CF6, #EC4899, #10B981);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.showroom-hero__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-style: italic;
}

.showroom-hero__visual {
    display: flex;
    justify-content: center;
    perspective: 1000px;
    margin-top: 4rem;
}

/* ============================================
   3D FLOATING CUBE
   ============================================ */

.floating-cube {
    position: relative;
    width: 120px;
    height: 120px;
    transform-style: preserve-3d;
    animation: floatAndRotate 12s infinite ease-in-out;
}

.cube-face {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(99, 102, 241, 0.6);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    backdrop-filter: blur(10px);
}

.cube-face--front { transform: rotateY(0deg) translateZ(60px); }
.cube-face--back { transform: rotateY(180deg) translateZ(60px); }
.cube-face--right { transform: rotateY(90deg) translateZ(60px); }
.cube-face--left { transform: rotateY(-90deg) translateZ(60px); }
.cube-face--top { transform: rotateX(90deg) translateZ(60px); }
.cube-face--bottom { transform: rotateX(-90deg) translateZ(60px); }

/* ============================================
   GALLERY NAVIGATION
   ============================================ */

.gallery-navigation {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.gallery-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.gallery-nav__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-nav__item:hover::before,
.gallery-nav__item--active::before {
    opacity: 1;
}

.gallery-nav__item:hover {
    transform: translateY(-8px) rotateX(5deg);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.gallery-nav__item--active {
    border-color: rgba(99, 102, 241, 0.8);
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-4px);
}

.gallery-nav__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.gallery-nav__icon svg {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.gallery-nav__icon svg path,
.gallery-nav__icon svg circle {
    transform-origin: center;
}

.gallery-nav__icon svg {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.3));
}

.gallery-nav__item:hover .gallery-nav__icon svg {
    transform: scale(1.1) rotateY(15deg) rotateX(10deg);
    filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.6));
}

.gallery-nav__item--active .gallery-nav__icon svg {
    transform: scale(1.05) rotateY(10deg);
    filter: drop-shadow(0 0 25px rgba(99, 102, 241, 0.8));
}

.gallery-nav__item span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   ART GALLERIES
   ============================================ */

.art-gallery {
    display: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.art-gallery.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-style: italic;
}

.art-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* ============================================
   ART PIECES
   ============================================ */

.art-piece {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.art-piece:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(1deg);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(99, 102, 241, 0.1);
}

.art-piece--large {
    grid-column: span 2;
}

.art-piece__canvas {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(26, 26, 26, 0.9));
    position: relative;
    overflow: hidden;
}

.art-piece--large .art-piece__canvas {
    height: 400px;
}

.art-piece__info {
    padding: 2rem;
}

.art-piece__info h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.art-piece__info p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* ============================================
   VISUAL ARTS SPECIFIC STYLES
   ============================================ */

.brand-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.brand-logo-evolution {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.logo-stage {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    position: relative;
    animation: logoEvolve 3s infinite;
}

.logo-stage--2 { animation-delay: 0.5s; }
.logo-stage--3 { animation-delay: 1s; }

.brand-typography .typography-display {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366F1, #8B5CF6, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.brand-typography .typography-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

.color-palette-visualization {
    display: flex;
    gap: 2rem;
    align-items: center;
    position: relative;
}

.color-sphere {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    animation: spherePulse 2s infinite ease-in-out;
    position: relative;
}

.color-sphere--primary {
    background: radial-gradient(circle, #6366F1, #4F46E5);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
}

.color-sphere--secondary {
    background: radial-gradient(circle, #8B5CF6, #7C3AED);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
    animation-delay: 0.7s;
}

.color-sphere--accent {
    background: radial-gradient(circle, #10B981, #059669);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
    animation-delay: 1.4s;
}

.typography-art {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.letter-sculpture {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366F1, #8B5CF6, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform-style: preserve-3d;
    animation: letterFloat 3s infinite ease-in-out;
    filter: drop-shadow(0 10px 20px rgba(99, 102, 241, 0.3));
}

.typography-waves {
    width: 200px;
    height: 40px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(99, 102, 241, 0.5) 25%, 
        rgba(139, 92, 246, 0.5) 50%, 
        rgba(236, 72, 153, 0.5) 75%, 
        transparent 100%);
    border-radius: 20px;
    animation: waveFlow 2s infinite ease-in-out;
}

/* ============================================
   MOTION DESIGN SPECIFIC STYLES
   ============================================ */

.motion-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.morphing-shapes {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.shape {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    animation: shapeShift 4s infinite ease-in-out;
    position: relative;
}

.shape--circle {
    border-radius: 50%;
}

.shape--square {
    border-radius: 8px;
    animation-delay: 1.3s;
}

.shape--triangle {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 2.6s;
}

.motion-trail {
    width: 300px;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(99, 102, 241, 0.8), 
        rgba(139, 92, 246, 0.8), 
        rgba(236, 72, 153, 0.8));
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.motion-trail::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.6), 
        transparent);
    animation: trailSweep 3s infinite;
}

.particle-symphony {
    position: relative;
    width: 200px;
    height: 200px;
}

.particle-system {
    position: relative;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #6366F1, #8B5CF6);
    border-radius: 50%;
    animation: particleDance 3s infinite ease-in-out;
}

.particle:nth-child(1) { top: 20%; left: 30%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 70%; animation-delay: 0.6s; }
.particle:nth-child(3) { top: 80%; left: 20%; animation-delay: 1.2s; }
.particle:nth-child(4) { top: 40%; left: 80%; animation-delay: 1.8s; }
.particle:nth-child(5) { top: 10%; left: 60%; animation-delay: 2.4s; }

.kinetic-typography {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.kinetic-word {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #6366F1, #8B5CF6, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: wordFloat 2s infinite ease-in-out;
    transform-origin: center;
}

.kinetic-word:nth-child(2) { animation-delay: 0.7s; }
.kinetic-word:nth-child(3) { animation-delay: 1.4s; }

/* ============================================
   3D WORLDS SPECIFIC STYLES
   ============================================ */

.dimensional-showcase {
    perspective: 800px;
    transform-style: preserve-3d;
}

.floating-geometry {
    position: relative;
    width: 300px;
    height: 300px;
    transform-style: preserve-3d;
    animation: geometryOrbit 15s infinite linear;
}

.geo-element {
    position: absolute;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.8), rgba(139, 92, 246, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: elementFloat 6s infinite ease-in-out;
}

.geo-element--sphere {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(100px);
}

.geo-element--cube {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 70%;
    transform: translateZ(50px) rotateX(45deg) rotateY(45deg);
    animation-delay: 2s;
}

.geo-element--pyramid {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid rgba(99, 102, 241, 0.8);
    top: 70%;
    left: 30%;
    transform: translateZ(75px);
    animation-delay: 4s;
}

.orbital-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    animation: ringRotate 10s infinite linear;
}

.ring--1 {
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
}

.ring--2 {
    width: 200px;
    height: 200px;
    margin: -100px 0 0 -100px;
    animation-delay: 3.3s;
    animation-direction: reverse;
}

.ring--3 {
    width: 250px;
    height: 250px;
    margin: -125px 0 0 -125px;
    animation-delay: 6.6s;
}

.hologram-effect {
    position: relative;
    width: 200px;
    height: 200px;
}

.hologram-layers {
    position: relative;
    width: 100%;
    height: 100%;
}

.holo-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(99, 102, 241, 0.4);
    border-radius: 8px;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.1), 
        rgba(139, 92, 246, 0.1));
    animation: holoShift 3s infinite ease-in-out;
}

.holo-layer--2 {
    transform: translateZ(20px);
    animation-delay: 1s;
}

.holo-layer--3 {
    transform: translateZ(40px);
    animation-delay: 2s;
}

.crystal-formation {
    position: relative;
    width: 250px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crystal {
    position: absolute;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.6), 
        rgba(139, 92, 246, 0.6), 
        rgba(236, 72, 153, 0.6));
    clip-path: polygon(50% 0%, 80% 35%, 50% 100%, 20% 35%);
    animation: crystalGlow 4s infinite ease-in-out;
}

.crystal--large {
    width: 80px;
    height: 120px;
    z-index: 3;
}

.crystal--medium {
    width: 60px;
    height: 90px;
    left: -30px;
    top: 20px;
    z-index: 2;
    animation-delay: 1.3s;
}

.crystal--small {
    width: 40px;
    height: 70px;
    right: -20px;
    top: 30px;
    z-index: 1;
    animation-delay: 2.6s;
}

.energy-field {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: energyPulse 3s infinite ease-in-out;
}

/* ============================================
   INTERACTIVE ART SPECIFIC STYLES
   ============================================ */

.interactive-canvas {
    position: relative;
    width: 300px;
    height: 200px;
    cursor: pointer;
}

.touch-ripples {
    position: relative;
    width: 100%;
    height: 100%;
}

.ripple {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(99, 102, 241, 0.6);
    border-radius: 50%;
    animation: rippleExpand 2s infinite ease-out;
}

.ripple:nth-child(1) { top: 30%; left: 20%; }
.ripple:nth-child(2) { top: 60%; left: 70%; animation-delay: 0.7s; }
.ripple:nth-child(3) { top: 80%; left: 40%; animation-delay: 1.4s; }

.voice-visualization {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.sound-waves {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.wave {
    width: 4px;
    background: linear-gradient(to top, #6366F1, #8B5CF6);
    border-radius: 2px;
    animation: waveHeight 1.5s infinite ease-in-out;
}

.wave--1 { height: 30px; }
.wave--2 { height: 50px; animation-delay: 0.1s; }
.wave--3 { height: 70px; animation-delay: 0.2s; }
.wave--4 { height: 40px; animation-delay: 0.3s; }

.emotion-detector {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emotion-core {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #6366F1, #8B5CF6);
    border-radius: 50%;
    animation: emotionPulse 2s infinite ease-in-out;
    position: relative;
    z-index: 2;
}

.emotion-signals {
    position: absolute;
    width: 200px;
    height: 200px;
}

.signal {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    animation: signalMove 3s infinite ease-in-out;
}

.signal--joy {
    background: radial-gradient(circle, #F59E0B, #D97706);
    top: 20%;
    left: 30%;
}

.signal--calm {
    background: radial-gradient(circle, #10B981, #059669);
    top: 70%;
    left: 60%;
    animation-delay: 1s;
}

.signal--energy {
    background: radial-gradient(circle, #EF4444, #DC2626);
    top: 50%;
    left: 80%;
    animation-delay: 2s;
}

/* ============================================
   DIGITAL EXPERIENCES SPECIFIC STYLES
   ============================================ */

.journey-map {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.journey-stages {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.stage {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: stageGlow 3s infinite ease-in-out;
    position: relative;
}

.stage--engagement { animation-delay: 0.75s; }
.stage--conversion { animation-delay: 1.5s; }
.stage--loyalty { animation-delay: 2.25s; }

.journey-flow {
    width: 300px;
    height: 4px;
    background: linear-gradient(90deg, 
        #6366F1, #8B5CF6, #EC4899, #10B981);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.journey-flow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.8), 
        transparent);
    animation: flowProgress 4s infinite;
}

.ecosystem-visualization {
    position: relative;
    width: 250px;
    height: 250px;
}

.ecosystem-nodes {
    position: relative;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: nodesPulse 2s infinite ease-in-out;
}

.node--mobile { top: 10%; left: 50%; transform: translateX(-50%); }
.node--web { top: 50%; left: 90%; transform: translateY(-50%); animation-delay: 0.5s; }
.node--voice { bottom: 10%; left: 50%; transform: translateX(-50%); animation-delay: 1s; }
.node--ar { top: 50%; left: 10%; transform: translateY(-50%); animation-delay: 1.5s; }

.ecosystem-connections {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    margin: -100px 0 0 -100px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    animation: connectionsSpin 8s infinite linear;
}

.personalization-engine {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366F1, #8B5CF6, #EC4899);
    animation: avatarGlow 2s infinite ease-in-out;
    position: relative;
}

.adaptation-layers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.layer {
    width: 200px;
    height: 20px;
    border-radius: 10px;
    animation: layerAdapt 3s infinite ease-in-out;
}

.layer--content {
    background: linear-gradient(90deg, #6366F1, rgba(99, 102, 241, 0.3));
}

.layer--interface {
    background: linear-gradient(90deg, #8B5CF6, rgba(139, 92, 246, 0.3));
    animation-delay: 1s;
}

.layer--behavior {
    background: linear-gradient(90deg, #EC4899, rgba(236, 72, 153, 0.3));
    animation-delay: 2s;
}

/* ============================================
   SHOWROOM CALL TO ACTION
   ============================================ */

.showroom-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 6rem;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    position: relative;
    overflow: hidden;
}

.showroom-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.05), 
        rgba(139, 92, 246, 0.05), 
        rgba(236, 72, 153, 0.05));
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
}

.btn-arthaus {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.75rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-arthaus--primary {
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-arthaus--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.btn-arthaus--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-arthaus--secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.inspiration-sphere {
    position: relative;
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    animation: sphereFloat 8s infinite ease-in-out;
}

.sphere-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    background: radial-gradient(circle, #6366F1, #8B5CF6);
    border-radius: 50%;
    animation: coreGlow 3s infinite ease-in-out;
    z-index: 3;
}

.sphere-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sphere-ring {
    position: absolute;
    border: 1px solid rgba(99, 102, 241, 0.4);
    border-radius: 50%;
    animation: ringsRotate 6s infinite linear;
}

.sphere-ring--1 {
    width: 120px;
    height: 120px;
    margin: -60px 0 0 -60px;
}

.sphere-ring--2 {
    width: 160px;
    height: 160px;
    margin: -80px 0 0 -80px;
    animation-delay: 2s;
    animation-direction: reverse;
}

.sphere-ring--3 {
    width: 200px;
    height: 200px;
    margin: -100px 0 0 -100px;
    animation-delay: 4s;
}

.creative-sparks {
    position: absolute;
    width: 100%;
    height: 100%;
}

.spark {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #F59E0B, #D97706);
    border-radius: 50%;
    animation: sparkFly 4s infinite ease-in-out;
}

.spark:nth-child(1) { top: 20%; left: 30%; }
.spark:nth-child(2) { top: 70%; left: 80%; animation-delay: 0.8s; }
.spark:nth-child(3) { top: 80%; left: 20%; animation-delay: 1.6s; }
.spark:nth-child(4) { top: 30%; left: 85%; animation-delay: 2.4s; }
.spark:nth-child(5) { top: 10%; left: 60%; animation-delay: 3.2s; }

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes floatAndRotate {
    0%, 100% { 
        transform: translateY(0) rotateX(0deg) rotateY(0deg); 
    }
    33% { 
        transform: translateY(-20px) rotateX(180deg) rotateY(120deg); 
    }
    66% { 
        transform: translateY(10px) rotateX(360deg) rotateY(240deg); 
    }
}

@keyframes logoEvolve {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

@keyframes spherePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(99, 102, 241, 0.5); }
    50% { transform: scale(1.1); box-shadow: 0 0 50px rgba(99, 102, 241, 0.8); }
}

@keyframes letterFloat {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-10px) rotateY(15deg); }
}

@keyframes waveFlow {
    0%, 100% { transform: scaleX(1); opacity: 0.5; }
    50% { transform: scaleX(1.2); opacity: 1; }
}

@keyframes shapeShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    33% { transform: scale(1.2) rotate(120deg); }
    66% { transform: scale(0.8) rotate(240deg); }
}

@keyframes trailSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes particleDance {
    0%, 100% { 
        transform: translateY(0) scale(1); 
        opacity: 0.6; 
    }
    50% { 
        transform: translateY(-20px) scale(1.2); 
        opacity: 1; 
    }
}

@keyframes wordFloat {
    0%, 100% { 
        transform: translateY(0) rotateX(0deg); 
        opacity: 0.7; 
    }
    50% { 
        transform: translateY(-5px) rotateX(5deg); 
        opacity: 1; 
    }
}

@keyframes geometryOrbit {
    0% { transform: rotateY(0deg) rotateX(0deg); }
    100% { transform: rotateY(360deg) rotateX(360deg); }
}

@keyframes elementFloat {
    0%, 100% { transform: translateZ(0) rotateY(0deg); }
    50% { transform: translateZ(50px) rotateY(180deg); }
}

@keyframes ringRotate {
    0% { transform: rotateZ(0deg); }
    100% { transform: rotateZ(360deg); }
}

@keyframes holoShift {
    0%, 100% { 
        transform: translateY(0) rotateX(0deg); 
        opacity: 0.6; 
    }
    50% { 
        transform: translateY(-10px) rotateX(10deg); 
        opacity: 1; 
    }
}

@keyframes crystalGlow {
    0%, 100% { 
        filter: brightness(1) drop-shadow(0 0 20px rgba(99, 102, 241, 0.3)); 
    }
    50% { 
        filter: brightness(1.3) drop-shadow(0 0 40px rgba(99, 102, 241, 0.6)); 
    }
}

@keyframes energyPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.3; 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1); 
        opacity: 0.6; 
    }
}

@keyframes rippleExpand {
    0% { 
        transform: scale(0); 
        opacity: 1; 
    }
    100% { 
        transform: scale(3); 
        opacity: 0; 
    }
}

@keyframes waveHeight {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1.5); }
}

@keyframes emotionPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 30px rgba(99, 102, 241, 0.5); 
    }
    50% { 
        transform: scale(1.1); 
        box-shadow: 0 0 50px rgba(99, 102, 241, 0.8); 
    }
}

@keyframes signalMove {
    0%, 100% { 
        transform: scale(1) translateY(0); 
        opacity: 0.6; 
    }
    50% { 
        transform: scale(1.2) translateY(-10px); 
        opacity: 1; 
    }
}

@keyframes stageGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.3); 
    }
    50% { 
        box-shadow: 0 0 40px rgba(99, 102, 241, 0.6); 
    }
}

@keyframes flowProgress {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes nodesPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.3); 
    }
    50% { 
        transform: scale(1.1); 
        box-shadow: 0 0 30px rgba(99, 102, 241, 0.5); 
    }
}

@keyframes connectionsSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes avatarGlow {
    0%, 100% { 
        filter: brightness(1) drop-shadow(0 0 20px rgba(99, 102, 241, 0.3)); 
    }
    50% { 
        filter: brightness(1.2) drop-shadow(0 0 30px rgba(99, 102, 241, 0.5)); 
    }
}

@keyframes layerAdapt {
    0%, 100% { transform: scaleX(0.8); opacity: 0.6; }
    50% { transform: scaleX(1); opacity: 1; }
}

@keyframes sphereFloat {
    0%, 100% { 
        transform: translateY(0) rotateX(0deg) rotateY(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotateX(180deg) rotateY(180deg); 
    }
}

@keyframes coreGlow {
    0%, 100% { 
        filter: brightness(1) drop-shadow(0 0 30px rgba(99, 102, 241, 0.5)); 
    }
    50% { 
        filter: brightness(1.3) drop-shadow(0 0 50px rgba(99, 102, 241, 0.8)); 
    }
}

@keyframes ringsRotate {
    0% { transform: translate(-50%, -50%) rotateZ(0deg); }
    100% { transform: translate(-50%, -50%) rotateZ(360deg); }
}

@keyframes sparkFly {
    0%, 100% { 
        transform: scale(1) translateY(0); 
        opacity: 0.8; 
    }
    50% { 
        transform: scale(1.5) translateY(-15px); 
        opacity: 1; 
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .art-grid {
        grid-template-columns: 1fr;
    }
    
    .art-piece--large {
        grid-column: span 1;
    }
    
    .showroom-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .gallery-navigation {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .arthaus-showroom {
        padding: 4rem 0;
    }
    
    .showroom-hero__title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .gallery-navigation {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .gallery-nav__item {
        padding: 1rem 1.5rem;
        min-width: 200px;
    }
    
    .art-piece__canvas {
        height: 250px;
    }
    
    .art-piece--large .art-piece__canvas {
        height: 300px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-arthaus {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .showroom-hero__subtitle {
        font-size: 1rem;
    }
    
    .gallery-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .art-piece__info {
        padding: 1.5rem;
    }
    
    .showroom-cta {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

/* ============================================
   SVG ICON ANIMATIONS
   ============================================ */

.gallery-nav__icon svg {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.gallery-nav__icon svg path,
.gallery-nav__icon svg circle {
    transform-origin: center;
}

/* Interactive Art Icon Pulsing Animation */
@keyframes iconPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Enhanced hover effects for each icon type */
.gallery-nav__item[data-gallery="visual-arts"]:hover .gallery-nav__icon svg {
    animation: iconFloat 2s ease-in-out infinite;
}

.gallery-nav__item[data-gallery="motion-design"]:hover .gallery-nav__icon svg {
    animation: iconWave 3s ease-in-out infinite;
}

.gallery-nav__item[data-gallery="3d-worlds"]:hover .gallery-nav__icon svg {
    animation: iconRotate3D 4s linear infinite;
}

.gallery-nav__item[data-gallery="interactive-art"]:hover .gallery-nav__icon svg {
    animation: iconPulseGlow 2s ease-in-out infinite;
}

.gallery-nav__item[data-gallery="digital-experiences"]:hover .gallery-nav__icon svg {
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) scale(1.1) rotateY(15deg) rotateX(10deg); }
    50% { transform: translateY(-5px) scale(1.15) rotateY(20deg) rotateX(15deg); }
}

@keyframes iconWave {
    0%, 100% { transform: scale(1.1) rotateY(15deg) rotateX(10deg) rotateZ(0deg); }
    25% { transform: scale(1.15) rotateY(20deg) rotateX(15deg) rotateZ(5deg); }
    75% { transform: scale(1.15) rotateY(10deg) rotateX(5deg) rotateZ(-5deg); }
}

@keyframes iconRotate3D {
    0% { transform: scale(1.1) rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
    25% { transform: scale(1.15) rotateX(90deg) rotateY(90deg) rotateZ(90deg); }
    50% { transform: scale(1.1) rotateX(180deg) rotateY(180deg) rotateZ(180deg); }
    75% { transform: scale(1.15) rotateX(270deg) rotateY(270deg) rotateZ(270deg); }
    100% { transform: scale(1.1) rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
}

@keyframes iconPulseGlow {
    0%, 100% { 
        transform: scale(1.1) rotateY(15deg) rotateX(10deg);
        filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.6));
    }
    50% { 
        transform: scale(1.2) rotateY(20deg) rotateX(15deg);
        filter: drop-shadow(0 0 50px rgba(99, 102, 241, 1));
    }
}

@keyframes iconGlow {
    0%, 100% { 
        transform: scale(1.1) rotateY(15deg) rotateX(10deg);
        filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.6)) drop-shadow(0 0 15px rgba(236, 72, 153, 0.4));
    }
    33% { 
        transform: scale(1.15) rotateY(20deg) rotateX(15deg);
        filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.8)) drop-shadow(0 0 20px rgba(16, 185, 129, 0.6));
    }
    66% { 
        transform: scale(1.12) rotateY(10deg) rotateX(5deg);
        filter: drop-shadow(0 0 35px rgba(236, 72, 153, 0.7)) drop-shadow(0 0 18px rgba(245, 158, 11, 0.5));
    }
}
