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

.nt-main--teams {
  padding-top: var(--nt-header-height, 78px);
}

.nt-page-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(239, 246, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #1e3a8a;
  margin-bottom: 10px;
}

.nt-page-title {
  font-size: clamp(26px, 2.6vw, 32px);
  line-height: 1.15;
  margin-bottom: 10px;
}

.nt-page-lead {
  font-size: 15px;
  color: var(--nt-text-soft);
  max-width: 560px;
}

/* Все изображения на странице 2 */
.nt-main--teams .nt-img {
  display: block;
  width: 100%;
  max-width: 350px; /* лимит по ТЗ */
  height: auto;
  border-radius: 18px;
}

/* =========================
   SECTION 1 — TEAMS HERO
   ========================= */

.nt-teams-hero-shell {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: center;
}

.nt-teams-hero-pills {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nt-teams-pill {
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(248, 250, 252, 0.96);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  transition: background var(--nt-transition-fast),
    border-color var(--nt-transition-fast), transform var(--nt-transition-fast);
}

.nt-teams-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(59, 130, 246, 0.9);
}

.nt-teams-pill--active {
  background: linear-gradient(
      120deg,
      rgba(56, 189, 248, 0.16),
      rgba(129, 140, 248, 0.22)
    ),
    #0f172a;
  color: #e5e7eb;
  border-color: rgba(129, 140, 248, 0.95);
}

.nt-teams-hero-media {
  display: grid;
  gap: 12px;
  justify-items: flex-end;
}

.nt-teams-hero-card {
  margin: 0;
  padding: 10px;
  border-radius: 22px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.85);
  box-shadow: 0 18px 45px rgba(148, 163, 184, 0.45);
}

.nt-teams-hero-card--mini {
  max-width: 260px;
  justify-self: flex-start;
}

.nt-teams-hero-caption {
  margin-top: 6px;
  font-size: 12px;
  color: var(--nt-text-muted);
}

/* =========================
   SECTION 2 — ROSTER OVERVIEW
   ========================= */

.nt-rosters-shell {
  max-width: 1200px;
  margin-inline: auto;
}

.nt-section-head {
  margin-bottom: 16px;
}

.nt-rosters-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.nt-roster-card {
  margin: 0;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow: 0 12px 32px rgba(148, 163, 184, 0.35);
}

.nt-roster-card--border {
  border-style: dashed;
}

.nt-roster-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.nt-roster-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.nt-roster-tag {
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  background: rgba(187, 247, 208, 0.9);
  border: 1px solid rgba(22, 163, 74, 0.8);
  color: #064e3b;
}

.nt-roster-tag--soft {
  background: rgba(219, 234, 254, 0.9);
  border-color: rgba(59, 130, 246, 0.8);
  color: #1d4ed8;
}

.nt-roster-tag--academy {
  background: rgba(254, 249, 195, 0.9);
  border-color: rgba(234, 179, 8, 0.9);
  color: #854d0e;
}

.nt-roster-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
  font-size: 13px;
  color: var(--nt-text-soft);
}

/* =========================
   SECTION 3 — MATCH CENTER
   ========================= */

.nt-matches-shell {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: center;
}

.nt-matches-left {
  min-width: 0;
}

.nt-matches-list {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(203, 213, 225, 0.9);
}

.nt-match-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  padding: 4px 0;
}

.nt-match-row + .nt-match-row {
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  margin-top: 4px;
  padding-top: 8px;
}

.nt-match-game {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: #1e3a8a;
}

.nt-match-teams {
  font-weight: 500;
  color: var(--nt-text-main);
}

.nt-match-time {
  font-size: 11px;
  color: var(--nt-text-muted);
}

.nt-matches-right {
  display: flex;
  justify-content: flex-end;
}

.nt-matches-board {
  margin: 0;
  padding: 10px;
  border-radius: 22px;
  background: radial-gradient(
      circle at 0 0,
      rgba(56, 189, 248, 0.24),
      transparent 60%
    ),
    rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(129, 140, 248, 0.9);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.95);
}

