.winners-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
}

h1 {
    color: #f1c40f;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.winners-table {
    width: 100%;
    max-width: 600px;
    border-collapse: collapse;
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
}

.winners-table th, .winners-table td {
    padding: 18px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.winners-table th {
    background-color: #2c3e50;
    color: #f1c40f;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.winners-table tr:last-child td {
    border-bottom: none;
}