.s-advertisement {
    background-color: #ffffff !important; /* لون الخلفية */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* شادو خفيف */
     border-radius: 8px; /* حواف دائرية */
}

.s-advertisement-content-main {
    background: linear-gradient(45deg, #ff6f61, #4a0b5f); /* تدريج لوني مميز */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* جعل النص شفاف لإظهار التدريج */
    animation: gradientAnimation 3s infinite; /* حركة تدريج لوني */
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}