.mp-webgl-debug-status {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 5000;
    max-width: min(460px, calc(100vw - 36px));
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid rgba(58, 201, 244, 0.34);
    border-radius: 11px;
    color: #b9effc;
    background: rgba(3, 13, 21, 0.94);
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.48),
        inset 0 1px rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
    font-family: Manrope, Arial, sans-serif;
    font-size: 11px;
    line-height: 1.45;
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.mp-webgl-debug-status i {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #31ddff;
    box-shadow: 0 0 12px #31ddff;
}

.mp-webgl-debug-status.is-loading i {
    animation: mpDebugPulse 1s ease-in-out infinite;
}

.mp-webgl-debug-status.is-success {
    color: #a8f3cc;
    border-color: rgba(67, 228, 160, 0.38);
}

.mp-webgl-debug-status.is-success i {
    background: #43e4a0;
    box-shadow: 0 0 12px #43e4a0;
}

.mp-webgl-debug-status.is-error {
    color: #ffd0d0;
    border-color: rgba(255, 93, 111, 0.48);
}

.mp-webgl-debug-status.is-error i {
    background: #ff5d6f;
    box-shadow: 0 0 12px #ff5d6f;
}

.mp-webgl-debug-status.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
}

@keyframes mpDebugPulse {
    0%,
    100% {
        opacity: 0.35;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.25);
    }
}

@media (max-width: 720px) {
    .mp-webgl-debug-status {
        right: 12px;
        bottom: 12px;
        left: 12px;
        max-width: none;
        font-size: 10px;
    }
}
