/* AI Image Generation Section - Premium GenAI Enhancements */

/* Animated grid background effect */
.genai-image-demo {
    position: relative;
}

.genai-image-demo::before {
    background-image: 
        linear-gradient(rgba(102, 126, 234, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

/* Floating particles effect */
.genai-image-demo::after {
    background: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(240, 147, 251, 0.05) 0%, transparent 50%);
    animation: particlesFloat 15s ease-in-out infinite;
}

@keyframes particlesFloat {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

/* Section Badge - Neon glow effect */
.genai-image-demo .genai-section-badge {
    color: #667eea !important;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15)) !important;
    border: 2px solid rgba(102, 126, 234, 0.4) !important;
    font-weight: 800 !important;
    box-shadow: 
        0 0 20px rgba(102, 126, 234, 0.3),
        0 0 40px rgba(102, 126, 234, 0.2),
        inset 0 0 20px rgba(102, 126, 234, 0.1) !important;
    animation: badgeNeonPulse 2s ease-in-out infinite !important;
}

@keyframes badgeNeonPulse {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(102, 126, 234, 0.3),
            0 0 40px rgba(102, 126, 234, 0.2),
            inset 0 0 20px rgba(102, 126, 234, 0.1);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(102, 126, 234, 0.5),
            0 0 60px rgba(102, 126, 234, 0.3),
            0 0 80px rgba(118, 75, 162, 0.2),
            inset 0 0 30px rgba(102, 126, 234, 0.2);
    }
}

/* Title - Holographic gradient animation */
.genai-image-demo .genai-demo-title {
    color: #393285 !important;
    background: linear-gradient(
        90deg, 
        #393285 0%, 
        #667eea 25%, 
        #764ba2 50%, 
        #f093fb 75%, 
        #667eea 100%
    ) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: holographicShift 4s ease-in-out infinite !important;
    font-weight: 900 !important;
    text-shadow: 0 0 30px rgba(102, 126, 234, 0.3) !important;
}

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

/* Subtitle - Glowing text effect */
.genai-image-demo .genai-demo-subtitle {
    color: #393285 !important;
    opacity: 0.95 !important;
    font-weight: 600 !important;
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.15) !important;
}

/* Tab Buttons - Glassmorphism with neon border */
.genai-image-demo .genai-demo-tab {
    color: #393285 !important;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(102, 126, 234, 0.3) !important;
    font-weight: 700 !important;
    box-shadow: 
        0 8px 32px rgba(102, 126, 234, 0.1),
        inset 0 0 20px rgba(102, 126, 234, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.genai-image-demo .genai-demo-tab::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #667eea);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(8px);
}

.genai-image-demo .genai-demo-tab:hover::after,
.genai-image-demo .genai-demo-tab.active::after {
    opacity: 0.7;
}

.genai-image-demo .genai-demo-tab.active,
.genai-image-demo .genai-demo-tab:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    border-color: transparent !important;
    box-shadow: 
        0 15px 40px rgba(102, 126, 234, 0.4),
        0 0 30px rgba(102, 126, 234, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-6px) scale(1.05) !important;
}

/* Prompt Box - Dark Terminal/Code Editor Style */
.genai-image-demo .genai-demo-prompt-box {
    background: linear-gradient(135deg, #1a1f4d, #0f1438, #1a1f4d) !important;
    border: 2px solid rgba(102, 126, 234, 0.4) !important;
    border-radius: 16px !important;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(102, 126, 234, 0.2),
        inset 0 0 30px rgba(102, 126, 234, 0.1) !important;
    position: relative;
    overflow: hidden;
    padding: 35px !important;
}

.genai-image-demo .genai-demo-prompt-box::before {
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.15), transparent) !important;
    animation: scanline 3s linear infinite !important;
}

.genai-image-demo .genai-demo-prompt-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(90deg, #0a0e27, #1a1f4d, #0a0e27) !important;
    border-bottom: 1px solid rgba(102, 126, 234, 0.3);
    display: flex;
    align-items: center;
    padding: 0 15px;
}

