/* ─────────────────────────────────────────
   FLOATING STATUS BADGE
   ───────────────────────────────────────── */

.status-badge-floating {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(10, 10, 16, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform: translateY(100px);
    opacity: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.status-badge-floating.visible {
    transform: translateY(0);
    opacity: 1;
}

.status-badge-floating:hover {
    background: rgba(10, 10, 16, 0.8);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Glowing Green Indicator */
.status-indicator {
    position: relative;
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
}

.status-ring {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: rgba(34, 197, 94, 0.4);
    border-radius: 50%;
    z-index: 1;
    animation: statusPulse 2s infinite ease-out;
}

@keyframes statusPulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Text */
.status-text {
    font-size: 14px;
    font-weight: 500;
    color: #e2e8f0;
    letter-spacing: 0.02em;
}

.status-badge-floating:hover .status-text {
    color: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .status-badge-floating {
        bottom: 20px;
        left: 20px;
        padding: 8px 16px;
    }

    .status-text {
        font-size: 12px;
    }
}