
        .main-container { max-width: 1100px; margin: 40px auto; padding: 0 20px; }
        .page-title { font-family: 'Poppins', sans-serif; text-align: center; text-transform: uppercase; margin-bottom: 40px; }

        #calendar { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); margin-bottom: 50px; color: #000; }

        /* Légende */
        .legend { display: flex; gap: 20px; margin-bottom: 15px; font-size: 0.85rem; }
        .legend-item { display: flex; align-items: center; gap: 6px; }
        .legend-dot { width: 12px; height: 12px; border-radius: 50%; }

        /* Modale */
        .modal-match {
            display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%;
            background-color: rgba(0,0,0,0.8); backdrop-filter: blur(5px);
        }
        .modal-content {
            background-color: #fff; margin: 8% auto; padding: 30px; border-radius: 10px;
            width: 90%; max-width: 500px; text-align: center; position: relative;
            font-family: 'Segoe UI', sans-serif; color: #000;
        }
        .close-modal { position: absolute; right: 20px; top: 15px; font-size: 28px; cursor: pointer; color: #999; }
        .modal-logo { width: 80px; height: 80px; object-fit: contain; margin-bottom: 15px; }
        .modal-vs { font-family: 'Poppins', sans-serif; font-size: 1.4rem; margin: 15px 0; }
        .modal-details { color: #555; margin-bottom: 20px; line-height: 1.8; }
        .modal-score {
            font-family: 'Poppins', sans-serif; font-size: 2rem; margin: 10px 0;
            padding: 10px 20px; border-radius: 8px; display: inline-block;
        }
        .modal-resultat {
            font-size: 1rem; font-weight: 800; text-transform: uppercase;
            letter-spacing: 2px; margin-bottom: 15px;
        }
        .btn-bet-modal {
            display: inline-block; background: #000; color: #fff; padding: 12px 25px;
            text-decoration: none; border-radius: 5px; font-weight: bold; text-transform: uppercase;
        }

        /* Résultats passés */
        .match-row {
            display: grid; grid-template-columns: 60px 110px 1fr 120px 120px;
            align-items: center; padding: 15px 25px; margin-bottom: 10px;
            background: #f9f9f9; border-radius: 4px; border-left: 5px solid #eee; color: #000;
            gap: 10px;
        }
        .win-bg  { border-left-color: #27ae60; }
        .loss-bg { border-left-color: #e74c3c; }
        .score-box { font-family: 'Poppins', sans-serif; background: #eee; padding: 5px 10px; border-radius: 4px; text-align: center; }

        @media (max-width: 600px) {
            .match-row { grid-template-columns: 40px 1fr 1fr; grid-template-rows: auto auto; }
            .score-box { grid-column: 2; }
        }