body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

header {
    background-color: #000;
    padding: 1rem 0;
    border-bottom: 2px solid #e50914;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #e50914;
    text-transform: uppercase;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.container {
    max-width: 1100px;
    margin: 40px auto;
    text-align: center;
    padding: 0 20px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.card {
    background: #2a2a2a;
    padding: 20px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: transform 0.3s, background 0.3s;
    border: 1px solid #333;
}

.card:hover {
    background: #e50914;
    transform: translateY(-5px);
}

/* On permet au conteneur d'être plus large pour le streaming */
.container-player {
    max-width: 95%; /* Utilise 95% de la largeur de l'écran */
    margin: 20px auto;
    text-align: center;
}

/* Nouveau système de ratio plus performant */
.video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9; /* Définit automatiquement la hauteur selon la largeur */
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.seo-content {
    text-align: left;
    background: #222;
    padding: 25px;
    margin-top: 30px;
    border-radius: 10px;
    line-height: 1.8;
}

.seo-content h2, .seo-content h3 {
    color: #e50914;
    margin-bottom: 15px;
}

.match-info {
    background: #333;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.compo-box {
    background: #111;
    padding: 20px;
    border-left: 4px solid #e50914;
    margin-top: 20px;
}

.compo-box ul {
    list-style: none;
    padding: 0;
}