/* =====================================================
   SORTEIEAQUI - TEAM SORT PREMIUM STYLES
   ===================================================== */

.times-layout {
  max-width: 900px;
  margin: 0 auto;
}

.times-panel {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: 32px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.players-input {
  width: 100%;
  height: 250px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 20px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  resize: vertical;
  transition: all 0.3s ease;
}

.players-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(227, 6, 19, 0.1);
}

.teams-qty-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 15px 20px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}

/* Result Cards */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.team-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 24px;
  animation: fadeInUp 0.5s ease backwards;
}

.team-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.team-header .team-icon {
  width: 32px;
  height: 32px;
  background: var(--premium-gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  color: #fff;
}

.team-header h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
}

.player-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.player-item {
  font-size: 15px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.player-item::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.5;
}
