/* ===== APP: MINI SOCCER ===== */
.soccer-title { font-size: 24px; font-weight: 700; margin-bottom: 6px; color: var(--text-primary); }
.soccer-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.soccer-info { font-size: 13px; color: #ff4757; margin-bottom: 12px; }

.soccer-controls-info {
  margin-top: 20px; padding: 12px 16px; border-radius: 8px;
  background: var(--bg-secondary); font-size: 12px; color: var(--text-muted);
  line-height: 1.7; text-align: left;
}

.soccer-lobby-list { display: flex; flex-direction: column; gap: 6px; margin: 12px 0; }
.soccer-lobby-player {
  padding: 6px 14px; border-radius: 6px; background: var(--bg-secondary);
  font-size: 14px; color: var(--text-primary);
}

.soccer-spinner {
  width: 28px; height: 28px; border: 3px solid var(--bg-hover);
  border-top-color: var(--accent); border-radius: 50%;
  animation: soccer-spin 0.8s linear infinite; margin: 8px auto;
}
@keyframes soccer-spin { to { transform: rotate(360deg); } }

.soccer-game-wrap {
  display: flex; align-items: center; justify-content: center;
  height: 100%; background: #1a3a1a; padding: 4px; overflow: hidden;
}
#soccer-canvas { border-radius: 6px; display: block; box-shadow: 0 4px 24px rgba(0,0,0,0.5); }

.soccer-scoreboard {
  font-size: 18px; font-weight: 600; margin: 12px 0;
  display: flex; gap: 12px; justify-content: center;
}
