/* =========================================================
   ZNILATHOSS SPORTS
   TODAY.CSS
   مباريات اليوم فقط
   ========================================================= */


/* =========================================================
   القسم الرئيسي لمباريات اليوم
   ========================================================= */

.today-section {
    width: 100%;

    margin: 0;

    padding: 0;
}


/* =========================================================
   رأس قسم اليوم
   ========================================================= */

.today-header {
    width: 100%;

    margin-bottom: 15px;

    padding: 14px 16px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    background: #ffffff;

    border: 1px solid #dbe4f0;

    border-radius: 12px;

    box-shadow:
        0 3px 12px rgba(0, 0, 0, .04);
}


/* =========================================================
   عنوان اليوم
   ========================================================= */

.today-title {
    display: flex;

    align-items: center;

    gap: 9px;

    margin: 0;

    color: #0b2a5b;

    font-size: 17px;

    font-weight: 950;
}


/* =========================================================
   أيقونة اليوم
   ========================================================= */

.today-title-icon {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #eef5ff;

    color: #0b2a5b;

    border-radius: 8px;

    font-size: 17px;

    flex-shrink: 0;
}


/* =========================================================
   تاريخ اليوم
   ========================================================= */

.today-date {
    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 32px;

    padding: 6px 11px;

    background: #f8fafc;

    color: #64748b;

    border: 1px solid #e2e8f0;

    border-radius: 7px;

    font-size: 10px;

    font-weight: 800;

    white-space: nowrap;
}


/* =========================================================
   إحصائيات اليوم
   ========================================================= */

.today-stats {
    display: flex;

    align-items: center;

    gap: 7px;
}


/* =========================================================
   عنصر إحصائية
   ========================================================= */

.today-stat {
    min-width: 55px;

    min-height: 34px;

    padding: 5px 8px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    background: #f8fafc;

    border: 1px solid #e2e8f0;

    border-radius: 7px;
}


/* =========================================================
   قيمة الإحصائية
   ========================================================= */

.today-stat-value {
    color: #0b2a5b;

    font-size: 12px;

    font-weight: 950;

    line-height: 1.2;
}


/* =========================================================
   اسم الإحصائية
   ========================================================= */

.today-stat-label {
    margin-top: 2px;

    color: #94a3b8;

    font-size: 7px;

    font-weight: 700;
}


/* =========================================================
   قائمة مباريات اليوم
   ========================================================= */

.today-matches {
    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 12px;
}


/* =========================================================
   مجموعة مباريات بطولة واحدة
   ========================================================= */

.today-league-group {
    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 8px;
}


/* =========================================================
   عنوان البطولة
   ========================================================= */

.today-league-header {
    width: 100%;

    min-height: 42px;

    padding: 8px 12px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    background: #f8fafc;

    border: 1px solid #e2e8f0;

    border-radius: 9px;
}


/* =========================================================
   معلومات البطولة
   ========================================================= */

.today-league-info {
    min-width: 0;

    display: flex;

    align-items: center;

    gap: 8px;
}


/* =========================================================
   شعار البطولة
   ========================================================= */

.today-league-logo {
    width: 27px;
    height: 27px;

    object-fit: contain;

    flex-shrink: 0;
}


/* =========================================================
   اسم البطولة
   ========================================================= */

.today-league-name {
    color: #334155;

    font-size: 11px;

    font-weight: 900;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}


/* =========================================================
   عدد مباريات البطولة
   ========================================================= */

.today-league-count {
    min-width: 23px;
    height: 23px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0 5px;

    background: #0b2a5b;

    color: #ffffff;

    border-radius: 20px;

    font-size: 9px;

    font-weight: 900;
}


/* =========================================================
   شبكة مباريات اليوم
   ========================================================= */

.today-matches-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(320px, 1fr)
        );

    gap: 12px;
}


/* =========================================================
   مباراة مميزة اليوم
   ========================================================= */

.today-match-featured {
    grid-column: 1 / -1;
}


/* =========================================================
   فلتر مباريات اليوم
   ========================================================= */

.today-filters {
    width: 100%;

    margin-bottom: 14px;

    padding: 10px;

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 7px;

    background: #ffffff;

    border: 1px solid #dbe4f0;

    border-radius: 10px;
}


/* =========================================================
   زر الفلتر
   ========================================================= */

.today-filter-button {
    min-height: 34px;

    padding: 6px 12px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 5px;

    background: #f8fafc;

    color: #64748b;

    border: 1px solid #e2e8f0;

    border-radius: 7px;

    font-family: inherit;

    font-size: 9px;

    font-weight: 800;

    cursor: pointer;

    transition:
        background-color .2s ease,
        color .2s ease,
        border-color .2s ease;
}


/* =========================================================
   مرور الفأرة
   ========================================================= */

.today-filter-button:hover {
    background: #eef5ff;

    color: #0b2a5b;

    border-color: #cfe0f8;
}


