.checkin-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkin-cloud {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%) scale(0);
    text-align: center;
    animation: cartoonPopLeft 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.5s;
}

.checkin-cloud .cloud-icon {
    font-size: 180px;
    color: var(--nts-green);
    margin-bottom: 20px;
}

.checkin-cloud .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);
}

.checkin-workstation {
    position: absolute;
    top: 50%;
    right: 25%;
    transform: translate(50%, -50%) scale(0);
    text-align: center;
    animation: cartoonPopRight 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.8s;
}

.checkin-workstation .workstation-icon {
    font-size: 180px;
    color: var(--text-gray);
}

.checkin-icon {
    position: absolute;
    font-size: 24px;
    color: var(--nts-green);
    opacity: 0;
}

.checkin-icon-1 {
    animation: downloadPath 2s ease-in-out 1s forwards;
}

.checkin-icon-2 {
    animation: downloadPath 2s ease-in-out 1.7s forwards;
}

.checkin-icon-3 {
    animation: downloadPath 2s ease-in-out 2.4s forwards;
}

@keyframes downloadPath {
    0% {
        left: 75%;
        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: 25%;
        top: 50%;
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
}

@keyframes 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 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);
    }
}

.badge-text {
    font-size: 32px;
    font-weight: 800;
    color: var(--nts-green);
    letter-spacing: 1px;
}

.binary-stream {
    position: absolute;
    display: flex;
    gap: 4px;
    opacity: 0;
}

.binary-number {
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: bold;
    color: var(--nts-green);
    letter-spacing: 2px;
    white-space: nowrap;
    text-shadow: 0 0 5px var(--nts-green);
}

/* Multiple paths with different vertical offsets and speeds */
.binary-stream-1 { 
    animation: dataPath1 1.2s ease-in-out 0.1s forwards;
    top: 40%;
}
.binary-stream-2 { 
    animation: dataPath1 1.4s ease-in-out 0.4s forwards;
    top: 45%;
}
.binary-stream-3 { 
    animation: dataPath1 1.0s ease-in-out 0.7s forwards;
    top: 50%;
}
.binary-stream-4 { 
    animation: dataPath2 1.3s ease-in-out 1.0s forwards;
    top: 55%;
}
.binary-stream-5 { 
    animation: dataPath2 1.1s ease-in-out 1.3s forwards;
    top: 60%;
}
.binary-stream-6 { 
    animation: dataPath2 1.5s ease-in-out 1.6s forwards;
    top: 35%;
}
.binary-stream-7 { 
    animation: dataPath3 1.2s ease-in-out 1.9s forwards;
    top: 42%;
}
.binary-stream-8 { 
    animation: dataPath3 1.0s ease-in-out 2.2s forwards;
    top: 48%;
}
.binary-stream-9 { 
    animation: dataPath3 1.4s ease-in-out 2.5s forwards;
    top: 52%;
}
.binary-stream-10 { 
    animation: dataPath1 1.3s ease-in-out 2.8s forwards;
    top: 58%;
}
.binary-stream-11 { 
    animation: dataPath2 1.1s ease-in-out 3.1s forwards;
    top: 38%;
}
.binary-stream-12 { 
    animation: dataPath3 1.2s ease-in-out 3.4s forwards;
    top: 44%;
}

/* Different paths */
@keyframes dataPath1 {
    0% {
        left: 75%;
        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: 25%;
        transform: translateX(-50%) scale(0.8);
        opacity: 0;
    }
}

@keyframes dataPath2 {
    0% {
        left: 75%;
        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: 25%;
        transform: translateX(-50%) scale(0.8);
        opacity: 0;
    }
}

@keyframes dataPath3 {
    0% {
        left: 75%;
        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: 25%;
        transform: translateX(-50%) scale(0.8);
        opacity: 0;
    }
}

/* Enhanced pulsing animation */
@keyframes binaryPulse {
    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),
            0 0 15px var(--nts-green);
    }
}

.binary-number {
    animation: binaryPulse 0.3s ease-in-out infinite alternate;
}

/* Stagger the pulses within each stream */
.binary-stream span:nth-child(1) { animation-delay: 0.1s; }
.binary-stream span:nth-child(2) { animation-delay: 0.2s; }
.binary-stream span:nth-child(3) { animation-delay: 0.3s; }
.binary-stream span:nth-child(4) { animation-delay: 0.4s; } 