/* Popup Hackeado */
.hacked-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.hacked-popup.show {
    display: flex;
    animation: popupFadeIn 0.5s ease-out;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hacked-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.hacked-popup-content {
    position: relative;
    z-index: 10000;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    border: 2px solid #ff4444;
    border-radius: 15px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 50px rgba(255, 68, 68, 0.4), 0 0 100px rgba(255, 68, 68, 0.2);
    animation: popupPulse 0.6s ease-out;
}

@keyframes popupPulse {
    0% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

.hacked-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #ff4444;
    font-size: 32px;
    cursor: pointer;
    transition: color 0.3s;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hacked-popup-close:hover {
    color: #ff6666;
}

.hacked-popup-icon {
    font-size: 64px;
    color: #ff4444;
    margin-bottom: 20px;
    animation: iconShake 0.5s;
}

@keyframes iconShake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

.hacked-popup-title {
    color: #ff4444;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
    white-space: nowrap;
}

.hacked-simulation-highlight {
    color: #fbbf24;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hacked-popup-text {
    color: #ffffff;
    font-size: 16px;
    margin: 15px 0;
    line-height: 1.6;
}

.hacked-popup-subtitle {
    color: #cbd5e1;
    font-size: 14px;
    margin: 15px 0 25px 0;
    font-style: italic;
}

.hacked-popup-btn {
    display: inline-block;
    background: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
    color: white;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

.hacked-popup-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.6);
    color: white;
}

/* Responsivo */
@media (max-width: 480px) {
    .hacked-popup-content {
        padding: 30px 20px;
    }

    .hacked-popup-title {
        font-size: 24px;
    }

    .hacked-popup-text {
        font-size: 14px;
    }
}
