
.sm-adblock-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sm-adblock-overlay.sm-active {
    opacity: 1;
}

.sm-adblock-modal {
    background: rgba(17, 24, 39, 0.95);
    border: 1px solid rgba(59, 130, 246, 0.35);
    border-radius: 20px;
    max-width: 520px;
    width: 100%;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(59, 130, 246, 0.2);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sm-adblock-overlay.sm-active .sm-adblock-modal {
    transform: scale(1);
}

.sm-adblock-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: inline-block;
    animation: smPulse 2s infinite;
}
@keyframes smPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.sm-adblock-title {
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.sm-adblock-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.sm-adblock-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    padding: 12px;
    color: #60a5fa;
    font-size: 0.85rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.sm-adblock-help {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.sm-adblock-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sm-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}
.sm-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
}

.sm-btn-secondary {
    background: transparent;
    color: #64748b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.sm-btn-secondary:hover {
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.05);
}
