#zdn-adblock-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zdn-adblock-message {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    margin: 0 10px;
    position: relative;
}

.zdn-adblock-message h2 {
    color: #e74c3c;
    margin: 0 0 20px 0;
    font-size: 24px;
}

.zdn-adblock-message p {
    color: #333;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.zdn-close-overlay {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.zdn-close-overlay:hover {
    background-color: #2980b9;
}

.zdn-modal-close-x {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.zdn-modal-close-x:hover {
    color: #e74c3c;
    background-color: #f8f8f8;
}
