#adblock-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    display: none;
    justify-content: center;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

#adblock-modal {
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: modalFadeIn 0.5s ease;
    position: relative;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.adblock-content h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 1.3;
}

.adblock-content p {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
}

#adblock-reload {
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    font-weight: 600;
}

#adblock-reload:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Responsive design */
@media (max-width: 600px) {
    #adblock-modal {
        padding: 20px;
        width: 95%;
    }
    
    .adblock-content h2 {
        font-size: 20px;
    }
    
    .adblock-content p {
        font-size: 14px;
    }
    
    #adblock-reload {
        padding: 10px 20px;
        font-size: 14px;
    }
}