/* ============================================
   صفحه انتخاب تعداد بازیکنان
   ============================================ */
.screen-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 8px;
    z-index: 2;
    position: relative;
}

.screen-subtitle {
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 32px;
    z-index: 2;
    position: relative;
}

.player-count-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
    z-index: 2;
    position: relative;
}

.count-btn {
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(251, 191, 36, 0.2);
    color: #e2e8f0;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.count-btn:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.5);
    transform: translateY(-2px);
}

.count-btn:active {
    transform: scale(0.95);
}

@media (max-width: 400px) {
    .player-count-selector {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .count-btn {
        padding: 16px;
        font-size: 1.1rem;
    }
}