body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 0;
}
header {
    background: #007bff;
    color: white;
    padding: 10px;
    text-align: center;
}
nav ul {
    list-style: none;
    padding: 0;
}
nav ul li {
    display: inline;
    margin: 0 15px;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.match-highlight {
    text-align: center;
    padding: 20px;
}
.match-highlight img {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    margin-bottom: 10px;
}
.match-highlight button {
    padding: 10px 20px;
    margin: 5px;
    background: #28a745;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
.matches {
    padding: 20px;
    text-align: center;
}
.matches img {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
}
.match {
    background: white;
    padding: 15px;
    margin: 10px auto;
    width: 80%;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
footer {
    text-align: center;
    padding: 10px;
    background: #007bff;
    color: white;
    position: absolute;
    bottom: 0;
    width: 100%;
}
