.sph-adblock-notice {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99999;
    max-width: 340px;
    padding: 14px 40px 14px 16px;
    background: rgba(30, 30, 30, 0.88);
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.sph-adblock-notice--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sph-adblock-notice-text {
    display: block;
}

.sph-adblock-notice-close {
    position: absolute;
    top: 4px;
    right: 8px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 4px;
    opacity: 0.75;
}

.sph-adblock-notice-close:hover,
.sph-adblock-notice-close:focus {
    opacity: 1;
}

@media (max-width: 480px) {
    .sph-adblock-notice {
        left: 12px;
        right: 12px;
        max-width: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sph-adblock-notice {
        transition: none;
    }
}
