.spam_popup_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}

.spam_popup_overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.spam_popup_card {
    background: #1e2024;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    max-width: 480px;
    width: 100%;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.spam_popup_icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spam_popup_icon svg {
    width: 32px;
    height: 32px;
    color: #fbbf24;
}

.spam_popup_title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    text-align: center;
}

.spam_popup_content {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.spam_popup_content p {
    margin: 0 0 16px;
}

.spam_popup_content p:last-child {
    margin-bottom: 0;
}

.spam_popup_warning {
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 10px;
    padding: 16px;
    margin: 16px 0;
    display: flex;
    gap: 12px;
}

.spam_popup_warning svg {
    width: 24px;
    height: 24px;
    color: #fbbf24;
    flex-shrink: 0;
    margin-top: 2px;
}

.spam_popup_warning p {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.9);
}

.spam_popup_warning p:last-child {
    margin-bottom: 0;
}

.spam_popup_warning strong {
    color: #fbbf24;
    font-weight: 600;
}

.spam_popup_note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.spam_popup_close {
    width: 100%;
    padding: 12px 24px;
    background: #fbbf24;
    border: none;
    border-radius: 10px;
    color: #181a1c;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.spam_popup_close:hover {
    background: #f59e0b;
    transform: translateY(-1px);
}

.spam_popup_close:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .spam_popup_card {
        padding: 24px;
        max-width: 100%;
    }
    
    .spam_popup_title {
        font-size: 20px;
    }
    
    .spam_popup_content {
        font-size: 14px;
    }
    
    .spam_popup_icon {
        width: 56px;
        height: 56px;
    }
    
    .spam_popup_icon svg {
        width: 28px;
        height: 28px;
    }
}