.nt-matches-caption {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(226, 232, 240, 0.9);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1024px) {
  .nt-teams-hero-shell,
  .nt-matches-shell {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }

  .nt-rosters-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nt-teams-hero-shell,
  .nt-matches-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .nt-teams-hero-media,
  .nt-matches-right {
    margin-top: 16px;
    justify-content: flex-start;
    justify-items: flex-start;
  }

  .nt-rosters-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .nt-match-row {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 2px;
  }

  .nt-matches-board .nt-img {
    max-width: 300px;
  }

  .nt-teams-hero-card--mini {
    max-width: 220px;
  }
}
/* =========================
   SECTION 4 — CS2 ROSTER DETAIL
   ========================= */

.nt-cs2-shell {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: center;
}

.nt-cs2-roles {
  margin-top: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
}

.nt-cs2-role {
  padding: 8px 10px;
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(203, 213, 225, 0.9);
  font-size: 13px;
}

.nt-cs2-role-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #1e3a8a;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.nt-cs2-role-text {
  display: block;
  color: var(--nt-text-soft);
}

.nt-cs2-media {
  display: grid;
  gap: 12px;
  justify-items: flex-end;
}

.nt-cs2-photo {
  margin: 0;
  padding: 8px 9px 10px;
  border-radius: 20px;
  background: radial-gradient(
      circle at 0 0,
      rgba(56, 189, 248, 0.2),
      transparent 55%
    ),
    rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(129, 140, 248, 0.9);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.95);
  transition: transform var(--nt-transition-fast),
    box-shadow var(--nt-transition-fast);
}

.nt-cs2-photo--main {
  justify-self: flex-end;
}

.nt-cs2-photo--room {
  max-width: 260px;
  justify-self: flex-start;
}

.nt-cs2-photo:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.98);
}

.nt-cs2-caption {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(226, 232, 240, 0.9);
}

/* =========================
   SECTION 5 — VALORANT SQUAD
   ========================= */

.nt-valorant-shell {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 26px;
  align-items: center;
}

.nt-valorant-media {
  display: grid;
  gap: 12px;
}

.nt-valorant-photo {
  margin: 0;
  padding: 8px 9px 10px;
  border-radius: 20px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow: 0 18px 45px rgba(148, 163, 184, 0.45);
}

.nt-valorant-photo--small {
  max-width: 260px;
  justify-self: flex-end;
}

.nt-valorant-caption {
  margin-top: 6px;
  font-size: 12px;
  color: var(--nt-text-muted);
}

.nt-valorant-copy {
  min-width: 0;
}

.nt-valorant-roles {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.nt-valorant-role {
  padding: 7px 9px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(129, 140, 248, 0.85);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
  font-size: 13px;
}

.nt-valorant-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(191, 219, 254, 0.96);
  margin-bottom: 2px;
}

.nt-valorant-text {
  display: block;
  color: rgba(226, 232, 240, 0.96);
}

/* =========================
   SECTION 6 — EXTRA SQUADS
   ========================= */

.nt-squads-shell {
  max-width: 1200px;
  margin-inline: auto;
}

.nt-squads-head {
  margin-bottom: 16px;
}

.nt-squads-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.nt-squads-card {
  margin: 0;
  padding: 8px 9px 10px;
  border-radius: 20px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow: 0 16px 40px rgba(148, 163, 184, 0.45);
  transition: transform var(--nt-transition-fast),
    box-shadow var(--nt-transition-fast), border-color var(--nt-transition-fast);
}

.nt-squads-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(148, 163, 184, 0.55);
  border-color: rgba(59, 130, 246, 0.9);
}

.nt-squads-caption {
  margin-top: 6px;
  font-size: 12px;
  color: var(--nt-text-soft);
}
/* =========================
   SECTION 7 — MAP POOL & DRAFT
   ========================= */

.nt-map-shell {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: center;
}

.nt-map-left {
  min-width: 0;
}

