/* ================= MOBILE TEAM (SCOPED) ================= */

.ts-mobile-team .ts-team-grid-mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    align-items: stretch;
}

.ts-mobile-team .ts-team-card-mobile {
    background: #fff;
    border-radius: 12px;
    height: 100%;
    padding: 12px;
    position: relative;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100px;
    transition: all 0.2s ease;
}

.ts-mobile-team .ts-team-card-mobile.fav {
    border: 2px solid #ffc107;
    box-shadow: 0 6px 16px rgba(255, 193, 7, 0.25);
    background: linear-gradient(180deg, #fffdf5 0%, #ffffff 100%);
}

.ts-mobile-team .ts-team-card-mobile.fav::after {
    content: "⭐";
    position: absolute;
    top: 6px;
    right: 8px;
    font-size: 14px;
}

.ts-mobile-team .ts-team-card-mobile div {
    font-size: 0.85rem;
    line-height: 1.2;
}

.ts-mobile-team .ts-team-card-mobile:active {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 10px 22px rgba(0,0,0,0.15);
}

.ts-mobile-team .ts-player-card-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 8px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 3px 8px rgba(0,0,0,0.06);
}

.ts-mobile-team .ts-player-card-mobile.captain {
    border: 1px solid rgba(255, 193, 7, 0.6);
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.25);
}

.ts-mobile-team .ts-player-avatar {
    width: 56px;
    height: 56px;
    min-width: 56px;

    border-radius: 50%;
    background: #eef2f7;

    display: flex;
    align-items: center;
    justify-content: center;
}

.ts-mobile-team .ts-player-avatar img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.ts-mobile-team .ts-player-avatar.empty {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #eef2f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ts-mobile-team .ts-player-info {
    flex: 1;
}

.ts-mobile-team .ts-player-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.ts-mobile-team .ts-player-stats {
    display: flex;
    gap: 8px;
    font-size: 0.75rem;
}

.ts-mobile-team .ts-player-number {
    opacity: 0.25;
    font-size: 1.3rem;
}

.ts-mobile-team .ts-pos-title {
    font-weight: 600;
    margin-bottom: 8px;
}

.ts-mobile-team .ts-torjaeger-btn {
    min-width: 48px;
    height: 48px;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.ts-mobile-team .ts-captain-label {
    margin-left: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #e0a800;
}