@keyframes scanline {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.genai-image-demo .prompt-label {
    color: #667eea !important;
    font-weight: 800 !important;
    font-family: 'Courier New', monospace !important;
    font-size: 0.9rem !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    text-shadow: 0 0 15px rgba(102, 126, 234, 0.6) !important;
    margin-bottom: 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.genai-image-demo .prompt-label::before {
    content: '>_' !important;
    color: #10b981 !important;
    font-weight: 900 !important;
    animation: cursorBlink 1s step-end infinite !important;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.genai-image-demo .prompt-text {
    color: #e0e7ff !important;
    opacity: 1 !important;
    font-weight: 500 !important;
    font-family: 'Courier New', monospace !important;
    font-size: 1rem !important;
    line-height: 1.8 !important;
    border-left: 3px solid #667eea !important;
    padding-left: 20px !important;
    background: rgba(102, 126, 234, 0.05) !important;
    padding: 20px !important;
    border-radius: 8px !important;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3) !important;
    position: relative !important;
}

.genai-image-demo .prompt-text::before {
    content: '"' !important;
    position: absolute !important;
    top: -5px !important;
    left: 10px !important;
    font-size: 2rem !important;
    color: rgba(102, 126, 234, 0.3) !important;
    font-family: Georgia, serif !important;
}

.genai-image-demo .prompt-text::after {
    content: '"' !important;
    position: absolute !important;
    bottom: -15px !important;
    right: 10px !important;
    font-size: 2rem !important;
    color: rgba(102, 126, 234, 0.3) !important;
    font-family: Georgia, serif !important;
}

/* Image Placeholders - Realistic AI Generated Results */
.genai-image-demo .image-placeholder {
    background: #f8f9fa !important;
    border: 2px solid rgba(102, 126, 234, 0.2) !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Holographic corner accents */
.genai-image-demo .image-placeholder::before {
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 40%) !important;
    opacity: 1 !important;
}

/* Animated scanning line effect */
.genai-image-demo .image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: scanLine 4s linear infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    z-index: 3;
}

@keyframes scanLine {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}
.genai-image-demo .gradient-1 {
    /* Social Media Banner - Tech Analytics Dashboard */
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(102, 126, 234, 0.8) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(118, 75, 162, 0.6) 0%, transparent 50%),
        linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.genai-image-demo .gradient-1::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(255,255,255,0.1) 20px, rgba(255,255,255,0.1) 21px),
        repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(255,255,255,0.1) 20px, rgba(255,255,255,0.1) 21px);
}

.genai-image-demo .gradient-2 {
    /* Website Hero - Modern SaaS Landing */
    background: 
        radial-gradient(circle at 30% 40%, rgba(240, 147, 251, 0.7) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(245, 87, 108, 0.6) 0%, transparent 40%),
        linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
}

.genai-image-demo .gradient-3 {
    /* Email Header - Professional Newsletter */
    background: 
        radial-gradient(ellipse at 50% 30%, rgba(79, 172, 254, 0.8) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 70%, rgba(0, 242, 254, 0.6) 0%, transparent 50%),
        linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
}

.genai-image-demo .gradient-4 {
    /* Ad Creative - Marketing Campaign */
    background: 
        radial-gradient(circle at 25% 25%, rgba(250, 112, 154, 0.8) 0%, transparent 45%),
        radial-gradient(circle at 75% 75%, rgba(254, 225, 64, 0.7) 0%, transparent 45%),
        linear-gradient(135deg, #fa709a 0%, #fee140 100%) !important;
}

.genai-image-demo .gradient-5 {
    /* Product Shot - Wireless Headphones */
    background: linear-gradient(135deg, #e0e7ff 0%, #f8f9fa 50%, #e0e7ff 100%) !important;
}

.genai-image-demo .gradient-6 {
    /* Package Design - Premium Box */
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(255, 234, 167, 0.9) 0%, transparent 60%),
        linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%) !important;
}

/* Overlay pattern for realism - subtle texture */
.genai-image-demo .image-placeholder::before {
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 40%) !important;
    opacity: 1 !important;
}

/* Stunning Visual Scenes - AI Generated Artwork */
.sample-result-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 2;
    animation: contentFadeIn 0.8s ease-out;
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.stunning-scene {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
}

.sample-label {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.5),
        0 2px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

/* === CARD 1: Fantasy Landscape === */
.mountain-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.8) 0%,
        transparent 100%),
        linear-gradient(135deg, 
            transparent 30%, 
            rgba(102, 126, 234, 0.6) 50%, 
            rgba(118, 75, 162, 0.8) 70%,
            transparent 100%);
    clip-path: polygon(
        0% 100%, 0% 60%, 15% 40%, 30% 65%, 
        45% 35%, 60% 55%, 75% 30%, 90% 50%, 
        100% 40%, 100% 100%
    );
    animation: mountainGlow 4s ease-in-out infinite;
}