.nt-map-list {
  margin-top: 16px;
  border-radius: 18px;
  border: 1px solid rgba(203, 213, 225, 0.9);
  background: rgba(248, 250, 252, 0.96);
  padding: 8px 10px;
}

.nt-map-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) auto;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  padding: 4px 0;
}

.nt-map-row + .nt-map-row {
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  margin-top: 4px;
  padding-top: 8px;
}

.nt-map-name {
  font-weight: 600;
  color: #111827;
}

.nt-map-style {
  font-size: 12px;
  color: var(--nt-text-muted);
}

.nt-map-status {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
}

.nt-map-status--pick {
  background: rgba(187, 247, 208, 0.9);
  border-color: rgba(22, 163, 74, 0.9);
  color: #14532d;
}

.nt-map-status--comfort {
  background: rgba(219, 234, 254, 0.9);
  border-color: rgba(59, 130, 246, 0.9);
  color: #1d4ed8;
}

.nt-map-status--prep {
  background: rgba(254, 249, 195, 0.9);
  border-color: rgba(234, 179, 8, 0.9);
  color: #854d0e;
}

.nt-map-status--flex {
  background: rgba(249, 250, 251, 0.96);
  border-style: dashed;
}

.nt-map-right {
  display: grid;
  gap: 12px;
  justify-items: flex-end;
}

.nt-map-card {
  margin: 0;
  padding: 8px 9px 10px;
  border-radius: 20px;
  background: radial-gradient(
      circle at 0 0,
      rgba(56, 189, 248, 0.24),
      transparent 55%
    ),
    rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(129, 140, 248, 0.9);
  box-shadow: 0 20px 52px rgba(15, 23, 42, 0.95);
}

.nt-map-card--small {
  max-width: 260px;
  justify-self: flex-start;
}

.nt-map-caption {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(226, 232, 240, 0.9);
}

/* =========================
   SECTION 8 — TEAM STATS
   ========================= */

.nt-stats-shell {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: center;
}

.nt-stats-left {
  min-width: 0;
}

.nt-stats-badges {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.nt-stats-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto auto;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  padding: 7px 9px;
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(203, 213, 225, 0.9);
}

.nt-stats-label {
  font-weight: 600;
  color: #111827;
}

.nt-stats-value {
  font-weight: 700;
  font-size: 13px;
  color: #1e3a8a;
}

.nt-stats-meta {
  font-size: 11px;
  color: var(--nt-text-muted);
}

.nt-stats-right {
  display: grid;
  gap: 12px;
  justify-items: flex-end;
}

.nt-stats-card {
  margin: 0;
  padding: 8px 9px 10px;
  border-radius: 20px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow: 0 18px 45px rgba(148, 163, 184, 0.45);
}

.nt-stats-card--small {
  max-width: 260px;
  justify-self: flex-start;
}

.nt-stats-caption {
  margin-top: 6px;
  font-size: 12px;
  color: var(--nt-text-muted);
}

/* =========================
   SECTION 9 — SCRIM & TRAINING
   ========================= */

.nt-scrims-shell {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: center;
}

.nt-scrims-left {
  min-width: 0;
}

.nt-scrims-table {
  margin-top: 16px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px dashed rgba(203, 213, 225, 0.9);
}

.nt-scrim-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) auto;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  padding: 4px 0;
}

.nt-scrim-row + .nt-scrim-row {
  border-top: 1px dashed rgba(229, 231, 235, 0.9);
  margin-top: 4px;
  padding-top: 8px;
}

.nt-scrim-day {
  font-weight: 600;
  color: #111827;
}

.nt-scrim-type {
  font-size: 13px;
  color: var(--nt-text-soft);
}

.nt-scrim-time {
  font-size: 11px;
  color: var(--nt-text-muted);
}

.nt-scrims-right {
  display: grid;
  gap: 12px;
}

.nt-scrims-card {
  margin: 0;
  padding: 8px 9px 10px;
  border-radius: 20px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow: 0 16px 42px rgba(148, 163, 184, 0.45);
}

