.nts-animation-container {
    width: 100%;
    position: relative;
    background: #fff;
    border-radius: 8px;
    aspect-ratio: 16/9;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.animation-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800;
    color: var(--nts-green);
    text-align: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

#animation-scene {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Animation Elements */
.control-panel {
    width: 300px;
    height: 200px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.agent-icon {
    width: 50px;
    height: 50px;
    background: var(--nts-green);
    border-radius: 50%;
    position: absolute;
    opacity: 0;
}

.workstation {
    width: 200px;
    height: 150px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: absolute;
    bottom: 50px;
    right: 100px;
    opacity: 0;
} 

/* Optional: Add a subtle animation when text appears */
@keyframes textReveal {
    from {
        letter-spacing: 4px;
        opacity: 0;
    }
    to {
        letter-spacing: 2px;
        opacity: 1;
    }
}

.animation-text {
    animation: textReveal 0.8s ease-out forwards;
} 

.text-emphasis {
    color: var(--text-gray); /* Using #585858 instead of --text-black */
    font-weight: 900; /* Extra bold for emphasis */
} 