/* TOTW Pitch Layout */
.totw-section {
    margin-bottom: 40px;
}

.totw-pitch {
    background: #0d0d0d;
    border: 2px solid #4b0082;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 0 18px rgba(75, 0, 130, 0.55);
}

.totw-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 18px;
}

.totw-player {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 12px 16px;
    border-radius: 10px;
    text-align: center;
    color: white;
    min-width: 140px;
}

.totw-team-logo {
    width: 40px;
    height: 40px;
    margin-bottom: 6px;
}

.totw-team {
    font-size: 14px;
    color: #c58cff;
    display: block;
}

.totw-name {
    font-size: 18px;
    font-weight: 900;
    display: block;
    margin-top: 4px;
}

/* Gameweek Selector */
.gw-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 26px;
    font-weight: 900;
    color: #4b0082;
    margin: 20px 0;
}

.gw-arrow {
    background: black;
    color: #4b0082;
    border: 2px solid #4b0082;
    padding: 6px 14px;
    font-size: 22px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s ease;
}

.gw-arrow:hover {
    background: #4b0082;
    color: black;
}
