#popup-adsense-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    backdrop-filter: blur(2px);
}
#popup-adsense-wrapper {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#popup-adsense-content {
    background: white;
    padding: 20px;
    max-width: 90%;
    max-height: 70%;
    overflow-y: auto;
    border-radius: 8px;
}
#popup-adsense-close {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
}