@keyframes mountainGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.sun-glow {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(255, 200, 100, 0.9) 0%,
        rgba(255, 150, 50, 0.6) 40%,
        transparent 70%);
    box-shadow: 
        0 0 40px rgba(255, 200, 100, 0.8),
        0 0 80px rgba(255, 150, 50, 0.4);
    animation: sunPulse 3s ease-in-out infinite;
}

@keyframes sunPulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.15); }
}

.stars-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
}

.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
    animation: starTwinkle 2s ease-in-out infinite;
}

.star:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
.star:nth-child(2) { top: 20%; left: 70%; animation-delay: 0.4s; }
.star:nth-child(3) { top: 8%; left: 45%; animation-delay: 0.8s; }
.star:nth-child(4) { top: 25%; left: 85%; animation-delay: 1.2s; }
.star:nth-child(5) { top: 15%; left: 30%; animation-delay: 1.6s; }

@keyframes starTwinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

.aurora-effect {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(102, 126, 234, 0.3) 30%,
        rgba(240, 147, 251, 0.4) 50%,
        rgba(16, 185, 129, 0.3) 70%,
        transparent 100%);
    filter: blur(20px);
    animation: auroraWave 6s ease-in-out infinite;
}

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

/* === CARD 2: Abstract Art === */
.fluid-shapes {
    position: absolute;
    inset: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(15px);
    animation: shapeFloat 5s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 15%;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.8), transparent);
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 40%;
    right: 10%;
    background: radial-gradient(circle, rgba(245, 87, 108, 0.7), transparent);
    animation-delay: 1s;
}

.shape-3 {
    width: 90px;
    height: 90px;
    bottom: 15%;
    left: 30%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.6), transparent);
    animation-delay: 2s;
}

.shape-4 {
    width: 110px;
    height: 110px;
    top: 20%;
    right: 30%;
    background: radial-gradient(circle, rgba(255, 200, 150, 0.5), transparent);
    animation-delay: 3s;
}

@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(10px, -15px) scale(1.1); }
    50% { transform: translate(-5px, 10px) scale(0.95); }
    75% { transform: translate(15px, 5px) scale(1.05); }
}

.particle-field {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    animation: particleDrift 4s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 25%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 70%; animation-delay: 0.5s; }
.particle:nth-child(3) { top: 35%; left: 50%; animation-delay: 1s; }
.particle:nth-child(4) { top: 75%; left: 35%; animation-delay: 1.5s; }
.particle:nth-child(5) { top: 45%; left: 80%; animation-delay: 2s; }
.particle:nth-child(6) { top: 15%; left: 60%; animation-delay: 2.5s; }

@keyframes particleDrift {
    0%, 100% { transform: translate(0, 0); opacity: 0.4; }
    50% { transform: translate(20px, -20px); opacity: 1; }
}

/* === CARD 3: Cosmic Nebula === */
.galaxy-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(255, 255, 255, 1) 0%,
        rgba(102, 126, 234, 0.8) 30%,
        rgba(240, 147, 251, 0.6) 60%,
        transparent 100%);
    box-shadow: 
        0 0 30px rgba(102, 126, 234, 0.8),
        0 0 60px rgba(240, 147, 251, 0.4);
    animation: corePulse 2s ease-in-out infinite;
}

@keyframes corePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

.nebula-clouds {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 40%, rgba(102, 126, 234, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(240, 147, 251, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(16, 185, 129, 0.2) 0%, transparent 40%);
    filter: blur(10px);
    animation: nebulaShift 8s ease-in-out infinite;
}

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

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

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: orbitRotate 10s linear infinite;
}

.ring-1 {
    width: 100px;
    height: 100px;
    animation-duration: 8s;
}

.ring-2 {
    width: 140px;
    height: 140px;
    animation-duration: 12s;
    animation-direction: reverse;
}

.ring-3 {
    width: 180px;
    height: 180px;
    animation-duration: 15s;
}

@keyframes orbitRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.cosmic-dust {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.6) 0%, transparent 2%),
        radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.5) 0%, transparent 2%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.7) 0%, transparent 2%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.4) 0%, transparent 2%),
        radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.6) 0%, transparent 2%);
    animation: dustSparkle 3s ease-in-out infinite;
}

@keyframes dustSparkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* === CARD 4: Cyberpunk City === */
.city-skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 0 10px;
}

