/* تنظیمات کلی باکس اصلی */
.imcs-container { max-width: 1000px; margin: 20px auto; }
.imcs-header { text-align: center; margin-bottom: 20px; }
.imcs-status { display: inline-block; padding: 5px 15px; border-radius: 20px; font-size: 0.9em; font-weight: bold; color: #fff; margin-top: 10px; }
.badge-live { background-color: #e74c3c; animation: blink 2s infinite; }
.badge-upcoming { background-color: #f39c12; }
.badge-finished { background-color: #7f8c8d; }
@keyframes blink { 0% { opacity: 1; } 50% { opacity: 0.7; } 100% { opacity: 1; } }

/* --- باکس پلیر --- */
.imcs-live-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 15px;
    margin-bottom: 30px;
    overflow: hidden;
}

/* --- استایل ریسپانسیو آپارات (Fixed 16:9) --- */
.h_iframe-aparat_embed_frame {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}
.h_iframe-aparat_embed_frame .ratio {
    display: block;
    width: 100%;
    height: auto;
}
.h_iframe-aparat_embed_frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* استایل پوستر و تایمر */
.imcs-poster-wrapper {
    position: relative;
    padding-top: 56.25%; /* نسبت 16:9 */
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}
.imcs-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: #fff; border-radius: 8px;
}
.imcs-timer { font-size: 3em; font-weight: bold; direction: ltr; }
.imcs-timer-label { font-size: 1.2em; margin-top: 10px; }

/* دکمه دونیت */
.imcs-donate-btn {
    display: block; background: #27ae60; color: white !important; text-align: center;
    padding: 15px; font-size: 1.2em; border-radius: 8px; text-decoration: none;
    margin-top: 20px; font-weight: bold; transition: all 0.2s;
}
.imcs-donate-btn:hover { background: #219150; transform: scale(1.01); }

/* موبایل: دکمه دونیت شناور */
@media (max-width: 768px) {
    .imcs-donate-btn:first-of-type { /* دکمه بالای پلیر را در موبایل مخفی می کنیم */
        display: none !important; 
    }
    .imcs-donate-btn {
        position: fixed; bottom: 20px; right: 20px; left: 20px;
        z-index: 999; margin: 0; box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    }
}