/* =========================
   TEAMS – COMING SOON
========================= */

.coming-soon-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.coming-soon-page h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  letter-spacing: 3px;
  margin-top: 20px;
}

.coming-soon-page h2 {
  font-size: 24px;
  opacity: 0.6;
  letter-spacing: 2px;
}

/*
TEAM STATS CSS

=========================
   TEAMS PAGE
=========================

.teams-page {
  width: min(1200px, 92%);
  margin: 80px auto;
}

.teams-header {
  margin-bottom: 50px;
}

.teams-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: 1.5px;
}

.teams-header p {
  opacity: 0.7;
}

.team-block {
  margin-bottom: 60px;
}

.team-header {
  margin-bottom: 14px;
}

.team-name {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 26px;
  color: #f7f5f2;
  border-bottom: 2px solid rgba(255,255,255,0.15);
  padding-bottom: 8px;
}

.team-color-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.team-color-badge.red { background: #c1121f; }
.team-color-badge.blue { background: #1d4ed8; }
.team-color-badge.green { background: #15803d; }
.team-color-badge.yellow { background: #ca8a04; }
.team-color-badge.black { background: #111; }
.team-color-badge.white { background: #aaa; color: #111; }
.team-color-badge.orange { background: #ea580c; }
.team-color-badge.purple { background: #7c3aed; }

.team-table-wrapper {
  overflow-x: auto;
}

.team-table {
  width: 100%;
  border-collapse: collapse;
  background: #1e2023;
  border-radius: 12px;
  overflow: hidden;
}

.team-table thead {
  background: rgba(255,255,255,0.05);
}

.team-table th,
.team-table td {
  padding: 14px 16px;
  text-align: left;
}

.team-table th {
  font-size: 14px;
  opacity: 0.85;
}

.team-table td {
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 15px;
}

.team-table tbody tr:hover {
  background: rgba(255,255,255,0.04);
}

th.sortable {
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

th.sortable:hover {
  opacity: 1;
}

.empty-row {
  text-align: center;
  opacity: 0.6;
}
*/

/* ======================================
   TEAMS – MOBILE
====================================== */

@media (max-width: 900px) {

  /* ===== COMING SOON ===== */

  .coming-soon-page {
    justify-content: flex-start;
    padding: 60px 16px;
    min-height: auto;
  }

  .coming-soon-page h1 {
    font-size: 36px;
    letter-spacing: 2px;
  }

  .coming-soon-page h2 {
    font-size: 18px;
  }

  /* ===== TEAMS PAGE ===== */

  .teams-page {
    width: 92%;
    margin: 60px auto;
  }

  .teams-header h1 {
    font-size: 32px;
  }

  .teams-header p {
    font-size: 15px;
  }

  .team-name {
    flex-wrap: wrap;
    font-size: 20px;
  }

  .team-color-badge {
    font-size: 12px;
    padding: 4px 10px;
  }

  /* Table adjustments */
  .team-table th,
  .team-table td {
    padding: 10px 12px;
    font-size: 14px;
  }

}