/* =========================================================
   الفلتر النشط
   ========================================================= */

.today-filter-button.active {
    background: #0b2a5b;

    color: #ffffff;

    border-color: #0b2a5b;
}


/* =========================================================
   حالة التحميل
   ========================================================= */

.today-loading {
    width: 100%;

    min-height: 220px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 10px;

    background: #ffffff;

    border: 1px solid #dbe4f0;

    border-radius: 12px;

    color: #64748b;

    font-size: 11px;

    font-weight: 700;
}


/* =========================================================
   دائرة التحميل
   ========================================================= */

.today-loading-spinner {
    width: 34px;
    height: 34px;

    border: 3px solid #e2e8f0;

    border-top-color: #0b2a5b;

    border-radius: 50%;

    animation:
        todaySpin .8s linear infinite;
}


@keyframes todaySpin {

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   الحالة الفارغة
   ========================================================= */

.today-empty {
    width: 100%;

    min-height: 220px;

    padding: 30px 20px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 8px;

    background: #ffffff;

    border: 1px solid #dbe4f0;

    border-radius: 12px;

    text-align: center;
}


/* =========================================================
   أيقونة الحالة الفارغة
   ========================================================= */

.today-empty-icon {
    font-size: 35px;

    line-height: 1;
}


/* =========================================================
   عنوان الحالة الفارغة
   ========================================================= */

.today-empty-title {
    margin: 0;

    color: #334155;

    font-size: 13px;

    font-weight: 900;
}


/* =========================================================
   وصف الحالة الفارغة
   ========================================================= */

.today-empty-text {
    max-width: 420px;

    margin: 0;

    color: #94a3b8;

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================================
   حالة الخطأ
   ========================================================= */

.today-error {
    width: 100%;

    padding: 18px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 7px;

    background: #fff7f7;

    border: 1px solid #fecaca;

    border-radius: 10px;

    color: #b91c1c;

    text-align: center;
}


/* =========================================================
   زر إعادة المحاولة
   ========================================================= */

.today-retry-button {
    min-height: 34px;

    padding: 6px 13px;

    background: #ffffff;

    color: #b91c1c;

    border: 1px solid #fecaca;

    border-radius: 7px;

    font-family: inherit;

    font-size: 9px;

    font-weight: 800;

    cursor: pointer;

    transition:
        background-color .2s ease,
        transform .2s ease;
}


.today-retry-button:hover {
    background: #fef2f2;

    transform: translateY(-1px);
}


/* =========================================================
   التابلت
   ========================================================= */

@media (max-width: 900px) {

    .today-header {
        align-items: flex-start;
    }


    .today-stats {
        flex-wrap: wrap;

        justify-content: flex-end;
    }


    .today-matches-grid {
        grid-template-columns:
            repeat(
                auto-fit,
                minmax(290px, 1fr)
            );
    }

}


/* =========================================================
   الهاتف
   ========================================================= */

@media (max-width: 768px) {

    .today-header {
        padding: 11px;

        flex-wrap: wrap;

        margin-bottom: 11px;
    }


    .today-title {
        font-size: 14px;
    }


    .today-title-icon {
        width: 30px;
        height: 30px;

        font-size: 15px;
    }


    .today-date {
        min-height: 29px;

        font-size: 9px;
    }


    .today-stats {
        width: 100%;

        justify-content: flex-start;
    }


    .today-stat {
        min-width: 50px;

        min-height: 31px;
    }


    .today-matches {
        gap: 9px;
    }


    .today-matches-grid {
        grid-template-columns: 1fr;

        gap: 9px;
    }


    .today-league-header {
        min-height: 39px;

        padding: 7px 9px;
    }


    .today-league-name {
        font-size: 10px;
    }


    .today-filters {
        margin-bottom: 10px;

        padding: 7px;
    }


    .today-filter-button {
        min-height: 31px;

        padding: 5px 9px;

        font-size: 8px;
    }

}


/* =========================================================
   الهاتف الصغير
   ========================================================= */

@media (max-width: 480px) {

    .today-header {
        border-radius: 10px;
    }


    .today-title {
        font-size: 13px;
    }


    .today-date {
        width: 100%;

        justify-content: flex-start;
    }


    .today-stat {
        flex: 1;

        min-width: 0;
    }


    .today-stat-value {
        font-size: 11px;
    }


    .today-stat-label {
        font-size: 6px;
    }


    .today-league-logo {
        width: 23px;
        height: 23px;
    }


    .today-league-name {
        font-size: 9px;
    }


    .today-league-count {
        min-width: 21px;
        height: 21px;

        font-size: 8px;
    }

}


/* =========================================================
   تقليل الحركة
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .today-filter-button,
    .today-retry-button {
        transition: none;
    }


    .today-loading-spinner {
        animation: none;
    }

}