.adblock-recovery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.adblock-recovery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.adblock-recovery-content {
    position: relative;
    max-width: 500px;
    margin: 10% auto;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.adblock-recovery-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.adblock-recovery-content h2 {
    margin: 0 0 20px;
    font-size: 28px;
    color: #333;
}

.adblock-recovery-content p {
    margin: 15px 0;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.adblock-recovery-content ul {
    text-align: left;
    margin: 20px 0;
    padding-left: 40px;
}

.adblock-recovery-content li {
    margin: 10px 0;
    font-size: 15px;
    color: #555;
}

.small-text {
    font-size: 13px;
    color: #999;
}

.adblock-recovery-btn {
    display: block;
    width: 100%;
    margin: 25px 0 10px;
    padding: 15px;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.adblock-recovery-btn:hover {
    background: #c0392b;
}

.adblock-recovery-close {
    display: block;
    width: 100%;
    padding: 12px;
    background: transparent;
    color: #999;
    border: none;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
}

.adblock-recovery-close:hover {
    color: #666;
}

@media (max-width: 600px) {
    .adblock-recovery-content {
        margin: 20% 20px;
        padding: 30px 20px;
    }
}