.nt-scrims-caption {
  margin-top: 6px;
  font-size: 12px;
  color: var(--nt-text-soft);
}
@media (max-width: 1024px) {
  .nt-teams-hero-shell,
  .nt-matches-shell,
  .nt-cs2-shell,
  .nt-valorant-shell,
  .nt-stats-shell,
  .nt-scrims-shell {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }

  .nt-rosters-grid,
  .nt-squads-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nt-teams-hero-shell,
  .nt-matches-shell,
  .nt-cs2-shell,
  .nt-valorant-shell,
  .nt-map-shell,
  .nt-stats-shell,
  .nt-scrims-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .nt-teams-hero-media,
  .nt-matches-right,
  .nt-cs2-media,
  .nt-valorant-media,
  .nt-map-right,
  .nt-stats-right,
  .nt-scrims-right {
    margin-top: 16px;
    justify-content: flex-start;
    justify-items: flex-start;
  }

  .nt-rosters-grid,
  .nt-squads-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .nt-match-row {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 2px;
  }

  .nt-rosters-grid,
  .nt-squads-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .nt-cs2-roles {
    grid-template-columns: minmax(0, 1fr);
  }

  .nt-map-row,
  .nt-stats-row,
  .nt-scrim-row {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 2px;
  }

  .nt-map-card--small,
  .nt-stats-card--small {
    justify-self: flex-start;
  }

  .nt-scrims-card {
    /* три фото идут столбиком, уже по одной колонке */
  }

  .nt-matches-board .nt-img {
    max-width: 300px;
  }

  .nt-teams-hero-card--mini {
    max-width: 220px;
  }
}
/* =========================
   SECTION 10 — BROADCAST CREW
   ========================= */

.nt-broadcast-shell {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: center;
}

.nt-broadcast-left {
  min-width: 0;
}

.nt-broadcast-roles {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.nt-broadcast-role {
  padding: 8px 10px;
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(203, 213, 225, 0.9);
  font-size: 13px;
}

.nt-broadcast-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 2px;
}

.nt-broadcast-text {
  display: block;
  color: var(--nt-text-soft);
}

.nt-broadcast-right {
  display: grid;
  gap: 12px;
  justify-items: flex-end;
}

.nt-broadcast-card {
  margin: 0;
  padding: 8px 9px 10px;
  border-radius: 20px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow: 0 18px 45px rgba(148, 163, 184, 0.45);
}

.nt-broadcast-card--main {
  justify-self: flex-end;
}

.nt-broadcast-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 350px;
}

.nt-broadcast-caption {
  margin-top: 6px;
  font-size: 12px;
  color: var(--nt-text-muted);
}

/* =========================
   SECTION 11 — TOURNAMENT HISTORY
   ========================= */

.nt-history-shell {
  max-width: 1200px;
  margin-inline: auto;
}

.nt-history-head {
  margin-bottom: 16px;
}

.nt-history-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: center;
}

.nt-history-timeline {
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(203, 213, 225, 0.9);
  background: rgba(248, 250, 252, 0.96);
}

.nt-history-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  padding: 4px 0;
}

.nt-history-row + .nt-history-row {
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  margin-top: 4px;
  padding-top: 8px;
}

.nt-history-season {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1e3a8a;
  font-weight: 600;
}

.nt-history-event {
  color: var(--nt-text-main);
}

.nt-history-result {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(219, 234, 254, 0.9);
  border: 1px solid rgba(59, 130, 246, 0.9);
  color: #1d4ed8;
}

.nt-history-media {
  display: grid;
  gap: 12px;
  justify-items: flex-end;
}

.nt-history-card {
  margin: 0;
  padding: 8px 9px 10px;
  border-radius: 20px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow: 0 18px 45px rgba(148, 163, 184, 0.45);
}

.nt-history-card--small {
  max-width: 260px;
  justify-self: flex-start;
}

.nt-history-caption {
  margin-top: 6px;
  font-size: 12px;
  color: var(--nt-text-muted);
}

