        :root {
            --primary-dark: #0F172A;
            --card-dark: #020617;
            --accent-green: #10B981;
            --accent-orange: #F59E0B;
            --text-light: #ffffff;
            --text-muted: #cae0f7;
            --bg-light: #f5f7fa;
            --border-color: #2d3e50;
        }

        /***/
        .goals-section{
            padding: 40px 0;
        }

        .goals-week{
            position: relative;
            padding: 70px 0;
            background: linear-gradient(to right, #0F172A, #0F172A);
        }
        .video-bloc{ 
            cursor: pointer;display: flex;background: #ffffff1a;align-items: center;border-radius: 13px;justify-content: center;border: 1px solid #eeeeee30;height: 416px;margin: 0 auto;
        }
        .video-icon{
                background: #ef4444;
                width: 60px;
                color: #fff;
                display: flex;
                font-size: 25px;
                height: 60px;
                align-items: center;
                justify-content: center;
                text-align: center;
                border-radius:50%;
        }

       .goals-week .section-header h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-light);
            margin: 0;
        }

 /* Articles Section */
        .articles-section{
            padding: 40px 0;
            background-color: var(--bg-light);  
        }
        .articles-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .browse-link {
            color: var(--accent-green);
            font-size: 0.9rem;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .browse-link:hover {
            text-decoration: underline;
        }

        .article-card {
            background-color: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin:10px 0;
            display: flex;
            flex-direction: column;
        }

        .article-image {
            position: relative;
            height: 140px;
            background-color: #e9ecef;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .article-image svg {
            width: 40px;
            height: 40px;
            fill: #bdc3c7;
            margin-bottom: 8px;
        }

        .article-content {
            padding: 15px;
            /* flex: 1; */
            height:130px;
            display: flex;
            flex-direction: column;
        }

        .article-badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 10px;
            position: absolute;
            align-self: flex-end;
            right: 10px;bottom:0;
        }

        .badge-urgent {
            background-color: #e74c3c;
            color: white;
        }

        .badge-analysis {
            background-color: var(--accent-green);
            color: white;
        }

        .badge-transfers {
            background-color: #3498db;
            color: white;
        }

        .article-meta {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .article-meta svg {
            width: 14px;
            height: 14px;
            fill: var(--text-muted);
        }

        .article-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-dark);
            line-height: 1.5;
            margin-bottom: 10px;
        }

        .read-more {
            color: var(--accent-green);
            font-size: 0.85rem;
            text-decoration: none;
            margin-top: auto;
        }

        .read-more:hover {
            text-decoration: underline;
        }

        /* Top Scorers Section */
        .scorers-section {
            background-color: white;
            border-radius: 16px;
            padding: 25px;
        }

        .scorers-container {
            display: flex;
            align-items: flex-end;
            width: 100%;
            gap: 20px;
        }

        .scorer-card {
            text-align: center;
            padding: 20px;
            border:1px solid #eee;
            border-radius: 12px;    
            background-color: #f8fafc;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            justify-content: center;
        }

        .scorer-avatar {
            width: 60px;
            height: 60px;
            background-color: #cbd5e1;
            border-radius: 50%;
            box-shadow:rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
            border: 2px solid #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
        }
       .scorer-avatar i {
            font-size: 28px;
            color: #1976d2;
        } 

        .scorer-goals {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--accent-orange);
            margin-bottom: 5px;
        }

        .scorer-name {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--primary-dark);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .section-header h2 {
                font-size: 1.3rem;
            }

            .match-score {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
  

            .dark-card, .poll-card, .scorers-section {
                padding: 15px;
            }

            .scorers-container {
                justify-content: center;
            }
        }
        /****/


        .titles-state{display: flex;flex-direction: column ;align-items: center ;justify-content: center;padding: 3px 0 8px; color: #fff; text-align: center;justify-content: center; flex-wrap: wrap;gap: 4px;}
        
        /* LTR → ordre normal */
        .titles-state[dir="ltr"] {
            flex-direction: row;
        }

        /* RTL → ordre inversé */
        .titles-state[dir="rtl"] {
            flex-direction: row-reverse;
        }
        .program-section {
            padding: 40px 0;
            background-color: var(--bg-light);
        }    
        .section-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .section-header h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin: 0;
        }

        .header-accent {
            width: 4px;
            height: 30px;
            background-color: var(--accent-green);
            border-radius: 2px;
        }

        /* Dark Cards */
        .similardark.dark-card{padding: 0;}
        .similardark.dark-card .transfer-item{
            background-color:#fff;
        }

        .similardark.dark-card .transfer-header{
            background-color:var(--card-dark);
        }
        .dark-card {
            background-color: var(--card-dark);
            border-radius: 16px;
            padding: 10px;
            margin: 15px 0 27px;
            color: var(--text-light);
        }

        /* Live Match Card */
        .live-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            max-width: 341px;
            padding: 6px 17px;
            border-radius: 20px;
            font-size: 14px;
            color: var(--text-light);
            background-color: rgba(46, 204, 113, 0.2);
            white-space: nowrap;
            overflow: hidden;
        }


        .live-dot {
            width: 13px;
            height: 13px;
            background-color: #e74c3c;
            border-radius: 50%;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .match-score {
            font-size: 1.6rem;
            font-weight: 800;
            text-align: center;
            color:#fff;
            margin: 12px 0;
        }

        .teams-row {
            display: flex;
            justify-content: space-around;
            align-items: center;
            margin-bottom: 10px;
            margin-top: 10px;
            position: relative;
            z-index: 1;
        }

        .team-name-home,
        .team-name-away {
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            color: var(--text-light);
            position: relative;
            z-index: 1;
        }

        .vs-badge {
            padding: 5px 15px;
            border-radius: 8px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* Stats Bars */
        .stat-row {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
        }

        .stat-value {
            font-size: 0.9rem;
            font-weight:500;
            opacity: 0.8;
            color:#fff;
        }

        .stat-bar-container {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .stat-bar {
            flex: 1;
            height: 8px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            overflow: hidden;
        }

        .stat-bar-fill {
            height: 100%;
            border-radius: 4px;
        }

        .stat-bar-fill.green {
            background-color: var(--accent-green);
        }

        .stat-bar-fill.orange {
            background-color: var(--accent-orange);
        }

        .stat-label {
            text-align: center;
            font-size: 0.85rem;
            color: var(--text-muted);
            min-width: 80px;
        }

        .btn-coverage {
            width: 100%;
            background-color: var(--accent-green);
            border: none;
            padding: 12px;
            border-radius: 10px;
            color: white;
            text-align: center;
            font-weight: 600;
            font-size: 1rem;
            margin-top: 15px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .btn-coverage:hover {
            background-color: var(--accent-green);
        }

        /* Transfer Market */
        .transfer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 7px;
            border-bottom: 1px solid var(--border-color);
            border-radius:13px;
        }

        .transfer-header h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin: 0;
            color:#fff;
        }

        .arrow-icon {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .transfer-item {
            display: flex;
            align-items: center;
            padding:12px 6px;
            border-bottom: 1px solid #eee;
        }

        .transfer-item:last-child {
            border-bottom: none;
        }

.transfer-body{
    max-height: 315px;
    overflow: auto;
}

.transfer-body::-webkit-scrollbar
{
    width: 3px;
}

.transfer-body::-webkit-scrollbar-thumb:hover {
    background:#10B981 ;
}
.transfer-body::-webkit-scrollbar-thumb {
    background:  #10B981;
}
.transfer-body::-webkit-scrollbar-track {
    background: #d1d1d1;
}

    .player-avatar {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 9px;
    }
    .player-avatar i {
        font-size: 26px;
        color: #1976d2;
    }
    .player-info {
        flex: 1;
    }

    .player-name {
        font-weight: 700;
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .transfer-details {
        font-size: 0.85rem;
        color: var(--text-muted);
    }

    .transfer-fee {
        font-size: 0.80rem;
        font-weight: 700;
        padding:0 5px;
    }

    .fee-free {
        color: #e74c3c;
    }

    .fee-paid {
        color: var(--accent-green);
    }

    .fee-rumor {
        color: var(--accent-orange);
    }

    /* Standings Table */
    .standings-card {
        background-color: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .standings-table {
        width: 100%;
        border-collapse: collapse;
    }

    /* .standings-table th {
        background-color: var(--primary-dark);
        color: white;
        padding: 15px 20px;
        font-weight: 600;
        text-align: center;
    }

    .standings-table th:last-child {
        text-align: right;
        padding-right: 25px;
    } */

    .standings-table td {
        padding: 18px 20px;
        text-align: center;
        border-bottom: 1px solid #eee;
        color: var(--primary-dark);
    }

    .standings-table td:last-child {
        text-align: right;
        padding-right: 25px;
    }

    .standings-table tbody tr:last-child td {
        border-bottom: none;
    }

    .rank-badge {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 700;
        font-size: 0.85rem;
    }

        .rank-1 { background-color: #f1c40f; }
        .rank-2 { background-color: #95a5a6; }
        .rank-3 { background-color: #cd7f32; }
        .rank-4 { background-color: #e74c3c; }

        .team-cell {
            font-weight: 600;
        }

        /* Fan Poll */
        .poll-card {
            background-color: white;
            border-radius: 16px;
            margin: 34px 0 30px;
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .poll-title {
            margin-bottom: 15px;
        }

        .poll-title h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin: 0;
        }

        .poll-question {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 25px;
        }

        .poll-option {
           border: 1px solid #eee;
            margin-bottom: 20px;
            padding: 10px;
            border-radius: 8px;
        }

        .poll-option-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .poll-team-name {
            font-weight: 600;
            color: var(--primary-dark);
        }

        .poll-percentage {
            font-weight: 700;
            color: var(--primary-dark);
        }

        .poll-bar {
            height: 5px;
            background-color: #e9ecef;
            border-radius: 5px;
            overflow: hidden;
        }

        .poll-bar-fill {
            height: 100%;
            border-radius: 5px;
            transition: width 0.5s ease;
        }

        .poll-bar-fill.green {
            background-color: var(--accent-green);
        }

        .poll-bar-fill.gray {
            background-color: #bdc3c7;
        }


        /***/

.star-section {
    height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #0F172A, #06070a);
}
.hero-section {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #0F172A, #0F172A);
}
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* noir semi-transparent */
    z-index: 1;
}

/* Title styling */
.hero-title {
    line-height: 1.5;
    font-size: clamp(1.5rem, 2.1vw, 2.2rem);color:#fff;
}

.star-name {
    font-size: 2.2rem;
    color: #fff;
    font-weight: bold;
    margin: 15px 0;
}

.star-icon span{font-weight: 700;color: #10B981;font-size:16px;}
.star-icon i{color: #fff900;}

/* Description styling */
.hero-desc {
    font-size: 1rem;
    color: #cae0f7;
    /* font-size: 12px; */
    opacity: 0.8;
}
.content-hero {display: flex;justify-content: space-evenly;gap: 37px;flex-direction: column;z-index: 1;}

    

.btn-herocontent{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #10B981;
    color: #fff;
    border-radius: 20px;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;width: max-content;
}
.player-vector{font-size: 19px;}.player-vector span{color: #10B981;font-weight: 700;}.player-vector i{color: #ffff00;}

.btn-herocontent:hover{background-color: #1976d2;}
.storytext{font-size: 12px;font-weight: 700;}
.storyself{display: flex;align-items: center;justify-content: center;flex-direction: column;gap: 6px;padding: 10px;}
/* .storyimg{background:#eee;display: inline-flex;text-align: center;align-items: center;justify-content: center;padding: 16px;border: 2px solid red;border-radius: 50%;width: 40px;height: 40px;} */


.storyimg {
    background: #eee;
    display: inline-flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 16px;
    width: 40px;
    height: 40px;
    border-radius: 75px;
    position: relative;
    border: none;
}

.storyimg::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(to right, #f9ce34  0%, #ee2a7b 100%);
    border-radius: inherit;
    z-index: -1;
}

.allstories{display: grid;grid-template-columns: repeat(6, 1fr);grid-gap: 20px;grid-auto-rows: minmax(35px, auto);}
@media (max-width: 1024px) {
    .allstories{display: grid;grid-template-columns: repeat(6, 1fr);grid-gap: 20px;grid-auto-rows: minmax(35px, auto);}
}
@media (max-width: 568px) {
    .allstories{display: grid;grid-template-columns: repeat(3, 1fr);grid-gap: 20px;margin: 0 auto;grid-auto-rows: minmax(35px, auto);}
    .team-inline-modal{left: 10px !important;}
}
.stories-topbar {
    padding: 12px 0;
}

.stateplayer{display: flex;flex-direction: column;gap: 10px;}
.stateplayer span:first-child{font-size: 30px;font-weight: bold;color:#F59E0B;}
.stateplayer span:last-child{color: #cae0f7;opacity: 0.8;}


.playervector {display: flex;align-items: center;justify-content: center;background: #10B981;width: 180px;border-radius: 50%;height: 180px;}
.playervector i{font-size: 53px;color: #1976d2;}


 /* App Download Banner */
.app-banner {
    background-color: var(--primary-dark);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0 40px;
    position: relative;
    overflow: hidden;
}

.app-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.phone-mockup {
    flex-shrink: 0;
    width: 280px;
    height: 220px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.phone-frame {
    width: 160px;
    height: 200px;
    background-color: white;
    border-radius: 12px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    bottom: 0;
    left: 2px;
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background-color: var(--primary-dark);
    border-radius: 3px;
}

.phone-ball {
    margin: 0 auto;
}

.phone-ball svg {
    width: 100%;
    height: 100%;
}

.app-text {
    flex: 1;
    text-align: right;
}

.app-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: 10px;
}

.app-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--accent-green);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.store-btn:hover {
    background-color: var(--accent-green);
    transform: translateY(-2px);
    color: white;
}

.store-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}



/****/

.newsletter-section {
background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
padding: 60px 0;
text-align: center;
}

.newsletter-title {
    color: #fff;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.newsletter-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 30px;
    text-align: center;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    min-width: 280px;
    padding: 15px 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: #fff;
    font-size: 1rem;
    font-family: 'Tajawal', sans-serif;
    text-align: right;
    direction: rtl;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-input:focus {
    outline: none;
    border-color: #fff;
}

.newsletter-btn {
    padding: 15px 40px;
    background: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Tajawal', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #1a252f;
    transform: translateY(-2px);
}
/****/
.login-button a{
    color: #fff;
}
    .login-button i {
        display: none;
    }
@media (max-width: 768px) {
    .app-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .app-text {
        text-align: center;
    }

    .app-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .phone-mockup {
        display:none;
    }

    .phone-frame {
        width: 140px;
        height: 180px;
    }

    .login-button span {
        display: none;
    }

        .login-button i {
        display: block;
    }

}


.footer-sectionsp{
    position: relative;
    padding: 55px 0 21px;
    background: linear-gradient(to right, #0F172A, #0F172A);
}

.footer-sectionsp span,.footer-sectionsp p{color:#fff;opacity:0.6;}

.copyright-section{padding: 20px 0 22px;background: linear-gradient(to right, #0F172A, #0F172A);border:1px solid #eeeeee3b}
.copyright-section p{color:#fff;opacity:0.6;}



/*******/
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    color:#fff;
    gap: 4px;
    z-index: 1001;
}
/* Responsive Design */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }
    
    .menuathentif {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 0;
    }
    
    .menuathentif.active {
        right: 0;
    }
    
    .menuathentif a {
        width: 100%;
        padding: 15px;
        text-align: right;
        border-bottom: 1px solid #eee;
        color:#000;
    }
    
    .menuathentif a:last-child {
        border-bottom: none;
    }
    
    /* Overlay pour mobile */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        display: none;
        z-index: 99;
    }
    
    .menu-overlay.active {
        display: block;
    }
    
    /* Animation du bouton toggle */
    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

@media (max-width: 576px) {
    .logohead {
        max-width: 120px;
    }
    
    .login-button span {
        display: none;
    }
    
    .login-button {
        padding: 10px;
    }
}

/* .main{
    padding: 0 !important;
} */

.heronews{
    margin-bottom: -14px;
}

.heronews .owl-dots {
  text-align: center;
    position: relative;
    bottom: 24px;
}
.heronews .owl-dots button.owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  background: #ccc;
  margin: 0 3px;
}
.heronews .owl-dots button.owl-dot.active {
  background-color: #10B981;
}
.heronews .owl-dots button.owl-dot:focus {
  outline: none;
}

.goals-blocs{
    margin: 40px 0;
} 


.team-link,
.team-img {
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.team-link:hover {
    color: #ffc107;
}

.team-inline-modal {
    position: absolute;
    z-index: 9999;
    width: 800px;
    max-width: 95vw;
    background: #bdb9b9;
    border-radius: 12px;
    padding: 12px;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,.6);
}

.team-inline-modal.show {
    display: block;
}

.team-inline-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.team-inline-modal button {
    background: none;
    border: 0;
    color: black;
    font-weight: bold;
    font-size: 19px;
    cursor: pointer;
}

.header-modal-widget{
    border-bottom: none !important;
}

.team-inline-modal.show[dir="ltr"] {
    left: 1086.3px !important;
}

.article-meta span{
    color: var(--primary-dark);
}

.infomatch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    max-width: 341px;
    flex-wrap: nowrap;   /* 🔥 empêche le wrap */
}

.infomatch strong{
    font-size: 13px;
}

.stade{
    color: #fff;
    text-align: center;
}









.program-statistics {
    background: linear-gradient(to right, #0F172A, #0F172A);
    padding: 60px 0;
    color: #fff;
}

.stats-card {
    background: linear-gradient(180deg, #161616, #101010);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.4);
    transition: transform .3s ease;
}

.stats-card:hover {
    transform: translateY(-6px);
}

.stats-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    font-weight: bold;
}

.stats-card-header.goals {
    background: linear-gradient(90deg, #ff9800, #ff5722);
}

.stats-card-header.cards {
    background: linear-gradient(90deg, #f1c40f, #e67e22);
}

.stats-card-header.assists {
    background: linear-gradient(90deg, #2ecc71, #1abc9c);
}

.stats-card-header h3 {
    font-size: 16px;
    margin: 0;
}

.stats-table {
    padding: 10px 16px 16px;
    max-height: calc(64px * 5); 
    overflow-y: auto;        
}

.stats-row {
    display: grid;
    grid-template-columns: 146px 3fr 24px 46px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    font-size: 14px;
}

.stats-table::-webkit-scrollbar {
    width: 6px;
}

.stats-table::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.25);
    border-radius: 6px;
}

.stats-row.header {
    color: #aaa;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.player {
    display: flex;
    align-items: center;
    gap: 8px;
}

.player img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.stat-value {
    font-weight: bold;
    color: #f1c40f;
    text-align: center;
}

.heading-static{
    color: #fff !important;
}

.force-white{
    color: #fff;
}

.cartes{
    grid-template-columns: 125px 4fr 33px 22px;
}

.stats-row.header {
    position: sticky;
    top: -10px;
    background: #121212;
    z-index: 2;
}