/* ========== CHEATYMOUZ ANTI-CHEAT STYLES ========== */

/* Animação de pulse para avisos */
@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Animação de pulse para o badge */
@keyframes cheatymouz-pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 255, 0, 0.2);
        border-color: rgba(0, 255, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 255, 0, 0.4);
        border-color: rgba(0, 255, 0, 0.6);
    }
}

/* Animação de rotação do escudo */
@keyframes cheatymouz-shield-rotate {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* Badge hover effect */
.cheatymouz-badge {
    cursor: pointer;
    transition: all 0.3s ease;
}

.cheatymouz-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 255, 0, 0.4) !important;
    border-color: rgba(0, 255, 0, 0.8) !important;
}

/* Aviso de violação */
.cheatymouz-warning {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10000;
}

/* Tela de ban */
#cheatymouz-ban-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 99999;
    pointer-events: all;
}

/* Indicador de proteção ativo */
.cheatymouz-indicator {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 255, 0, 0.2);
    border: 2px solid #00ff00;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 12px;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    z-index: 9999;
    pointer-events: none;
}

.cheatymouz-indicator::before {
    content: '🛡️ ';
}

/* Animação de scan */
@keyframes scan {
    0% {
        box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
    }
    100% {
        box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    }
}

.cheatymouz-indicator {
    animation: scan 2s infinite;
}

/* Overlay de detecção */
.cheatymouz-detection-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 0, 0.1);
    pointer-events: none;
    z-index: 9998;
    animation: flash 0.5s;
}

@keyframes flash {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}