/* =========================
   SECTION 12 — LAN & ONLINE MODES
   ========================= */

.nt-modes-shell {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: center;
}

.nt-modes-left {
  min-width: 0;
}

.nt-modes-matrix {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.nt-modes-cell {
  padding: 8px 10px;
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(203, 213, 225, 0.9);
  font-size: 13px;
}

.nt-modes-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 2px;
}

.nt-modes-text {
  display: block;
  color: var(--nt-text-soft);
}

.nt-modes-right {
  display: grid;
  gap: 10px;
}

.nt-modes-card {
  margin: 0;
  padding: 8px 9px 10px;
  border-radius: 20px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow: 0 18px 45px rgba(148, 163, 184, 0.45);
}

.nt-modes-caption {
  margin-top: 6px;
  font-size: 12px;
  color: var(--nt-text-soft);
}
@media (max-width: 1024px) {
  .nt-teams-hero-shell,
  .nt-matches-shell,
  .nt-cs2-shell,
  .nt-valorant-shell,
  .nt-map-shell,
  .nt-stats-shell,
  .nt-scrims-shell,
  .nt-broadcast-shell,
  .nt-history-grid,
  .nt-modes-shell {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }

  .nt-rosters-grid,
  .nt-squads-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nt-teams-hero-shell,
  .nt-matches-shell,
  .nt-cs2-shell,
  .nt-valorant-shell,
  .nt-map-shell,
  .nt-stats-shell,
  .nt-scrims-shell,
  .nt-broadcast-shell,
  .nt-history-grid,
  .nt-modes-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .nt-teams-hero-media,
  .nt-matches-right,
  .nt-cs2-media,
  .nt-valorant-media,
  .nt-map-right,
  .nt-stats-right,
  .nt-scrims-right,
  .nt-broadcast-right,
  .nt-history-media,
  .nt-modes-right {
    margin-top: 16px;
    justify-content: flex-start;
    justify-items: flex-start;
  }

  .nt-rosters-grid,
  .nt-squads-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .nt-match-row,
  .nt-map-row,
  .nt-stats-row,
  .nt-scrim-row,
  .nt-history-row {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 2px;
  }

  .nt-rosters-grid,
  .nt-squads-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .nt-cs2-roles {
    grid-template-columns: minmax(0, 1fr);
  }

  .nt-map-card--small,
  .nt-stats-card--small,
  .nt-history-card--small {
    justify-self: flex-start;
  }

  .nt-broadcast-thumbs {
    grid-template-columns: minmax(0, 1fr);
  }

  .nt-modes-right {
    gap: 8px;
  }

  .nt-matches-board .nt-img {
    max-width: 300px;
  }

  .nt-teams-hero-card--mini {
    max-width: 220px;
  }
}
/* =========================
   SECTION 13 — TEAM COMMS
   ========================= */

.nt-comms-shell {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: center;
}

.nt-comms-left {
  min-width: 0;
}

.nt-comms-lines {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.nt-comms-line {
  padding: 8px 10px;
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px dashed rgba(203, 213, 225, 0.9);
  font-size: 13px;
}

.nt-comms-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #1e3a8a;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.nt-comms-text {
  display: block;
  color: var(--nt-text-soft);
}

.nt-comms-right {
  display: grid;
  gap: 10px;
  justify-items: flex-end;
}

.nt-comms-card {
  margin: 0;
  padding: 8px 9px 10px;
  border-radius: 20px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow: 0 18px 45px rgba(148, 163, 184, 0.45);
}

.nt-comms-card--main {
  justify-self: flex-end;
}

.nt-comms-card--small {
  max-width: 260px;
  justify-self: flex-start;
}

.nt-comms-caption {
  margin-top: 6px;
  font-size: 12px;
  color: var(--nt-text-muted);
}

/* =========================
   SECTION 14 — SCOUTING & VOD
   ========================= */

.nt-scout-shell {
  max-width: 1200px;
  margin-inline: auto;
}

