/* ========================================
   SELECTION SCREEN - Tanlov ekrani
   ======================================== */

#selection-screen {
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.selection-header {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 50px;
}

.selection-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.selection-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.selection-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.selection-card {
    background: white;
    border-radius: 28px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.selection-card:active {
    transform: translateY(2px) scale(0.98);
}

.card-icon-large {
    font-size: 2.5rem;
    background: #f1f5f9;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.card-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.card-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Card variants */
.selection-card.accent {
    background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%);
}

.selection-card.accent .card-icon-large {
    background: #ffedd5;
}

.selection-card.taxi {
    background: linear-gradient(135deg, #ffffff 0%, #ecfdf5 100%);
}

.selection-card.taxi .card-icon-large {
    background: #d1fae5;
}

.selection-card.market {
    background: linear-gradient(135deg, #ffffff 0%, #ede9fe 100%);
}

.selection-card.market .card-icon-large {
    background: #e0e7ff;
}