.page-header {
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--text-secondary);
}

.matches-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.match-card {
    background-color: var(--card-color);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.match-card:hover {
    transform: translateY(-4px);
}

.match-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.match-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.team-block h2 {
    font-size: 2rem;
}

.versus {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent);
}

.match-footer {
    margin-top: 2rem;
}