/* ADS RIWYA CSS */
.ads-riwya-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    margin: 15px 0;
    border-radius: 15px;
    background: linear-gradient(135deg, #fff8d6, #ffe98a);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    direction: rtl;
}
.ads-riwya-emoji {
    font-size: 40px;
}
.ads-riwya-content {
    flex: 1;
}
.ads-riwya-title {
    font-size: 20px;
    margin: 0 0 5px;
    color: #000; /* العنوان الآن أسود */
    text-align: right; /* محاذاة لليمين */
}

.ads-riwya-desc {
    font-size: 15px;
    margin-bottom: 10px;
}
.ads-riwya-btn {
    display: inline-block;
    padding: 6px 15px;
    background: #333;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}
.ads-riwya-btn:hover {
    background: #000;
}
.ads-riwya-footer {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.ads-riwya-footer-item {
    flex: none;
    padding: 5px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(6px);
    font-size: 13px;
}
@keyframes fadeInUp {
    from { transform: translateY(20px); opacity:0; }
    to { transform: translateY(0); opacity:1; }
}
