body {
    font-family: Arial, sans-serif;
    background: #0f172a;
    color: #fff;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 10px;
}

.header {
    text-align: center;
    margin-bottom: 15px;
}

.logo {
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
}

h1 {
    text-align: center;
}

.league {
    margin-top: 20px;
    background: #1e293b;
    border-radius: 8px;
    overflow: hidden;
}

.league-title {
    background: #334155;
    padding: 10px;
    font-weight: bold;
}

.match {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-top: 1px solid #334155;
}

.match-time {
    width: 80px;
    text-align: left;
    color: #facc15;
    font-weight: bold;
}

.match-score {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.match-score span.score {
    color: #facc15;
    width: 60px;
    text-align: center;
    flex-shrink: 0;
}

.match-score span:first-child {
    text-align: right;
    flex: 1;
}

.match-score span:last-child {
    text-align: left;
    flex: 1;
}
