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

.wrapper {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.box {
    background: #1a1a1a;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 12px;
    border: 1px solid #333;
}

h2, h3 {
    font-family: Montserrat, sans-serif;
    letter-spacing: 0.5px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #E32727;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

table th {
    background: #222;
    padding: 12px;
    text-align: left;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    border-bottom: 1px solid #333;
}

table td {
    padding: 10px;
    border-bottom: 1px solid #2a2a2a;
}

.match {
    padding: 10px 0;
    border-bottom: 1px solid #2b2b2b;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.match-time {
    color: #5B8AFF;
    font-weight: 600;
    min-width: 60px;
}

.match-teams {
    flex: 1;
    padding: 0 10px;
}

.match-score {
    font-family: "Roboto Mono", monospace;
    font-size: 18px;
    color: #E32727;
    font-weight: bold;
}

.playoff-bracket {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.bracket-box {
    background: #1f1f1f;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #E32727;
}

.position-table td {
    padding: 10px 12px;
}
.playoff-bracket {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.round-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.bracket-match {
    background: #1f1f1f;
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 4px solid #E32727;
    min-width: 180px;
    position: relative;
}

.bracket-team {
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
}

.bracket-score {
    font-family: "Roboto Mono", monospace;
    color: #E32727;
    font-weight: bold;
}

.bracket-line-right::after {
    content: "";
    position: absolute;
    right: -40px;
    top: 50%;
    width: 40px;
    height: 2px;
    background: #444;
}

.bracket-line-left::before {
    content: "";
    position: absolute;
    left: -40px;
    top: 50%;
    width: 40px;
    height: 2px;
    background: #444;
}
