/* Ad Blocker Detector Popup Styles */
.abd-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.abd-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.abd-popup-container {
    background-color: #fff;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.abd-popup-overlay.active .abd-popup-container {
    transform: translateY(0);
}

.abd-popup-icon {
    font-size: 60px;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.abd-popup-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.abd-popup-message {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.abd-popup-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.abd-popup-button {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.abd-popup-button-primary {
    background-color: #4CAF50;
    color: white;
}

.abd-popup-button-primary:hover {
    background-color: #3d8b40;
}

.abd-popup-button-secondary {
    background-color: #2196F3;
    color: white;
}

.abd-popup-button-secondary:hover {
    background-color: #0b7dda;
}

.abd-popup-button-whitelist {
    background-color: #FF9800;
    color: white;
}

.abd-popup-button-whitelist:hover {
    background-color: #e68a00;
}

/* Block page scrolling when popup is active */
body.abd-popup-active {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Responsive styles */
@media (max-width: 768px) {
    .abd-popup-container {
        padding: 25px;
    }
    
    .abd-popup-title {
        font-size: 24px;
    }
    
    .abd-popup-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .abd-popup-button {
        width: 100%;
        max-width: 250px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .abd-popup-container {
        width: 95%;
        padding: 20px;
    }
    
    .abd-popup-title {
        font-size: 20px;
    }
    
    .abd-popup-message {
        font-size: 14px;
    }
}