.building {
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.9),
        rgba(102, 126, 234, 0.3));
    border-radius: 2px 2px 0 0;
    position: relative;
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.3);
}

.building::before {
    content: '';
    position: absolute;
    inset: 5px;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 8px,
            rgba(255, 200, 100, 0.4) 8px,
            rgba(255, 200, 100, 0.4) 10px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 8px,
            rgba(255, 200, 100, 0.4) 8px,
            rgba(255, 200, 100, 0.4) 10px
        );
}

.b1 { width: 12%; height: 50%; }
.b2 { width: 15%; height: 70%; }
.b3 { width: 18%; height: 85%; }
.b4 { width: 14%; height: 60%; }
.b5 { width: 16%; height: 75%; }

.neon-lights {
    position: absolute;
    bottom: 30%;
    left: 0;
    right: 0;
    height: 40%;
}

.neon {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 0, 255, 0.8),
        rgba(0, 255, 255, 0.8),
        transparent
    );
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.6);
    animation: neonFlicker 2s ease-in-out infinite;
}

.neon:nth-child(1) { top: 20%; left: 10%; width: 30%; animation-delay: 0s; }
.neon:nth-child(2) { top: 50%; right: 15%; width: 25%; animation-delay: 0.5s; }
.neon:nth-child(3) { top: 70%; left: 20%; width: 35%; animation-delay: 1s; }

@keyframes neonFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.flying-cars {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    height: 30%;
}

.car {
    position: absolute;
    width: 15px;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(255, 100, 100, 0.8),
        rgba(255, 200, 100, 0.8)
    );
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 100, 100, 0.6);
    animation: carFly 6s linear infinite;
}

.car:nth-child(1) { top: 30%; animation-delay: 0s; }
.car:nth-child(2) { top: 60%; animation-delay: 3s; }

@keyframes carFly {
    from { left: -5%; }
    to { left: 105%; }
}

/* Image Cards - Realistic presentation with GenAI effects */
.genai-image-demo .genai-output-image {
    background: #ffffff !important;
    border: 2px solid rgba(102, 126, 234, 0.15) !important;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(102, 126, 234, 0.05) !important;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    border-radius: 20px !important;
    overflow: hidden !important;
}

/* Holographic border effect on hover */
.genai-image-demo .genai-output-image::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        90deg,
        #667eea,
        #764ba2,
        #f093fb,
        #667eea
    );
    background-size: 300% 100%;
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.genai-image-demo .genai-output-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(102, 126, 234, 0.08) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
}

.genai-image-demo .genai-output-image:hover {
    transform: translateY(-12px) scale(1.03) !important;
    box-shadow: 
        0 25px 60px rgba(102, 126, 234, 0.3),
        0 10px 25px rgba(0, 0, 0, 0.15),
        0 0 40px rgba(102, 126, 234, 0.2) !important;
    border-color: transparent !important;
}

.genai-image-demo .genai-output-image:hover::before {
    opacity: 1;
}

.genai-image-demo .genai-output-image:hover::after {
    opacity: 1;
}

/* Image Metadata - Glassmorphism bar with GenAI effects */
.genai-image-demo .image-meta {
    color: #ffffff !important;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(0, 0, 0, 0.75) 60%, 
        transparent 100%
    ) !important;
    backdrop-filter: blur(15px) !important;
    font-weight: 700 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding: 18px 15px 15px !important;
    position: relative !important;
}

/* Glowing accent line */
.genai-image-demo .image-meta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #667eea, #f093fb, transparent);
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.8);
}

.genai-image-demo .image-meta i {
    color: #10b981 !important;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.8)) !important;
    animation: iconPulse 2s ease-in-out infinite !important;
}

@keyframes iconPulse {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.8));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(16, 185, 129, 1));
    }
}

.genai-image-demo .image-meta span {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

/* Generate Button - Premium GenAI button */
.genai-image-demo .genai-generate-btn {
    color: #ffffff !important;
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    font-weight: 800 !important;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(102, 126, 234, 0.4),
        0 0 20px rgba(102, 126, 234, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1) !important;
}

.genai-image-demo .genai-generate-btn::before {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    ) !important;
    animation: buttonShimmer 2s ease-in-out infinite !important;
}

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

.genai-image-demo .genai-generate-btn:hover {
    box-shadow: 
        0 20px 50px rgba(102, 126, 234, 0.6),
        0 0 40px rgba(102, 126, 234, 0.4),
        0 0 60px rgba(118, 75, 162, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.2) !important;
}
