/* متغیرهای رنگی برای یکپارچگی */
:root {
    --primary-color: #00ffcc;
    --gold-color: #ffd700;
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    /* تنظیم رنگ اصلی پلیر Plyr */
    --plyr-color-main: var(--main-cards-bg);
}

/* نگهدارنده اصلی */
.live-stream-wrapper {
    max-width: 900px;
    margin: 40px auto;
    background: var(--main-elements-bg-color);
    border-radius: 20px;
    box-shadow: var(--main-cards-box-shadow);
    padding: 30px;
    box-sizing: border-box;
    font-family: 'Vazirmatn', Tahoma, sans-serif;
    width: 95%;
}

/* عنوان */
.live-stream-title {
    text-align: center;
    color: var(--text-main-color);
    font-size: clamp(1.4rem, 4vw, 2rem);
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* بخش ویدیو */
.video-container {
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    margin-bottom: 30px;
}

/* بخش صلوات خاصه */
.salavat-container {
    background: var(--main-cards-bg);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.salavat-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.05);
}

.salavat-arabic {
    color: var(--gold-color);
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    line-height: 2.2;
    font-weight: bold;
    direction: rtl;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.salavat-persian {
    color: var(--text-main);
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    line-height: 1.9;
    direction: rtl;
    margin-bottom: 15px;
    opacity: 0.9;
}

.audio-notice {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 15px;
}

/* ریسپانسیو برای گوشی‌های کوچک */
@media (max-width: 600px) {
    .live-stream-wrapper {
        padding: 15px;
        margin: 20px auto;
    }
    .salavat-container {
        padding: 15px;
    }
}