.nt-scout-head {
  margin-bottom: 16px;
}

.nt-scout-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.nt-scout-card {
  border-radius: 20px;
  padding: 8px 9px 10px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow: 0 16px 40px rgba(148, 163, 184, 0.45);
  display: grid;
  gap: 6px;
}

.nt-scout-figure {
  margin: 0;
}

.nt-scout-body {
  font-size: 13px;
}

.nt-scout-title {
  margin: 0 0 2px;
  font-size: 13px;
  font-weight: 600;
}

.nt-scout-text {
  margin: 0;
  color: var(--nt-text-soft);
}

/* =========================
   SECTION 15 — PLAYER ROUTINE
   ========================= */

.nt-routine-shell {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: center;
}

.nt-routine-left {
  min-width: 0;
}

.nt-routine-list {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.nt-routine-item {
  padding: 8px 10px;
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(203, 213, 225, 0.9);
  font-size: 13px;
}

.nt-routine-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 2px;
}

.nt-routine-text {
  display: block;
  color: var(--nt-text-soft);
}

.nt-routine-right {
  display: grid;
  gap: 10px;
}

.nt-routine-card {
  margin: 0;
  padding: 8px 9px 10px;
  border-radius: 20px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow: 0 16px 40px rgba(148, 163, 184, 0.45);
}

.nt-routine-caption {
  margin-top: 6px;
  font-size: 12px;
  color: var(--nt-text-soft);
}
@media (max-width: 1024px) {
  .nt-teams-hero-shell,
  .nt-matches-shell,
  .nt-cs2-shell,
  .nt-valorant-shell,
  .nt-map-shell,
  .nt-stats-shell,
  .nt-scrims-shell,
  .nt-broadcast-shell,
  .nt-history-grid,
  .nt-modes-shell,
  .nt-comms-shell,
  .nt-routine-shell {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }

  .nt-rosters-grid,
  .nt-squads-grid,
  .nt-scout-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nt-teams-hero-shell,
  .nt-matches-shell,
  .nt-cs2-shell,
  .nt-valorant-shell,
  .nt-map-shell,
  .nt-stats-shell,
  .nt-scrims-shell,
  .nt-broadcast-shell,
  .nt-history-grid,
  .nt-modes-shell,
  .nt-comms-shell,
  .nt-routine-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .nt-teams-hero-media,
  .nt-matches-right,
  .nt-cs2-media,
  .nt-valorant-media,
  .nt-map-right,
  .nt-stats-right,
  .nt-scrims-right,
  .nt-broadcast-right,
  .nt-history-media,
  .nt-modes-right,
  .nt-comms-right,
  .nt-routine-right {
    margin-top: 16px;
    justify-content: flex-start;
    justify-items: flex-start;
  }

  .nt-rosters-grid,
  .nt-squads-grid,
  .nt-scout-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .nt-match-row,
  .nt-map-row,
  .nt-stats-row,
  .nt-scrim-row,
  .nt-history-row {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 2px;
  }

  .nt-rosters-grid,
  .nt-squads-grid,
  .nt-scout-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .nt-cs2-roles {
    grid-template-columns: minmax(0, 1fr);
  }

  .nt-map-card--small,
  .nt-stats-card--small,
  .nt-history-card--small {
    justify-self: flex-start;
  }

  .nt-broadcast-thumbs {
    grid-template-columns: minmax(0, 1fr);
  }

  .nt-modes-right {
    gap: 8px;
  }

  .nt-matches-board .nt-img {
    max-width: 300px;
  }

  .nt-teams-hero-card--mini {
    max-width: 220px;
  }
}
/* =========================
   SECTION 16 — COMMUNITY & FAN ZONE
   ========================= */

.nt-community-shell {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: center;
}

.nt-community-left {
  min-width: 0;
}

.nt-community-chips {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.nt-community-chip {
  padding: 8px 10px;
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(203, 213, 225, 0.9);
  font-size: 13px;
}

.nt-community-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 2px;
}

