/* Text animation */
.scene3-fade-in {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    animation: scene3-fadeIn 0.8s ease-out forwards;
    width: 100%;
    padding: 0 20px;
}

@keyframes scene3-fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Cloud container */
.scene3-nts-cloud {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%) scale(0);
    text-align: center;
    animation: scene3-cartoonPopLeft 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.5s;
}

/* Workstation container */
.scene3-nts-workstation {
    position: absolute;
    top: 50%;
    right: 25%;
    transform: translate(50%, -50%) scale(0);
    text-align: center;
    animation: scene3-cartoonPopRight 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.8s;
}

/* Icons */
.scene3-cloud-icon {
    font-size: 180px;
    color: var(--nts-green);
    margin-bottom: 20px;
}

.scene3-workstation-icon {
    font-size: 180px;
    color: var(--text-gray);
}

/* Badge */
.scene3-cloud-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 30px;
    padding: 10px 25px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.scene3-badge-text {
    font-size: 32px;
    font-weight: 800;
    color: var(--nts-green);
    letter-spacing: 1px;
}

@keyframes scene3-cartoonPopLeft {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
    80% {
        transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes scene3-cartoonPopRight {
    0% {
        transform: translate(50%, -50%) scale(0);
        opacity: 0;
    }
    50% {
        transform: translate(50%, -50%) scale(1.2);
        opacity: 1;
    }
    80% {
        transform: translate(50%, -50%) scale(0.9);
    }
    100% {
        transform: translate(50%, -50%) scale(1);
    }
}

/* Download animation */
.scene3-download-icon {
    position: absolute;
    font-size: 24px;
    color: var(--nts-green);
    opacity: 0;
}

@keyframes scene3-downloadPath {
    0% {
        left: 25%;
        top: 50%;
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    20% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    80% {
        opacity: 1;
        transform: translate(50%, -50%) scale(1);
    }
    100% {
        left: 75%;
        top: 50%;
        transform: translate(50%, -50%) scale(0.8);
        opacity: 0;
    }
}

/* Multiple download icons with different delays */
.scene3-download-icon-1 { animation: scene3-downloadPath 2s ease-in-out 1s forwards; }
.scene3-download-icon-2 { animation: scene3-downloadPath 2s ease-in-out 1.7s forwards; }
.scene3-download-icon-3 { animation: scene3-downloadPath 2s ease-in-out 2.4s forwards; }

/* Add to existing CSS */
.agent-stream {
    position: absolute;
    opacity: 0;
}

.agent-icon {
    font-size: 24px;
    color: var(--nts-green);
}

/* Multiple paths with different vertical offsets and speeds */
.agent-stream-1 { 
    animation: agentPath1 1.2s ease-in-out 0.1s forwards;
    top: 40%;
}
.agent-stream-2 { 
    animation: agentPath1 1.4s ease-in-out 0.5s forwards;
    top: 45%;
}
.agent-stream-3 { 
    animation: agentPath2 1.0s ease-in-out 0.9s forwards;
    top: 50%;
}
.agent-stream-4 { 
    animation: agentPath2 1.3s ease-in-out 1.3s forwards;
    top: 55%;
}
.agent-stream-5 { 
    animation: agentPath3 1.1s ease-in-out 1.7s forwards;
    top: 42%;
}
.agent-stream-6 { 
    animation: agentPath3 1.5s ease-in-out 2.1s forwards;
    top: 48%;
}
.agent-stream-7 { 
    animation: agentPath2 1.2s ease-in-out 2.5s forwards;
    top: 52%;
}
.agent-stream-8 { 
    animation: agentPath1 1.3s ease-in-out 2.9s forwards;
    top: 46%;
}

/* Different straight paths */
@keyframes agentPath1 {
    0% {
        left: 25%;
        transform: translateX(-50%) scale(0.8);
        opacity: 0;
    }
    20% {
        opacity: 1;
        transform: translateX(-30%) scale(1);
    }
    80% {
        opacity: 1;
        transform: translateX(30%) scale(1);
    }
    100% {
        left: 75%;
        transform: translateX(50%) scale(0.8);
        opacity: 0;
    }
}

@keyframes agentPath2 {
    0% {
        left: 25%;
        transform: translateX(-50%) scale(0.8);
        opacity: 0;
    }
    20% {
        opacity: 1;
        transform: translateX(-20%) scale(1);
    }
    80% {
        opacity: 1;
        transform: translateX(20%) scale(1);
    }
    100% {
        left: 75%;
        transform: translateX(50%) scale(0.8);
        opacity: 0;
    }
}

@keyframes agentPath3 {
    0% {
        left: 25%;
        transform: translateX(-50%) scale(0.8);
        opacity: 0;
    }
    20% {
        opacity: 1;
        transform: translateX(-25%) scale(1);
    }
    80% {
        opacity: 1;
        transform: translateX(25%) scale(1);
    }
    100% {
        left: 75%;
        transform: translateX(50%) scale(0.8);
        opacity: 0;
    }
}

/* Add glow effect to agent icons */
.agent-icon {
    animation: agentGlow 0.5s ease-in-out infinite alternate;
}

@keyframes agentGlow {
    from {
        opacity: 0.7;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1.05);
        text-shadow: 
            0 0 5px var(--nts-green),
            0 0 10px var(--nts-green);
    }
}
  