﻿.bracket-title {
    font-weight: bold;
    font-size: 2rem;
    color: #003366;
    text-transform: uppercase;
}

.bracket-wrapper {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.round {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

    .round h5 {
        margin-bottom: 10px;
        color: #222;
        font-weight: bold;
        text-transform: uppercase;
        border-bottom: 2px solid #ccc;
        padding-bottom: 5px;
    }

.match {
    background-color: #f5f5f5;
    border: 2px solid #ccc;
    border-radius: 12px;
    padding: 15px 20px;
    width: 220px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

    .match:hover {
        transform: scale(1.03);
        border-color: #0066cc;
    }

.team {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-weight: bold;
    margin-bottom: 5px;
}

.name {
    color: #222;
}

.score {
    color: #0066cc;
}

.vs {
    font-size: 0.9rem;
    margin: 5px 0;
    color: #888;
    font-weight: 600;
}

.final-match {
    background-color: #ffeeba;
    border-color: #ffc107;
}
