table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;

    background: rgba(10, 10, 20, 0.55);
    backdrop-filter: blur(4px);

    border: 1px solid rgba(180, 120, 255, 0.25);
    border-radius: 10px;
    overflow: hidden;

    color: #d7c6ff;

    font-family: Arial, sans-serif;
}

thead {
    background: linear-gradient(
        90deg,
        rgba(255, 120, 0, 0.18),
        rgba(130, 60, 255, 0.22)
    );
}

th {
    padding: 14px;
    text-align: left;

    color: #ff8a2a;
    font-size: 15px;
    letter-spacing: 0.5px;

    border-bottom: 1px solid rgba(255,255,255,0.08);
}

td {
    padding: 12px 14px;
    transition: 0.2s ease;
}

tbody tr:nth-child(odd) {
    background: rgba(255, 120, 0, 0.04);
}

tbody tr:nth-child(even) {
    background: rgba(140, 70, 255, 0.05);
}

tbody tr:hover {
    background: rgba(255,255,255,0.08);
}

tbody tr {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

table a {
    color: #ff8a2a;
    text-decoration: none;
}

table a:hover {
    color: #c084ff;
}

.match-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.match-table {
    width: 45%;
    border-collapse: collapse;
}

.match-table th,
.match-table td {
    border: 1px solid #666;
    padding: 8px;
}

.vs {
    font-size: 28px;
    font-weight: bold;
    white-space: nowrap;
}