/* ====================================================================
   Slmou Live v2.0 - CSS الكامل
   ==================================================================== */

.slmou-match-container {
    direction: rtl;
    font-family: 'Thmanyah Sans', 'Tajawal', 'Segoe UI', sans-serif;
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 15px;
}

/* ============= شريط النتيجة ============= */
.slmou-score-header {
    background: var(--slmou-gradient, linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%));
    border-radius: 16px;
    padding: 30px 20px;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.25);
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.slmou-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.slmou-team-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    padding: 8px;
}

.slmou-team-name {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.slmou-score-center { text-align: center; }

.slmou-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--slmou-accent, #ef4444);
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.slmou-pulse-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: slmou-pulse 1.5s infinite;
}

@keyframes slmou-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.4); }
}

.slmou-status-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    background: rgba(255,255,255,0.2);
}

.slmou-score {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.slmou-score-separator { opacity: 0.5; font-size: 40px; }
.slmou-match-minute { margin-top: 12px; font-size: 18px; font-weight: 700; }

/* ============= عنوان المباراة ============= */
.slmou-match-title {
    text-align: center;
    margin: 25px 0;
}

.slmou-match-title h1 {
    font-size: 26px !important;
    color: #0f172a !important;
    margin: 0 0 10px !important;
}

.slmou-competition {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* ============= التبويبات ============= */
.slmou-tabs {
    display: flex;
    gap: 10px;
    background: #f8fafc;
    padding: 8px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.slmou-tab {
    flex: 1;
    padding: 12px 20px;
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 700;
    color: #64748b;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.slmou-tab:hover { background: #fff; color: var(--slmou-primary, #1e3a8a); }

.slmou-tab.slmou-active {
    background: var(--slmou-gradient, linear-gradient(135deg, #1e3a8a, #3b82f6));
    color: #fff;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.slmou-tab-content { display: none; animation: slmou-fadeIn 0.4s ease; }
.slmou-tab-content.slmou-active { display: block; }

@keyframes slmou-fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============= التحديثات المثبتة ============= */
.slmou-pinned-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #f59e0b;
}

.slmou-pinned-label {
    color: #92400e;
    font-weight: 800;
    margin-bottom: 12px;
    font-size: 14px;
}

.slmou-pinned-feed {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ============= بطاقة التحديث الأساسية ============= */
.slmou-updates-feed {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.slmou-update-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px 22px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    position: relative;
    border-right: 4px solid var(--slmou-secondary, #3b82f6);
}

.slmou-update-card:hover {
    transform: translateX(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.slmou-update-card.slmou-new {
    animation: slmou-slideIn 0.5s ease;
    background: linear-gradient(135deg, #fef3c7 0%, #fff 100%);
    border-right-color: #f59e0b;
}

@keyframes slmou-slideIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.slmou-update-card.slmou-breaking {
    border: 2px solid #ef4444;
    background: linear-gradient(135deg, #fee2e2 0%, #fff 100%);
}

.slmou-breaking-tag {
    position: absolute;
    top: -10px;
    right: 15px;
    background: #ef4444;
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

.slmou-update-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 12px;
    color: #94a3b8;
    flex-wrap: wrap;
}

.slmou-update-relative-time {
    font-weight: 600;
}

.slmou-update-minute {
    background: #0f172a;
    color: #fff;
    padding: 3px 10px;
    border-radius: 6px;
    font-weight: 700;
}

.slmou-update-body { font-size: 15px; line-height: 1.7; color: #334155; }

.slmou-update-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 0 8px !important;
}

.slmou-update-content { color: #475569; }

/* ============= بطاقة الهدف الاحترافية ============= */
.slmou-goal-card {
    background: linear-gradient(135deg, #064e3b 0%, #10b981 100%);
    color: #fff;
    border-radius: 12px;
    padding: 20px;
    margin: -18px -22px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.slmou-type-goal {
    border-right-color: #10b981 !important;
}

.slmou-goal-header {
    text-align: center;
    margin-bottom: 12px;
}

.slmou-goal-icon {
    font-size: 42px;
    line-height: 1;
}

.slmou-goal-title-big {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 6px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.slmou-goal-team {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 700;
}

.slmou-goal-team img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    padding: 4px;
}

.slmou-goal-main {
    font-size: 17px !important;
    font-weight: 700 !important;
    text-align: center;
    margin: 0 0 12px !important;
    color: #fff !important;
    line-height: 1.5;
}

.slmou-goal-scorer, .slmou-goal-assist {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    margin-bottom: 6px;
    font-size: 14px;
}

.slmou-goal-label { opacity: 0.9; }

.slmou-goal-image {
    margin-top: 12px;
    border-radius: 10px;
    overflow: hidden;
    line-height: 0;
}

.slmou-goal-image img {
    width: 100%;
    height: auto;
    display: block;
}

.slmou-goal-content {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.95);
    font-size: 14px;
}

/* ============= تويتر ============= */
.slmou-type-twitter { border-right-color: #000 !important; }

.slmou-twitter-card .slmou-platform-header {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #000;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 13px;
    width: fit-content;
}

.slmou-platform-icon { font-size: 18px; font-weight: 900; }

/* ============= يوتيوب ============= */
.slmou-type-youtube { border-right-color: #ff0000 !important; }

.slmou-youtube-card .slmou-platform-header {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ff0000;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 13px;
    width: fit-content;
}

.slmou-youtube-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 10px;
}

.slmou-youtube-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slmou-embed-link {
    display: inline-block;
    background: var(--slmou-gradient, linear-gradient(135deg, #1e3a8a, #3b82f6));
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 700;
    margin-top: 10px;
}

/* ============= صورة ============= */
.slmou-type-image { border-right-color: #8b5cf6 !important; }

.slmou-image-wrapper {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
    background: #f8fafc;
    line-height: 0;
}

.slmou-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.slmou-image-caption {
    margin-top: 10px;
    color: #64748b;
    font-style: italic;
    font-size: 14px;
}

/* ============= بطاقات ============= */
.slmou-type-card { border-right-color: #eab308 !important; }
.slmou-type-red_card { border-right-color: #dc2626 !important; }

.slmou-card-event {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.slmou-card-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.slmou-card-yellow .slmou-card-icon {
    filter: drop-shadow(0 0 4px rgba(234, 179, 8, 0.4));
}

.slmou-card-red .slmou-card-icon {
    filter: drop-shadow(0 0 4px rgba(220, 38, 38, 0.4));
}

/* ============= تبديل ============= */
.slmou-type-sub { border-right-color: #06b6d4 !important; }

.slmou-sub-event {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.slmou-sub-icon {
    font-size: 28px;
    flex-shrink: 0;
    color: #06b6d4;
}

/* ============= اقتباس - نظام بهوية مكحل (4 ألوان) ============= */
.slmou-update-card.slmou-type-quote {
    border: none !important;
    border-radius: 18px !important;
    padding: 40px 30px 22px !important;
    position: relative;
    overflow: visible !important;
    background: linear-gradient(160deg, #1c2150 0%, #0a0c24 100%) !important; /* الافتراضي: نافي */
    box-shadow: 0 16px 40px -18px rgba(0,0,0,.55);
}
/* بطاقة الاقتباس لا تعرض سطر الوقت (مطابقة للدليل) */
.slmou-update-card.slmou-type-quote .slmou-update-meta { display: none !important; }
.slmou-quote-card { position: relative; padding: 0; background: transparent; box-shadow: none; border: none; margin: 0; }
.slmou-quote-icon { display: none; }

/* ترس علامة الاقتباس في الزاوية العلوية */
.slmou-update-card.slmou-type-quote::after {
    content: '';
    position: absolute;
    top: -22px;
    right: 24px;
    width: 56px;
    height: 56px;
    z-index: 2;
    background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20240%20240%22%3E%3Cpath%20d%3D%22M108.5%2C5.5%20L107.9%2C22.4%20L98.6%2C23.9%20L88.3%2C26.7%20L80.8%2C12.0%20L79.0%2C12.4%20L68.7%2C17.1%20L60.1%2C21.8%20L64.3%2C31.2%20L64.4%2C32.3%20L66.4%2C35.8%20L66.6%2C37.4%20L57.9%2C43.6%20L51.7%2C49.3%20L50.7%2C49.4%20L37.6%2C39.6%20L30.7%2C47.6%20L30.6%2C48.2%20L28.9%2C49.9%20L23.3%2C57.5%20L35.9%2C68.2%20L35.9%2C69.3%20L34.5%2C71.2%20L34.1%2C72.6%20L30.9%2C78.0%20L27.5%2C86.4%20L25.4%2C86.3%20L10.8%2C83.2%20L7.5%2C96.3%20L5.9%2C104.6%20L6.2%2C105.8%20L12.4%2C107.1%20L22.1%2C109.9%20L22.1%2C129.9%20L6.2%2C134.0%20L5.9%2C135.2%20L6.7%2C137.7%20L7.5%2C143.5%20L11.0%2C156.6%20L24.3%2C153.7%20L27.5%2C153.4%20L27.9%2C153.9%20L28.1%2C155.2%20L30.6%2C160.3%20L30.7%2C161.3%20L35.9%2C170.6%20L35.9%2C171.6%20L29.2%2C177.4%20L28.4%2C177.8%20L26.0%2C180.2%20L23.9%2C181.5%20L23.3%2C182.4%20L28.1%2C188.9%20L30.6%2C191.6%20L30.7%2C192.2%20L37.5%2C200.2%20L50.7%2C190.4%20L51.4%2C190.4%20L59.1%2C197.2%20L66.6%2C202.4%20L66.4%2C204.0%20L65.6%2C204.9%20L63.6%2C210.3%20L62.6%2C211.7%20L60.1%2C217.7%20L61.4%2C218.9%20L72.2%2C224.3%20L80.8%2C227.9%20L88.2%2C213.2%20L89.2%2C213.1%20L91.4%2C214.0%20L93.9%2C214.4%20L96.6%2C215.4%20L104.8%2C217.1%20L107.7%2C217.3%20L108.1%2C217.7%20L108.5%2C234.4%20L131.4%2C234.4%20L131.8%2C217.7%20L132.1%2C217.3%20L141.2%2C215.9%20L151.5%2C213.1%20L157.2%2C224.3%20L158.7%2C226.5%20L159.1%2C227.9%20L159.7%2C227.9%20L166.1%2C224.7%20L167.7%2C224.3%20L173.5%2C221.2%20L174.5%2C221.1%20L179.8%2C217.9%20L174.2%2C204.9%20L173.5%2C204.0%20L173.3%2C202.4%20L180.8%2C197.2%20L188.4%2C190.4%20L189.2%2C190.4%20L202.0%2C200.2%20L209.2%2C192.2%20L209.3%2C191.6%20L212.5%2C187.9%20L216.5%2C182.2%20L216.0%2C181.5%20L213.9%2C180.2%20L211.5%2C177.8%20L210.6%2C177.4%20L204.0%2C171.6%20L204.0%2C170.6%20L204.4%2C170.2%20L209.2%2C161.3%20L209.3%2C160.3%20L212.3%2C153.4%20L215.6%2C153.7%20L228.7%2C156.6%20L229.1%2C156.4%20L231.9%2C145.6%20L233.9%2C135.2%20L233.7%2C134.0%20L217.8%2C129.9%20L218.0%2C113.2%20L217.7%2C109.9%20L226.5%2C107.4%20L233.7%2C105.8%20L233.9%2C104.6%20L231.6%2C93.2%20L229.0%2C83.2%20L214.5%2C86.3%20L212.3%2C86.4%20L209.2%2C78.5%20L204.4%2C69.5%20L204.0%2C69.3%20L204.0%2C68.2%20L216.6%2C57.5%20L211.7%2C50.8%20L209.3%2C48.2%20L209.2%2C47.6%20L202.4%2C39.6%20L189.2%2C49.4%20L188.4%2C49.4%20L181.0%2C42.8%20L173.3%2C37.4%20L173.5%2C35.9%20L179.8%2C21.8%20L178.5%2C20.9%20L168.2%2C15.7%20L165.6%2C14.8%20L160.9%2C12.4%20L159.1%2C12.0%20L151.7%2C26.6%20L150.7%2C26.7%20L148.5%2C25.7%20L146.9%2C25.6%20L141.2%2C23.9%20L131.8%2C22.2%20L131.4%2C5.5%20Z%22%20fill%3D%22%2362c29c%22/%3E%3Ctext%20x%3D%22122%22%20y%3D%22138%22%20font-size%3D%22115%22%20font-weight%3D%22900%22%20fill%3D%22%23121236%22%20text-anchor%3D%22middle%22%20font-family%3D%22Georgia%2Cserif%22%3E%26%238221%3B%3C/text%3E%3C/svg%3E") center / contain no-repeat;
    pointer-events: none;
    filter: drop-shadow(0 6px 10px rgba(0,0,0,.35));
}

.slmou-quote-card blockquote { margin: 0; padding: 6px 0 0; border: 0; font-style: normal; position: relative; z-index: 1; }
.slmou-quote-card blockquote * { font-style: normal !important; }

.slmou-type-quote .slmou-update-title {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 0 10px !important;
    line-height: 1.7;
}
.slmou-quote-content { color: #c7cbe6; font-size: 15px; line-height: 1.9; font-style: normal; margin-top: 6px; }
.slmou-quote-content p { margin: 0 0 8px; color: inherit; }
.slmou-quote-content p:last-child { margin-bottom: 0; }

/* ===== المتغيّر: ذهبي (اقتباس رئيسي) ===== */
.slmou-type-quote.slmou-q-gold { background: linear-gradient(160deg, #eec459 0%, #e0a93a 100%) !important; }
.slmou-type-quote.slmou-q-gold::after { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20240%20240%22%3E%3Cpath%20d%3D%22M108.5%2C5.5%20L107.9%2C22.4%20L98.6%2C23.9%20L88.3%2C26.7%20L80.8%2C12.0%20L79.0%2C12.4%20L68.7%2C17.1%20L60.1%2C21.8%20L64.3%2C31.2%20L64.4%2C32.3%20L66.4%2C35.8%20L66.6%2C37.4%20L57.9%2C43.6%20L51.7%2C49.3%20L50.7%2C49.4%20L37.6%2C39.6%20L30.7%2C47.6%20L30.6%2C48.2%20L28.9%2C49.9%20L23.3%2C57.5%20L35.9%2C68.2%20L35.9%2C69.3%20L34.5%2C71.2%20L34.1%2C72.6%20L30.9%2C78.0%20L27.5%2C86.4%20L25.4%2C86.3%20L10.8%2C83.2%20L7.5%2C96.3%20L5.9%2C104.6%20L6.2%2C105.8%20L12.4%2C107.1%20L22.1%2C109.9%20L22.1%2C129.9%20L6.2%2C134.0%20L5.9%2C135.2%20L6.7%2C137.7%20L7.5%2C143.5%20L11.0%2C156.6%20L24.3%2C153.7%20L27.5%2C153.4%20L27.9%2C153.9%20L28.1%2C155.2%20L30.6%2C160.3%20L30.7%2C161.3%20L35.9%2C170.6%20L35.9%2C171.6%20L29.2%2C177.4%20L28.4%2C177.8%20L26.0%2C180.2%20L23.9%2C181.5%20L23.3%2C182.4%20L28.1%2C188.9%20L30.6%2C191.6%20L30.7%2C192.2%20L37.5%2C200.2%20L50.7%2C190.4%20L51.4%2C190.4%20L59.1%2C197.2%20L66.6%2C202.4%20L66.4%2C204.0%20L65.6%2C204.9%20L63.6%2C210.3%20L62.6%2C211.7%20L60.1%2C217.7%20L61.4%2C218.9%20L72.2%2C224.3%20L80.8%2C227.9%20L88.2%2C213.2%20L89.2%2C213.1%20L91.4%2C214.0%20L93.9%2C214.4%20L96.6%2C215.4%20L104.8%2C217.1%20L107.7%2C217.3%20L108.1%2C217.7%20L108.5%2C234.4%20L131.4%2C234.4%20L131.8%2C217.7%20L132.1%2C217.3%20L141.2%2C215.9%20L151.5%2C213.1%20L157.2%2C224.3%20L158.7%2C226.5%20L159.1%2C227.9%20L159.7%2C227.9%20L166.1%2C224.7%20L167.7%2C224.3%20L173.5%2C221.2%20L174.5%2C221.1%20L179.8%2C217.9%20L174.2%2C204.9%20L173.5%2C204.0%20L173.3%2C202.4%20L180.8%2C197.2%20L188.4%2C190.4%20L189.2%2C190.4%20L202.0%2C200.2%20L209.2%2C192.2%20L209.3%2C191.6%20L212.5%2C187.9%20L216.5%2C182.2%20L216.0%2C181.5%20L213.9%2C180.2%20L211.5%2C177.8%20L210.6%2C177.4%20L204.0%2C171.6%20L204.0%2C170.6%20L204.4%2C170.2%20L209.2%2C161.3%20L209.3%2C160.3%20L212.3%2C153.4%20L215.6%2C153.7%20L228.7%2C156.6%20L229.1%2C156.4%20L231.9%2C145.6%20L233.9%2C135.2%20L233.7%2C134.0%20L217.8%2C129.9%20L218.0%2C113.2%20L217.7%2C109.9%20L226.5%2C107.4%20L233.7%2C105.8%20L233.9%2C104.6%20L231.6%2C93.2%20L229.0%2C83.2%20L214.5%2C86.3%20L212.3%2C86.4%20L209.2%2C78.5%20L204.4%2C69.5%20L204.0%2C69.3%20L204.0%2C68.2%20L216.6%2C57.5%20L211.7%2C50.8%20L209.3%2C48.2%20L209.2%2C47.6%20L202.4%2C39.6%20L189.2%2C49.4%20L188.4%2C49.4%20L181.0%2C42.8%20L173.3%2C37.4%20L173.5%2C35.9%20L179.8%2C21.8%20L178.5%2C20.9%20L168.2%2C15.7%20L165.6%2C14.8%20L160.9%2C12.4%20L159.1%2C12.0%20L151.7%2C26.6%20L150.7%2C26.7%20L148.5%2C25.7%20L146.9%2C25.6%20L141.2%2C23.9%20L131.8%2C22.2%20L131.4%2C5.5%20Z%22%20fill%3D%22%23161a47%22/%3E%3Ctext%20x%3D%22122%22%20y%3D%22138%22%20font-size%3D%22115%22%20font-weight%3D%22900%22%20fill%3D%22%23e8b84b%22%20text-anchor%3D%22middle%22%20font-family%3D%22Georgia%2Cserif%22%3E%26%238221%3B%3C/text%3E%3C/svg%3E"); }
.slmou-q-gold .slmou-update-title { color: #161a47 !important; }
.slmou-q-gold .slmou-quote-content { color: #3a3450; }

/* ===== المتغيّر: تميّز (نافي + ترس برتقالي) ===== */
.slmou-type-quote.slmou-q-accent::after { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20240%20240%22%3E%3Cpath%20d%3D%22M108.5%2C5.5%20L107.9%2C22.4%20L98.6%2C23.9%20L88.3%2C26.7%20L80.8%2C12.0%20L79.0%2C12.4%20L68.7%2C17.1%20L60.1%2C21.8%20L64.3%2C31.2%20L64.4%2C32.3%20L66.4%2C35.8%20L66.6%2C37.4%20L57.9%2C43.6%20L51.7%2C49.3%20L50.7%2C49.4%20L37.6%2C39.6%20L30.7%2C47.6%20L30.6%2C48.2%20L28.9%2C49.9%20L23.3%2C57.5%20L35.9%2C68.2%20L35.9%2C69.3%20L34.5%2C71.2%20L34.1%2C72.6%20L30.9%2C78.0%20L27.5%2C86.4%20L25.4%2C86.3%20L10.8%2C83.2%20L7.5%2C96.3%20L5.9%2C104.6%20L6.2%2C105.8%20L12.4%2C107.1%20L22.1%2C109.9%20L22.1%2C129.9%20L6.2%2C134.0%20L5.9%2C135.2%20L6.7%2C137.7%20L7.5%2C143.5%20L11.0%2C156.6%20L24.3%2C153.7%20L27.5%2C153.4%20L27.9%2C153.9%20L28.1%2C155.2%20L30.6%2C160.3%20L30.7%2C161.3%20L35.9%2C170.6%20L35.9%2C171.6%20L29.2%2C177.4%20L28.4%2C177.8%20L26.0%2C180.2%20L23.9%2C181.5%20L23.3%2C182.4%20L28.1%2C188.9%20L30.6%2C191.6%20L30.7%2C192.2%20L37.5%2C200.2%20L50.7%2C190.4%20L51.4%2C190.4%20L59.1%2C197.2%20L66.6%2C202.4%20L66.4%2C204.0%20L65.6%2C204.9%20L63.6%2C210.3%20L62.6%2C211.7%20L60.1%2C217.7%20L61.4%2C218.9%20L72.2%2C224.3%20L80.8%2C227.9%20L88.2%2C213.2%20L89.2%2C213.1%20L91.4%2C214.0%20L93.9%2C214.4%20L96.6%2C215.4%20L104.8%2C217.1%20L107.7%2C217.3%20L108.1%2C217.7%20L108.5%2C234.4%20L131.4%2C234.4%20L131.8%2C217.7%20L132.1%2C217.3%20L141.2%2C215.9%20L151.5%2C213.1%20L157.2%2C224.3%20L158.7%2C226.5%20L159.1%2C227.9%20L159.7%2C227.9%20L166.1%2C224.7%20L167.7%2C224.3%20L173.5%2C221.2%20L174.5%2C221.1%20L179.8%2C217.9%20L174.2%2C204.9%20L173.5%2C204.0%20L173.3%2C202.4%20L180.8%2C197.2%20L188.4%2C190.4%20L189.2%2C190.4%20L202.0%2C200.2%20L209.2%2C192.2%20L209.3%2C191.6%20L212.5%2C187.9%20L216.5%2C182.2%20L216.0%2C181.5%20L213.9%2C180.2%20L211.5%2C177.8%20L210.6%2C177.4%20L204.0%2C171.6%20L204.0%2C170.6%20L204.4%2C170.2%20L209.2%2C161.3%20L209.3%2C160.3%20L212.3%2C153.4%20L215.6%2C153.7%20L228.7%2C156.6%20L229.1%2C156.4%20L231.9%2C145.6%20L233.9%2C135.2%20L233.7%2C134.0%20L217.8%2C129.9%20L218.0%2C113.2%20L217.7%2C109.9%20L226.5%2C107.4%20L233.7%2C105.8%20L233.9%2C104.6%20L231.6%2C93.2%20L229.0%2C83.2%20L214.5%2C86.3%20L212.3%2C86.4%20L209.2%2C78.5%20L204.4%2C69.5%20L204.0%2C69.3%20L204.0%2C68.2%20L216.6%2C57.5%20L211.7%2C50.8%20L209.3%2C48.2%20L209.2%2C47.6%20L202.4%2C39.6%20L189.2%2C49.4%20L188.4%2C49.4%20L181.0%2C42.8%20L173.3%2C37.4%20L173.5%2C35.9%20L179.8%2C21.8%20L178.5%2C20.9%20L168.2%2C15.7%20L165.6%2C14.8%20L160.9%2C12.4%20L159.1%2C12.0%20L151.7%2C26.6%20L150.7%2C26.7%20L148.5%2C25.7%20L146.9%2C25.6%20L141.2%2C23.9%20L131.8%2C22.2%20L131.4%2C5.5%20Z%22%20fill%3D%22%23e8743b%22/%3E%3Ctext%20x%3D%22122%22%20y%3D%22138%22%20font-size%3D%22115%22%20font-weight%3D%22900%22%20fill%3D%22%23121236%22%20text-anchor%3D%22middle%22%20font-family%3D%22Georgia%2Cserif%22%3E%26%238221%3B%3C/text%3E%3C/svg%3E"); }

/* ===== المتغيّر: سوشيال (أخضر) ===== */
.slmou-type-quote.slmou-q-social { background: linear-gradient(160deg, #7ee6bb 0%, #4aa882 100%) !important; }
.slmou-type-quote.slmou-q-social::after { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20240%20240%22%3E%3Cpath%20d%3D%22M108.5%2C5.5%20L107.9%2C22.4%20L98.6%2C23.9%20L88.3%2C26.7%20L80.8%2C12.0%20L79.0%2C12.4%20L68.7%2C17.1%20L60.1%2C21.8%20L64.3%2C31.2%20L64.4%2C32.3%20L66.4%2C35.8%20L66.6%2C37.4%20L57.9%2C43.6%20L51.7%2C49.3%20L50.7%2C49.4%20L37.6%2C39.6%20L30.7%2C47.6%20L30.6%2C48.2%20L28.9%2C49.9%20L23.3%2C57.5%20L35.9%2C68.2%20L35.9%2C69.3%20L34.5%2C71.2%20L34.1%2C72.6%20L30.9%2C78.0%20L27.5%2C86.4%20L25.4%2C86.3%20L10.8%2C83.2%20L7.5%2C96.3%20L5.9%2C104.6%20L6.2%2C105.8%20L12.4%2C107.1%20L22.1%2C109.9%20L22.1%2C129.9%20L6.2%2C134.0%20L5.9%2C135.2%20L6.7%2C137.7%20L7.5%2C143.5%20L11.0%2C156.6%20L24.3%2C153.7%20L27.5%2C153.4%20L27.9%2C153.9%20L28.1%2C155.2%20L30.6%2C160.3%20L30.7%2C161.3%20L35.9%2C170.6%20L35.9%2C171.6%20L29.2%2C177.4%20L28.4%2C177.8%20L26.0%2C180.2%20L23.9%2C181.5%20L23.3%2C182.4%20L28.1%2C188.9%20L30.6%2C191.6%20L30.7%2C192.2%20L37.5%2C200.2%20L50.7%2C190.4%20L51.4%2C190.4%20L59.1%2C197.2%20L66.6%2C202.4%20L66.4%2C204.0%20L65.6%2C204.9%20L63.6%2C210.3%20L62.6%2C211.7%20L60.1%2C217.7%20L61.4%2C218.9%20L72.2%2C224.3%20L80.8%2C227.9%20L88.2%2C213.2%20L89.2%2C213.1%20L91.4%2C214.0%20L93.9%2C214.4%20L96.6%2C215.4%20L104.8%2C217.1%20L107.7%2C217.3%20L108.1%2C217.7%20L108.5%2C234.4%20L131.4%2C234.4%20L131.8%2C217.7%20L132.1%2C217.3%20L141.2%2C215.9%20L151.5%2C213.1%20L157.2%2C224.3%20L158.7%2C226.5%20L159.1%2C227.9%20L159.7%2C227.9%20L166.1%2C224.7%20L167.7%2C224.3%20L173.5%2C221.2%20L174.5%2C221.1%20L179.8%2C217.9%20L174.2%2C204.9%20L173.5%2C204.0%20L173.3%2C202.4%20L180.8%2C197.2%20L188.4%2C190.4%20L189.2%2C190.4%20L202.0%2C200.2%20L209.2%2C192.2%20L209.3%2C191.6%20L212.5%2C187.9%20L216.5%2C182.2%20L216.0%2C181.5%20L213.9%2C180.2%20L211.5%2C177.8%20L210.6%2C177.4%20L204.0%2C171.6%20L204.0%2C170.6%20L204.4%2C170.2%20L209.2%2C161.3%20L209.3%2C160.3%20L212.3%2C153.4%20L215.6%2C153.7%20L228.7%2C156.6%20L229.1%2C156.4%20L231.9%2C145.6%20L233.9%2C135.2%20L233.7%2C134.0%20L217.8%2C129.9%20L218.0%2C113.2%20L217.7%2C109.9%20L226.5%2C107.4%20L233.7%2C105.8%20L233.9%2C104.6%20L231.6%2C93.2%20L229.0%2C83.2%20L214.5%2C86.3%20L212.3%2C86.4%20L209.2%2C78.5%20L204.4%2C69.5%20L204.0%2C69.3%20L204.0%2C68.2%20L216.6%2C57.5%20L211.7%2C50.8%20L209.3%2C48.2%20L209.2%2C47.6%20L202.4%2C39.6%20L189.2%2C49.4%20L188.4%2C49.4%20L181.0%2C42.8%20L173.3%2C37.4%20L173.5%2C35.9%20L179.8%2C21.8%20L178.5%2C20.9%20L168.2%2C15.7%20L165.6%2C14.8%20L160.9%2C12.4%20L159.1%2C12.0%20L151.7%2C26.6%20L150.7%2C26.7%20L148.5%2C25.7%20L146.9%2C25.6%20L141.2%2C23.9%20L131.8%2C22.2%20L131.4%2C5.5%20Z%22%20fill%3D%22%23161a47%22/%3E%3Ctext%20x%3D%22122%22%20y%3D%22138%22%20font-size%3D%22115%22%20font-weight%3D%22900%22%20fill%3D%22%2362c29c%22%20text-anchor%3D%22middle%22%20font-family%3D%22Georgia%2Cserif%22%3E%26%238221%3B%3C/text%3E%3C/svg%3E"); }
.slmou-q-social .slmou-update-title { color: #0d2b22 !important; }
.slmou-q-social .slmou-quote-content { color: #15402f; }



/* سطر تعريف الاقتباس + نقطة ترس (هوية مكحل) */
.slmou-quote-label {
    display: flex; align-items: center; gap: 8px;
    margin-top: 16px; font-size: 13px; font-weight: 700;
    color: #62c29c;            /* أخضر على البطاقات النافي */
    justify-content: flex-start;
}
.slmou-quote-bullet {
    width: 16px; height: 16px; flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20240%20240%22%3E%3Cpath%20d%3D%22M108.5%2C5.5%20L107.9%2C22.4%20L98.6%2C23.9%20L88.3%2C26.7%20L80.8%2C12.0%20L79.0%2C12.4%20L68.7%2C17.1%20L60.1%2C21.8%20L64.3%2C31.2%20L64.4%2C32.3%20L66.4%2C35.8%20L66.6%2C37.4%20L57.9%2C43.6%20L51.7%2C49.3%20L50.7%2C49.4%20L37.6%2C39.6%20L30.7%2C47.6%20L30.6%2C48.2%20L28.9%2C49.9%20L23.3%2C57.5%20L35.9%2C68.2%20L35.9%2C69.3%20L34.5%2C71.2%20L34.1%2C72.6%20L30.9%2C78.0%20L27.5%2C86.4%20L25.4%2C86.3%20L10.8%2C83.2%20L7.5%2C96.3%20L5.9%2C104.6%20L6.2%2C105.8%20L12.4%2C107.1%20L22.1%2C109.9%20L22.1%2C129.9%20L6.2%2C134.0%20L5.9%2C135.2%20L6.7%2C137.7%20L7.5%2C143.5%20L11.0%2C156.6%20L24.3%2C153.7%20L27.5%2C153.4%20L27.9%2C153.9%20L28.1%2C155.2%20L30.6%2C160.3%20L30.7%2C161.3%20L35.9%2C170.6%20L35.9%2C171.6%20L29.2%2C177.4%20L28.4%2C177.8%20L26.0%2C180.2%20L23.9%2C181.5%20L23.3%2C182.4%20L28.1%2C188.9%20L30.6%2C191.6%20L30.7%2C192.2%20L37.5%2C200.2%20L50.7%2C190.4%20L51.4%2C190.4%20L59.1%2C197.2%20L66.6%2C202.4%20L66.4%2C204.0%20L65.6%2C204.9%20L63.6%2C210.3%20L62.6%2C211.7%20L60.1%2C217.7%20L61.4%2C218.9%20L72.2%2C224.3%20L80.8%2C227.9%20L88.2%2C213.2%20L89.2%2C213.1%20L91.4%2C214.0%20L93.9%2C214.4%20L96.6%2C215.4%20L104.8%2C217.1%20L107.7%2C217.3%20L108.1%2C217.7%20L108.5%2C234.4%20L131.4%2C234.4%20L131.8%2C217.7%20L132.1%2C217.3%20L141.2%2C215.9%20L151.5%2C213.1%20L157.2%2C224.3%20L158.7%2C226.5%20L159.1%2C227.9%20L159.7%2C227.9%20L166.1%2C224.7%20L167.7%2C224.3%20L173.5%2C221.2%20L174.5%2C221.1%20L179.8%2C217.9%20L174.2%2C204.9%20L173.5%2C204.0%20L173.3%2C202.4%20L180.8%2C197.2%20L188.4%2C190.4%20L189.2%2C190.4%20L202.0%2C200.2%20L209.2%2C192.2%20L209.3%2C191.6%20L212.5%2C187.9%20L216.5%2C182.2%20L216.0%2C181.5%20L213.9%2C180.2%20L211.5%2C177.8%20L210.6%2C177.4%20L204.0%2C171.6%20L204.0%2C170.6%20L204.4%2C170.2%20L209.2%2C161.3%20L209.3%2C160.3%20L212.3%2C153.4%20L215.6%2C153.7%20L228.7%2C156.6%20L229.1%2C156.4%20L231.9%2C145.6%20L233.9%2C135.2%20L233.7%2C134.0%20L217.8%2C129.9%20L218.0%2C113.2%20L217.7%2C109.9%20L226.5%2C107.4%20L233.7%2C105.8%20L233.9%2C104.6%20L231.6%2C93.2%20L229.0%2C83.2%20L214.5%2C86.3%20L212.3%2C86.4%20L209.2%2C78.5%20L204.4%2C69.5%20L204.0%2C69.3%20L204.0%2C68.2%20L216.6%2C57.5%20L211.7%2C50.8%20L209.3%2C48.2%20L209.2%2C47.6%20L202.4%2C39.6%20L189.2%2C49.4%20L188.4%2C49.4%20L181.0%2C42.8%20L173.3%2C37.4%20L173.5%2C35.9%20L179.8%2C21.8%20L178.5%2C20.9%20L168.2%2C15.7%20L165.6%2C14.8%20L160.9%2C12.4%20L159.1%2C12.0%20L151.7%2C26.6%20L150.7%2C26.7%20L148.5%2C25.7%20L146.9%2C25.6%20L141.2%2C23.9%20L131.8%2C22.2%20L131.4%2C5.5%20Z%22%20fill%3D%22%23000%22/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20240%20240%22%3E%3Cpath%20d%3D%22M108.5%2C5.5%20L107.9%2C22.4%20L98.6%2C23.9%20L88.3%2C26.7%20L80.8%2C12.0%20L79.0%2C12.4%20L68.7%2C17.1%20L60.1%2C21.8%20L64.3%2C31.2%20L64.4%2C32.3%20L66.4%2C35.8%20L66.6%2C37.4%20L57.9%2C43.6%20L51.7%2C49.3%20L50.7%2C49.4%20L37.6%2C39.6%20L30.7%2C47.6%20L30.6%2C48.2%20L28.9%2C49.9%20L23.3%2C57.5%20L35.9%2C68.2%20L35.9%2C69.3%20L34.5%2C71.2%20L34.1%2C72.6%20L30.9%2C78.0%20L27.5%2C86.4%20L25.4%2C86.3%20L10.8%2C83.2%20L7.5%2C96.3%20L5.9%2C104.6%20L6.2%2C105.8%20L12.4%2C107.1%20L22.1%2C109.9%20L22.1%2C129.9%20L6.2%2C134.0%20L5.9%2C135.2%20L6.7%2C137.7%20L7.5%2C143.5%20L11.0%2C156.6%20L24.3%2C153.7%20L27.5%2C153.4%20L27.9%2C153.9%20L28.1%2C155.2%20L30.6%2C160.3%20L30.7%2C161.3%20L35.9%2C170.6%20L35.9%2C171.6%20L29.2%2C177.4%20L28.4%2C177.8%20L26.0%2C180.2%20L23.9%2C181.5%20L23.3%2C182.4%20L28.1%2C188.9%20L30.6%2C191.6%20L30.7%2C192.2%20L37.5%2C200.2%20L50.7%2C190.4%20L51.4%2C190.4%20L59.1%2C197.2%20L66.6%2C202.4%20L66.4%2C204.0%20L65.6%2C204.9%20L63.6%2C210.3%20L62.6%2C211.7%20L60.1%2C217.7%20L61.4%2C218.9%20L72.2%2C224.3%20L80.8%2C227.9%20L88.2%2C213.2%20L89.2%2C213.1%20L91.4%2C214.0%20L93.9%2C214.4%20L96.6%2C215.4%20L104.8%2C217.1%20L107.7%2C217.3%20L108.1%2C217.7%20L108.5%2C234.4%20L131.4%2C234.4%20L131.8%2C217.7%20L132.1%2C217.3%20L141.2%2C215.9%20L151.5%2C213.1%20L157.2%2C224.3%20L158.7%2C226.5%20L159.1%2C227.9%20L159.7%2C227.9%20L166.1%2C224.7%20L167.7%2C224.3%20L173.5%2C221.2%20L174.5%2C221.1%20L179.8%2C217.9%20L174.2%2C204.9%20L173.5%2C204.0%20L173.3%2C202.4%20L180.8%2C197.2%20L188.4%2C190.4%20L189.2%2C190.4%20L202.0%2C200.2%20L209.2%2C192.2%20L209.3%2C191.6%20L212.5%2C187.9%20L216.5%2C182.2%20L216.0%2C181.5%20L213.9%2C180.2%20L211.5%2C177.8%20L210.6%2C177.4%20L204.0%2C171.6%20L204.0%2C170.6%20L204.4%2C170.2%20L209.2%2C161.3%20L209.3%2C160.3%20L212.3%2C153.4%20L215.6%2C153.7%20L228.7%2C156.6%20L229.1%2C156.4%20L231.9%2C145.6%20L233.9%2C135.2%20L233.7%2C134.0%20L217.8%2C129.9%20L218.0%2C113.2%20L217.7%2C109.9%20L226.5%2C107.4%20L233.7%2C105.8%20L233.9%2C104.6%20L231.6%2C93.2%20L229.0%2C83.2%20L214.5%2C86.3%20L212.3%2C86.4%20L209.2%2C78.5%20L204.4%2C69.5%20L204.0%2C69.3%20L204.0%2C68.2%20L216.6%2C57.5%20L211.7%2C50.8%20L209.3%2C48.2%20L209.2%2C47.6%20L202.4%2C39.6%20L189.2%2C49.4%20L188.4%2C49.4%20L181.0%2C42.8%20L173.3%2C37.4%20L173.5%2C35.9%20L179.8%2C21.8%20L178.5%2C20.9%20L168.2%2C15.7%20L165.6%2C14.8%20L160.9%2C12.4%20L159.1%2C12.0%20L151.7%2C26.6%20L150.7%2C26.7%20L148.5%2C25.7%20L146.9%2C25.6%20L141.2%2C23.9%20L131.8%2C22.2%20L131.4%2C5.5%20Z%22%20fill%3D%22%23000%22/%3E%3C/svg%3E") center / contain no-repeat;
}
.slmou-q-gold .slmou-quote-label,
.slmou-q-social .slmou-quote-label { color: #161a47; }   /* نافي على الذهبي والأخضر */
.slmou-q-accent .slmou-quote-label { color: #e8743b; }    /* برتقالي للتميّز */

/* ============= إعلان رسمي ============= */
.slmou-type-official {
    border-right-color: #1e3a8a !important;
    background: linear-gradient(135deg, #eff6ff 0%, #fff 100%) !important;
}

.slmou-official-header {
    background: #1e3a8a;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

/* ============= طقس ============= */
.slmou-type-weather {
    border-right-color: #0ea5e9 !important;
    background: linear-gradient(135deg, #f0f9ff 0%, #fff 100%) !important;
}

.slmou-weather-card {
    display: flex;
    gap: 15px;
    align-items: center;
}

.slmou-weather-icon {
    font-size: 36px;
}

/* ============= بداية/استراحة/نهاية ============= */
.slmou-type-kickoff {
    border-right-color: #0f172a !important;
    background: linear-gradient(135deg, #f1f5f9 0%, #fff 100%) !important;
}

.slmou-kickoff-card {
    text-align: center;
    padding: 10px;
}

.slmou-kickoff-icon { font-size: 40px; margin-bottom: 8px; }
.slmou-kickoff-title { font-size: 20px !important; color: #0f172a !important; }

/* ============= أزرار الأدمن ============= */
.slmou-admin-controls {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slmou-update-card:hover .slmou-admin-controls {
    opacity: 1;
}

.slmou-edit-btn, .slmou-delete-btn {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.slmou-edit-btn:hover {
    background: #dbeafe;
    border-color: #3b82f6;
}

.slmou-delete-btn:hover {
    background: #fee2e2;
    border-color: #ef4444;
}

/* ============= لا توجد تحديثات ============= */
.slmou-no-updates {
    text-align: center;
    padding: 60px 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.slmou-no-updates-icon { font-size: 48px; margin-bottom: 15px; }
.slmou-no-updates p { font-size: 16px; font-weight: 700; color: #475569; margin: 0 0 8px; }
.slmou-no-updates small { color: #94a3b8; }

/* ============= ملخص اللقاء ============= */
.slmou-summary {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    line-height: 1.8;
    color: #334155;
}

/* ============= التشكيلة ============= */
.slmou-lineup-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.slmou-lineup-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.slmou-lineup-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
    margin-bottom: 15px;
}

.slmou-lineup-logo { width: 60px; height: 60px; object-fit: contain; }
.slmou-lineup-info h3 { margin: 0 0 4px !important; font-size: 18px !important; color: #0f172a !important; }
.slmou-formation { color: #64748b; font-size: 13px; font-weight: 600; }

.slmou-coach {
    background: #f8fafc;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
}

.slmou-lineup-players {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.slmou-player {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.slmou-player:hover {
    background: var(--slmou-gradient, linear-gradient(135deg, #161a47, #0a0c24));
    color: #fff;
}
.slmou-player:hover .slmou-player-num { color: #121236; }

.slmou-player-num {
    width: 40px;
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20240%20240%22%3E%3Cpath%20d%3D%22M108.5%2C5.5%20L107.9%2C22.4%20L98.6%2C23.9%20L88.3%2C26.7%20L80.8%2C12.0%20L79.0%2C12.4%20L68.7%2C17.1%20L60.1%2C21.8%20L64.3%2C31.2%20L64.4%2C32.3%20L66.4%2C35.8%20L66.6%2C37.4%20L57.9%2C43.6%20L51.7%2C49.3%20L50.7%2C49.4%20L37.6%2C39.6%20L30.7%2C47.6%20L30.6%2C48.2%20L28.9%2C49.9%20L23.3%2C57.5%20L35.9%2C68.2%20L35.9%2C69.3%20L34.5%2C71.2%20L34.1%2C72.6%20L30.9%2C78.0%20L27.5%2C86.4%20L25.4%2C86.3%20L10.8%2C83.2%20L7.5%2C96.3%20L5.9%2C104.6%20L6.2%2C105.8%20L12.4%2C107.1%20L22.1%2C109.9%20L22.1%2C129.9%20L6.2%2C134.0%20L5.9%2C135.2%20L6.7%2C137.7%20L7.5%2C143.5%20L11.0%2C156.6%20L24.3%2C153.7%20L27.5%2C153.4%20L27.9%2C153.9%20L28.1%2C155.2%20L30.6%2C160.3%20L30.7%2C161.3%20L35.9%2C170.6%20L35.9%2C171.6%20L29.2%2C177.4%20L28.4%2C177.8%20L26.0%2C180.2%20L23.9%2C181.5%20L23.3%2C182.4%20L28.1%2C188.9%20L30.6%2C191.6%20L30.7%2C192.2%20L37.5%2C200.2%20L50.7%2C190.4%20L51.4%2C190.4%20L59.1%2C197.2%20L66.6%2C202.4%20L66.4%2C204.0%20L65.6%2C204.9%20L63.6%2C210.3%20L62.6%2C211.7%20L60.1%2C217.7%20L61.4%2C218.9%20L72.2%2C224.3%20L80.8%2C227.9%20L88.2%2C213.2%20L89.2%2C213.1%20L91.4%2C214.0%20L93.9%2C214.4%20L96.6%2C215.4%20L104.8%2C217.1%20L107.7%2C217.3%20L108.1%2C217.7%20L108.5%2C234.4%20L131.4%2C234.4%20L131.8%2C217.7%20L132.1%2C217.3%20L141.2%2C215.9%20L151.5%2C213.1%20L157.2%2C224.3%20L158.7%2C226.5%20L159.1%2C227.9%20L159.7%2C227.9%20L166.1%2C224.7%20L167.7%2C224.3%20L173.5%2C221.2%20L174.5%2C221.1%20L179.8%2C217.9%20L174.2%2C204.9%20L173.5%2C204.0%20L173.3%2C202.4%20L180.8%2C197.2%20L188.4%2C190.4%20L189.2%2C190.4%20L202.0%2C200.2%20L209.2%2C192.2%20L209.3%2C191.6%20L212.5%2C187.9%20L216.5%2C182.2%20L216.0%2C181.5%20L213.9%2C180.2%20L211.5%2C177.8%20L210.6%2C177.4%20L204.0%2C171.6%20L204.0%2C170.6%20L204.4%2C170.2%20L209.2%2C161.3%20L209.3%2C160.3%20L212.3%2C153.4%20L215.6%2C153.7%20L228.7%2C156.6%20L229.1%2C156.4%20L231.9%2C145.6%20L233.9%2C135.2%20L233.7%2C134.0%20L217.8%2C129.9%20L218.0%2C113.2%20L217.7%2C109.9%20L226.5%2C107.4%20L233.7%2C105.8%20L233.9%2C104.6%20L231.6%2C93.2%20L229.0%2C83.2%20L214.5%2C86.3%20L212.3%2C86.4%20L209.2%2C78.5%20L204.4%2C69.5%20L204.0%2C69.3%20L204.0%2C68.2%20L216.6%2C57.5%20L211.7%2C50.8%20L209.3%2C48.2%20L209.2%2C47.6%20L202.4%2C39.6%20L189.2%2C49.4%20L188.4%2C49.4%20L181.0%2C42.8%20L173.3%2C37.4%20L173.5%2C35.9%20L179.8%2C21.8%20L178.5%2C20.9%20L168.2%2C15.7%20L165.6%2C14.8%20L160.9%2C12.4%20L159.1%2C12.0%20L151.7%2C26.6%20L150.7%2C26.7%20L148.5%2C25.7%20L146.9%2C25.6%20L141.2%2C23.9%20L131.8%2C22.2%20L131.4%2C5.5%20Z%22%20fill%3D%22%2362c29c%22/%3E%3C/svg%3E") center / contain no-repeat;
    color: #121236;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
    font-family: 'Thmanyah Sans', sans-serif;
    line-height: 1;
}

.slmou-player-name { font-weight: 600; font-size: 14px; }

.slmou-lineup-placeholder {
    text-align: center;
    padding: 60px 20px;
    background: #f8fafc;
    border-radius: 12px;
    color: #94a3b8;
}

.slmou-placeholder-icon { font-size: 60px; margin-bottom: 15px; }

/* ============= متجاوب ============= */
@media (max-width: 768px) {
    .slmou-score-header { padding: 20px 15px; }
    .slmou-team-logo { width: 60px; height: 60px; }
    .slmou-team-name { font-size: 14px; }
    .slmou-score { font-size: 36px; gap: 10px; }
    .slmou-tab { padding: 10px 12px; font-size: 13px; }
    .slmou-tab-icon { display: none; }
    .slmou-goal-title-big { font-size: 28px; }
    .slmou-lineup-container { grid-template-columns: 1fr; }
}

/* ============= حماية شاملة - منع الصور من الخروج ============= */
.slmou-update-card {
    overflow: hidden;
    box-sizing: border-box;
}

.slmou-update-card img {
    max-width: 100%;
    height: auto;
}

.slmou-update-card iframe,
.slmou-update-card video {
    max-width: 100%;
}

/* ============= حماية من تنسيقات القالب على blockquote ============= */
.slmou-quote-card,
.slmou-quote-card blockquote,
.slmou-quote-card blockquote * {
    background-color: transparent !important;
    color: inherit;
}

.slmou-quote-card blockquote {
    background: transparent !important;
    border: none !important;
}

.slmou-quote-card blockquote::before,
.slmou-quote-card blockquote::after {
    display: none !important;
    content: none !important;
}

/* ========================================
   بطاقة Timeline - مثل تصميم الجزيرة
   ======================================== */

.slmou-live-card {
    direction: rtl;
    font-family: 'Thmanyah Sans', 'Tajawal', 'Segoe UI', sans-serif;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    max-width: 100%;
    margin: 20px 0;
    border: 1px solid #e2e8f0;
}

/* ============= الترويسة ============= */
.slmou-card-header {
    position: relative;
    display: block;
    text-decoration: none !important;
    color: #fff !important;
    overflow: hidden;
    min-height: 280px;
    background: var(--card-color, #1e3a8a);
}

.slmou-card-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slmou-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* تدرّج لجعل النص مقروءاً */
.slmou-card-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.slmou-card-overlay {
    position: relative;
    z-index: 2;
    padding: 24px 22px 22px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.slmou-card-badge-row {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.slmou-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
}

.slmou-card-live {
    background: #dc2626;
    color: #fff;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.4);
}

.slmou-card-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: slmou-card-pulse 1.5s infinite;
}

@keyframes slmou-card-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.slmou-card-type {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.slmou-card-title {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin: 0 0 12px !important;
    line-height: 1.4 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.slmou-card-score {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.slmou-card-numbers {
    font-size: 22px;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 14px;
    border-radius: 8px;
    backdrop-filter: blur(8px);
}

.slmou-card-competition {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

/* ============= الميتا ============= */
.slmou-card-meta {
    display: flex;
    gap: 16px;
    padding: 12px 22px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    flex-wrap: wrap;
}

/* ============= التايم لاين ============= */
.slmou-card-timeline {
    padding: 18px 22px 8px;
    position: relative;
}

.slmou-card-timeline::before {
    content: '';
    position: absolute;
    right: 32px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: linear-gradient(to bottom, var(--card-color, #1e3a8a) 0%, #e2e8f0 100%);
}

.slmou-timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    text-decoration: none !important;
    color: inherit !important;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.3s ease;
}

.slmou-timeline-item:last-child {
    border-bottom: none;
}

.slmou-timeline-item:hover {
    background: #f8fafc;
    margin: 0 -10px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 8px;
}

.slmou-timeline-dot {
    width: 14px;
    height: 14px;
    background: #fff;
    border: 3px solid var(--card-color, #1e3a8a);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
    z-index: 1;
    position: relative;
    box-shadow: 0 0 0 4px #fff;
}

.slmou-timeline-item.is-breaking .slmou-timeline-dot {
    background: #dc2626;
    border-color: #dc2626;
    box-shadow: 0 0 0 4px #fff, 0 0 12px rgba(220, 38, 38, 0.6);
    animation: slmou-card-pulse 2s infinite;
}

.slmou-timeline-content {
    flex: 1;
    min-width: 0;
}

.slmou-timeline-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.slmou-timeline-time {
    color: #94a3b8;
    font-weight: 700;
}

.slmou-timeline-minute {
    background: #0f172a;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 10px;
}

.slmou-timeline-breaking {
    background: #fee2e2;
    color: #dc2626;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 10px;
}

.slmou-timeline-title {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.slmou-timeline-icon {
    font-size: 17px;
    flex-shrink: 0;
}

/* ============= زر CTA ============= */
.slmou-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: var(--card-color, #1e3a8a);
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 14px;
    transition: background 0.3s ease;
}

.slmou-card-cta:hover {
    background: #0f172a;
    color: #fff !important;
}

/* ============= متجاوب ============= */
@media (max-width: 600px) {
    .slmou-card-title { font-size: 18px !important; }
    .slmou-card-numbers { font-size: 18px; }
    .slmou-card-overlay { padding: 18px 16px 16px; }
    .slmou-card-timeline { padding: 14px 16px 4px; }
    .slmou-card-timeline::before { right: 24px; }
}

/* ========================================
   Slmou Matches Widget - شريط المباريات
   ======================================== */

.slmou-matches-widget-area {
    margin: 0 0 30px 0;
    direction: rtl;
}

.slmou-matches-widget {
    font-family: 'Thmanyah Sans', 'Tajawal', 'Segoe UI', sans-serif;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.1);
    max-width: 100%;
}

/* ============ الترويسة - تدرّج الهوية ============ */
.slmou-mw-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 14px 16px 12px;
    position: relative;
    overflow: hidden;
}

.slmou-mw-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 0%, rgba(255,255,255,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.slmou-mw-title {
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin: 0 0 12px !important;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.slmou-mw-title-icon {
    font-size: 20px;
}

/* ============ التبويبات ============ */
.slmou-mw-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.slmou-mw-tab {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(6px);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: inherit;
}

.slmou-mw-tab:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.35);
}

.slmou-mw-tab.is-active {
    background: #fff;
    color: #1e3a8a;
    border-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.slmou-mw-tab.is-active .slmou-mw-live-dot {
    background: #dc2626;
}

.slmou-mw-live-dot {
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    animation: slmou-mw-pulse 1.5s infinite;
}

@keyframes slmou-mw-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

/* ============ المحتوى ============ */
.slmou-mw-body {
    padding: 12px;
    min-height: 100px;
}

/* ============ Loading ============ */
.slmou-mw-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    gap: 10px;
    color: #64748b;
    font-size: 13px;
}

.slmou-mw-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid #e2e8f0;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: slmou-mw-spin 0.8s linear infinite;
}

@keyframes slmou-mw-spin {
    to { transform: rotate(360deg); }
}

/* ============ بطاقة المباراة ============ */
.slmou-mw-match {
    display: block;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 8px;
    text-decoration: none !important;
    color: inherit !important;
    transition: all 0.25s ease;
    position: relative;
}

.slmou-mw-match:last-child {
    margin-bottom: 0;
}

.slmou-mw-match:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.12);
    transform: translateX(-2px);
}

.slmou-mw-match-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 800;
    margin-bottom: 10px;
}

.slmou-mw-status-live {
    background: #fee2e2;
    color: #dc2626;
}

.slmou-mw-status-upcoming {
    background: #fef3c7;
    color: #92400e;
}

.slmou-mw-status-finished {
    background: #e2e8f0;
    color: #475569;
}

.slmou-mw-status-dot {
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
}

.slmou-mw-status-live .slmou-mw-status-dot {
    animation: slmou-mw-pulse 1.5s infinite;
}

.slmou-mw-minute {
    margin-right: auto;
    background: #0f172a;
    color: #fff;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
}

.slmou-mw-status-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

/* ============ الفرق ============ */
.slmou-mw-teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: center;
}

.slmou-mw-team {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.slmou-mw-team-1 {
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.slmou-mw-team-2 {
    flex-direction: row;
}

.slmou-mw-team-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
    background: #f8fafc;
    border-radius: 50%;
    padding: 2px;
}

.slmou-mw-team-name {
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slmou-mw-score {
    font-size: 16px;
    font-weight: 800;
    color: #1e3a8a;
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    padding: 4px 12px;
    border-radius: 8px;
    min-width: 50px;
    text-align: center;
    white-space: nowrap;
}

.slmou-mw-vs {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 8px;
}

.slmou-mw-competition {
    font-size: 10px;
    color: #94a3b8;
    margin-top: 8px;
    text-align: center;
    padding-top: 8px;
    border-top: 1px dashed #e2e8f0;
}

/* ============ لا توجد مباريات ============ */
.slmou-mw-empty {
    text-align: center;
    padding: 30px 20px;
    color: #94a3b8;
    font-size: 13px;
}

.slmou-mw-empty-icon {
    font-size: 32px;
    margin-bottom: 8px;
    opacity: 0.5;
}

/* ============ متجاوب ============ */
@media (max-width: 380px) {
    .slmou-mw-team-name {
        font-size: 11px;
    }
    .slmou-mw-team-logo {
        width: 22px;
        height: 22px;
    }
    .slmou-mw-score {
        font-size: 14px;
        min-width: 42px;
        padding: 3px 10px;
    }
}
