body {
    font-family: 'Inter', sans-serif;
    background: #121212; /* Dark background */
    margin: 0;
    padding: 0;
    color: #e0e0e0; /* Light text */
}
header {
    background: #1e1e1e; /* Slightly lighter than the background */
    color: #ffffff;
    text-align: center;
    padding: 20px;
    font-size: 24px;
    font-weight: 600;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
}
.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}
.division-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.division-card {
    background: #1e1e1e; /* Matches the header for consistency */
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.7);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.division-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.9);
}
h2 {
    font-size: 20px;
    color: #4a90e2; /* Accent color */
    margin-bottom: 10px;
    font-weight: 600;
}
.overall-score {
    font-size: 18px;
    margin: 15px 0;
    color: #cfcfcf;
    font-weight: 500;
}
.current-matches h3 {
    font-size: 16px;
    color: #b3b3b3;
    margin-bottom: 10px;
    font-weight: 600;
}
.match {
    background: #242424;
    padding: 10px 15px;
    margin: 8px 0;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
    font-size: 14px;
    color: #e0e0e0;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
    header {
        font-size: 20px;
    }
}
