.select-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;
}

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

.select-cards {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.select-card {
    width: 220px;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    cursor: pointer;
    transition: all 0.2s;
    overflow: hidden;
}

.select-card:hover {
    transform: scale(1.04);
    border-color: rgba(255, 255, 255, 0.25);
}

.select-card.selected {
    border-color: #CF4B3C;
    box-shadow: 0 0 20px rgba(207, 75, 60, 0.4);
}

.card-color-bar {
    height: 8px;
    width: 100%;
}

.card-preview {
    height: 150px;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.card-preview canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.card-body {
    padding: 16px;
}

.card-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.card-driver {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.card-type-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 2px 8px;
    margin-bottom: 12px;
}

.card-type-badge.electric {
    background: rgba(51, 153, 51, 0.3);
    color: #66cc66;
    border: 1px solid #339933;
}

.card-type-badge.diesel {
    background: rgba(128, 128, 128, 0.3);
    color: #aaaaaa;
    border: 1px solid #666666;
}

.stat-row {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    width: 50px;
    flex-shrink: 0;
}

.stat-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    transition: width 0.3s;
}

/* Track select card styles */
.track-preview-bar {
    height: 120px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.track-mini-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-location {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.card-difficulty {
    font-size: 12px;
    color: #CF4B3C;
    margin-bottom: 8px;
}

.card-description {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
}

.select-confirm-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;
}

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

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