  body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to bottom, #9b6721, #000000);
    color: white;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }


  .subtitle {
    display: flex;
    align-items: center;
    font-size: 2em;
    margin-left: 2%;
    text-align: left;
    margin-top: 50px;
    letter-spacing: 5px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
  }

  .logo {
    display: flex;
    margin-right: 1%;
    height: 50px;
    width: auto;
    margin-left: 7%;
    height: 50px;
    width: auto;
  } 

  .subtitle1 {
    font-size: 1em;
    margin-right: 3%;
    text-align: right;
    margin-top: 50px;
    letter-spacing: 5px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
  }

  .subtitle2 {
    font-size: 1em;
    margin-right: 3%;
    text-align: right;
    margin-top: 1%;
    letter-spacing: 5px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
  }

  .Pagetexte {
    position: relative;
    font-size: 2em;
    text-align: center;
    margin-top: 50px;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
  }


  .live-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    background-color: red;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 20px;
  }

  .bordure {
    transition: transform 0.2s ease-in-out, all 0.2s ease-in-out;
    margin: 3%
  }

  .bordure:hover {
    transform: scale(1.08);
    transition: transform 0.2s ease-in-out, all 0.2s ease-in-out;
  }
  
  

  .Pagetexte img {
    position: relative;
  }


  .Pagetexte img:hover .live-badge {
    opacity: 1;
  }


  table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 50px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  }


  th, td {
    text-align: center;
    padding: 8px;
    font-size: 1.2em;
  }


  th {
    background-color: #9f5bdb;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
  }


  tr:nth-child(even) {
    background-color: #2e2e2e; 
  }


  /* Ajout d'une police Google Font externe */
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');


  /* Ajout d'un dégradé légèrement visible sur le fond */
  body:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5)); 
    pointer-events: none;
  }

