#adblock-detect-overlay {
    display: none;
    position: fixed;
    inset: 0;
    width: 100vw; height: 100vh;
    background: rgba(20,20,30,0.89);
    z-index: 99999999;
    justify-content: center;
    align-items: center;
}
#adblock-detect-modal {
    background: #fffbe8;
    border: 3px solid #ffa502;
    border-radius: 24px;
    padding: 36px 28px 28px 28px;
    min-width: 315px; max-width: 92vw;
    box-shadow: 0 9px 40px 0 rgba(44,62,80,0.22);
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
    animation: fadeInScale .44s cubic-bezier(.5,1.2,.7,1.1);
}
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(.92);}
    to   { opacity: 1; transform: scale(1);}
}
#adblock-detect-modal .warning-icon {
    font-size: 63px; margin-bottom: 18px; color: #fd5e53;
    animation: pulse 1.9s infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.13);} }
#adblock-detect-modal .warning-title {
    font-size: 26px; color: #e67e22; font-weight: 700; margin-bottom: 10px;
}
#adblock-detect-modal .warning-text {
    font-size: 17px; color: #636363; margin-bottom: 19px; line-height: 1.7;
}
#adblock-detect-modal .disable-steps {
    background: #fff; border-radius: 12px; padding: 14px 15px;
    margin: 0 0 19px 0; border-left: 5px solid #e67e22; text-align: left;
}
#adblock-detect-modal .disable-steps h3 {
    color: #e67e22; font-size: 16px; margin-bottom: 9px;
}
#adblock-detect-modal .disable-steps ol {
    color: #636363; font-size: 14px; line-height: 1.8; padding-left: 15px;
}
#adblock-detect-modal .refresh-btn {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white; border: none;
    padding: 13px 38px; border-radius: 30px;
    font-size: 17px; font-weight: bold;
    cursor: pointer; margin-top: 8px; margin-bottom: 0;
    box-shadow: 0 3px 11px rgba(46,204,113,.18);
    transition: all .21s;
}
#adblock-detect-modal .refresh-btn:hover {
    transform: scale(1.04) translateY(-2px);
    box-shadow: 0 7px 24px rgba(46,204,113,.24);
}
@media (max-width:600px){#adblock-detect-modal{min-width:unset;padding:12px 4vw;}}