.nt-community-text {
  display: block;
  color: var(--nt-text-soft);
}

.nt-community-right {
  display: grid;
  gap: 12px;
  justify-items: flex-end;
}

.nt-community-card {
  margin: 0;
  padding: 8px 9px 10px;
  border-radius: 20px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow: 0 18px 45px rgba(148, 163, 184, 0.45);
}

.nt-community-card--main {
  justify-self: flex-end;
}

.nt-community-mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 350px;
}

.nt-community-card--small {
  max-width: 260px;
  justify-self: flex-start;
}

.nt-community-caption {
  margin-top: 6px;
  font-size: 12px;
  color: var(--nt-text-muted);
}

/* =========================
   SECTION 17 — JOIN NEONTIDE SYSTEM
   ========================= */

.nt-join-shell {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: center;
}

.nt-join-left {
  min-width: 0;
}

.nt-join-columns {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.nt-join-column {
  padding: 8px 10px;
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(203, 213, 225, 0.9);
  font-size: 13px;
}

.nt-join-title {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 600;
}

.nt-join-list {
  margin: 0;
  padding-left: 16px;
  font-size: 13px;
  color: var(--nt-text-soft);
}

.nt-join-right {
  display: grid;
  gap: 10px;
}

.nt-join-card {
  margin: 0;
  padding: 8px 9px 10px;
  border-radius: 20px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow: 0 18px 45px rgba(148, 163, 184, 0.45);
}

.nt-join-caption {
  margin-top: 6px;
  font-size: 12px;
  color: var(--nt-text-soft);
}
@media (max-width: 1024px) {
  .nt-teams-hero-shell,
  .nt-matches-shell,
  .nt-cs2-shell,
  .nt-valorant-shell,
  .nt-map-shell,
  .nt-stats-shell,
  .nt-scrims-shell,
  .nt-broadcast-shell,
  .nt-history-grid,
  .nt-modes-shell,
  .nt-comms-shell,
  .nt-routine-shell,
  .nt-community-shell,
  .nt-join-shell {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }

  .nt-rosters-grid,
  .nt-squads-grid,
  .nt-scout-grid,
  .nt-join-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nt-teams-hero-shell,
  .nt-matches-shell,
  .nt-cs2-shell,
  .nt-valorant-shell,
  .nt-map-shell,
  .nt-stats-shell,
  .nt-scrims-shell,
  .nt-broadcast-shell,
  .nt-history-grid,
  .nt-modes-shell,
  .nt-comms-shell,
  .nt-routine-shell,
  .nt-community-shell,
  .nt-join-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .nt-teams-hero-media,
  .nt-matches-right,
  .nt-cs2-media,
  .nt-valorant-media,
  .nt-map-right,
  .nt-stats-right,
  .nt-scrims-right,
  .nt-broadcast-right,
  .nt-history-media,
  .nt-modes-right,
  .nt-comms-right,
  .nt-routine-right,
  .nt-community-right,
  .nt-join-right {
    margin-top: 16px;
    justify-content: flex-start;
    justify-items: flex-start;
  }

  .nt-rosters-grid,
  .nt-squads-grid,
  .nt-scout-grid,
  .nt-join-columns {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .nt-match-row,
  .nt-map-row,
  .nt-stats-row,
  .nt-scrim-row,
  .nt-history-row {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 2px;
  }

  .nt-rosters-grid,
  .nt-squads-grid,
  .nt-scout-grid,
  .nt-join-columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .nt-cs2-roles {
    grid-template-columns: minmax(0, 1fr);
  }

  .nt-map-card--small,
  .nt-stats-card--small,
  .nt-history-card--small {
    justify-self: flex-start;
  }

  .nt-broadcast-thumbs,
  .nt-community-mini {
    grid-template-columns: minmax(0, 1fr);
  }

  .nt-modes-right {
    gap: 8px;
  }

  .nt-matches-board .nt-img {
    max-width: 300px;
  }

  .nt-teams-hero-card--mini {
    max-width: 220px;
  }
}
