#aflamicose-adblock-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    direction: rtl;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

#aflamicose-adblock-modal.aflamicose-ads-hidden {
    display: none !important;
}

.aflamicose-ads-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.aflamicose-ads-box {
    position: relative;
    background: #141414;
    color: #fff;
    padding: 40px;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    border: 1px solid #333;
    animation: aflamicoseFadeIn 0.3s ease-out;
}

.aflamicose-ads-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.aflamicose-ads-box h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.aflamicose-ads-box p {
    font-size: 15px;
    color: #b3b3b3;
    margin-bottom: 25px;
    line-height: 1.6;
}

.aflamicose-ads-btn {
    background-color: #e50914;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}

.aflamicose-ads-btn:hover {
    background-color: #f40612;
}

.aflamicose-ads-countdown {
    margin-top: 15px;
    font-size: 13px;
    color: #777;
}

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