.results-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0C0C0C 0%, #1a1a1a 50%, #0C0C0C 100%);
    z-index: 200;
}

.results-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 3px;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.results-track-name {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.results-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 50px;
    min-width: 400px;
}

.results-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.results-row.winner {
    background: rgba(255, 215, 0, 0.12);
    border-color: #ffd700;
}

.results-position {
    font-size: 28px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    width: 50px;
    text-align: center;
}

.results-row.winner .results-position {
    color: #ffd700;
}

.results-vehicle-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    flex: 1;
}

.results-driver {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.results-color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.results-btn {
    background: linear-gradient(180deg, #CF4B3C 0%, #a33a2e 100%);
    color: #fff;
    border: 2px solid #CF4B3C;
    padding: 16px 48px;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 2px;
    min-width: 280px;
    text-align: center;
    transition: all 0.2s;
    font-family: inherit;
}

.results-btn:hover {
    background: linear-gradient(180deg, #d95d4f 0%, #CF4B3C 100%);
    transform: scale(1.05);
    border-color: #d95d4f;
}

.results-btn:active {
    transform: scale(0.98);
}
