.status-cloud-container {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
    /* Let clicks pass through */
}

.status-cloud {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    color: #1e293b;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    max-width: 90vw;
    width: max-content;
    animation: cloud-pop-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.status-cloud.status-error {
    background: rgba(254, 226, 226, 0.95);
    color: #991b1b;
    border-color: #fecaca;
}

.status-cloud.status-success {
    background: rgba(220, 252, 231, 0.95);
    color: #166534;
    border-color: #bbf7d0;
}

.status-cloud.status-info {
    background: rgba(224, 242, 254, 0.95);
    color: #075985;
    border-color: #bae6fd;
}

.status-cloud.status-heat-boiling {
    background: linear-gradient(135deg, rgba(255, 228, 230, 0.95), rgba(253, 164, 175, 0.95));
    color: #881337;
    border-color: #fda4af;
}

.status-cloud.status-heat-burning {
    background: linear-gradient(135deg, rgba(254, 226, 226, 0.95), rgba(252, 165, 165, 0.95));
    color: #7f1d1d;
    border-color: #fca5a5;
}

.status-cloud.status-heat-hot {
    background: linear-gradient(135deg, rgba(255, 237, 213, 0.95), rgba(253, 186, 116, 0.95));
    color: #9a3412;
    border-color: #fdba74;
}

.status-cloud.status-heat-warm {
    background: linear-gradient(135deg, rgba(255, 251, 235, 0.95), rgba(252, 211, 77, 0.95));
    color: #92400e;
    border-color: #fcd34d;
}

.status-cloud.status-heat-tepid {
    background: linear-gradient(135deg, rgba(254, 252, 232, 0.95), rgba(253, 224, 71, 0.95));
    color: #854d0e;
    border-color: #fde047;
}

.status-cloud.status-heat-lukewarm {
    background: linear-gradient(135deg, rgba(254, 252, 232, 0.95), rgba(254, 240, 138, 0.95));
    color: #713f12;
    border-color: #fef08a;
}

.status-cloud.status-heat-chilly {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), rgba(203, 213, 225, 0.95));
    color: #334155;
    border-color: #cbd5e1;
}

.status-cloud.status-heat-cold {
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.95), rgba(186, 230, 253, 0.95));
    color: #0369a1;
    border-color: #bae6fd;
}

.status-cloud.status-heat-icecold {
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.95), rgba(191, 219, 254, 0.95));
    color: #1e3a8a;
    border-color: #bfdbfe;
}

.status-cloud.status-heat-secret {
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    color: #c2410c;
    border-color: #fdba74;
    box-shadow: 0 0 20px rgba(251, 146, 60, 0.4);
}

.status-cloud.cloud-exit {
    animation: cloud-pop-out 0.3s ease-in forwards;
}

@keyframes cloud-pop-in {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes cloud-pop-out {
    0% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    100% {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
}