@font-face {
  font-family: "Tannenberg";
  src: url("/fonts/tannenberg.bold.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "grobe-deutschmeister";
  src: url("/fonts/grobe-deutschmeister.regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "inder";
  src: url("/fonts/inder.regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: rgb(31, 31, 34);
  --bg-header: rgb(24, 24, 27);
  --panel: rgb(38, 38, 42);

  --text: rgb(200, 196, 183);
  --muted: rgba(200, 196, 183, 0.62);

  --red-wine: rgb(191, 55, 55);
  --red-dark: rgb(92, 24, 28);

  --border: rgba(200, 196, 183, 0.16);
  --shadow: rgba(0, 0, 0, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  min-height: 100svh;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  width: 100%;
  flex-shrink: 0;
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px var(--shadow);
  z-index: 20;
}

.top-line {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo-area {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-area img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.55));
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.nav-link {
  position: relative;
  padding: 10px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: var(--red-wine);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

main {
  flex: 1;
  width: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 72px;
}

.kicker {
  margin-bottom: 18px;
  color: var(--red-wine);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(58px, 8vw, 108px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero-text {
  max-width: 520px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.motto {
  margin-bottom: 34px;
  color: var(--text);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.18em;
  font-family: "grobe-deutschmeister", "Oswald", Arial, sans-serif;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  min-width: 150px;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red-wine);
  color: var(--text);
  background: transparent;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.btn:hover {
  background: var(--red-wine);
  color: var(--bg);
}

.btn.secondary {
  border-color: var(--border);
  color: var(--muted);
}

.btn.secondary:hover {
  border-color: var(--red-wine);
  color: var(--bg);
}

.btn.discord-btn {
  display: none;
}

.btn.discord-btn.visible {
  display: inline-flex;
}

.status-card {
  width: 100%;
  background: transparent;
  border: none;
  box-shadow: none;
}

.status-title {
  margin-bottom: 8px;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-subtitle {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.status-item {
  border-top: 1px solid var(--red-wine);
  padding-top: 16px;
}

.status-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.status-item strong {
  display: block;
  color: var(--text);
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
}

.online-label::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: rgb(65, 180, 90);
  box-shadow: 0 0 10px rgba(65, 180, 90, 0.85);
  vertical-align: middle;
}

.inner-page {
  flex: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 38px 24px;
  display: flex;
}

.blank-panel {
  flex: 1;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 520px;
}

.blank-panel::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 28px;
  width: 70px;
  height: 2px;
  background: var(--red-wine);
  opacity: 0.85;
}

.page-content {
  width: 100%;
  max-width: 860px;
  padding: 72px 24px;
}

.page-title {
  margin-bottom: 22px;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(44px, 8vw, 88px);
  line-height: 0.9;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-text {
  max-width: 640px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

footer {
  flex-shrink: 0;
  padding: 14px 24px;
  background: var(--bg-header);
  border-top: 1px solid var(--border);
  color: var(--muted);
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-family: "inder", "Inter", Arial, sans-serif;
}

.twitter {
  color: rgb(217, 192, 104);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: flex-start;
  }

  .status-card {
    max-width: 520px;
  }

  nav {
    gap: 18px;
  }
}

@media (max-width: 640px) {
  header {
    position: relative;
  }

  .top-line {
    padding: 10px 0 8px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .logo-area {
    width: 100%;
    justify-content: center;
    padding: 0 16px;
  }

  .logo-area img {
    width: 56px;
    height: 56px;
  }

  nav {
    width: 100%;
    padding: 0 14px 7px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
  }

  nav::-webkit-scrollbar {
    height: 4px;
  }

  nav::-webkit-scrollbar-thumb {
    background: rgba(200, 196, 183, 0.35);
    border-radius: 20px;
  }

  .nav-link {
    flex: 0 0 auto;
    padding: 8px 0;
    font-size: 11px;
  }

  .hero {
    padding: 36px 20px;
    gap: 40px;
  }

  .kicker {
    font-size: 11px;
    line-height: 1.6;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero-text {
    font-size: 15px;
  }

  .motto {
    font-size: 18px;
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .status-title {
    font-size: 34px;
  }

  .status-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .status-item strong {
    font-size: 54px;
  }

  .inner-page {
    padding: 30px 20px;
    min-height: 430px;
  }

  .blank-panel {
    min-height: 360px;
  }

  .blank-panel::before {
    left: 20px;
    top: 20px;
    width: 50px;
  }

  .page-content {
    padding: 54px 18px;
  }

  footer {
    padding: 12px 18px;
    font-size: 10px;
    line-height: 1.5;
  }
}










/* ================================
   PLAYERS PAGE
================================ */

.players-page {
  --ob-red: var(--red, rgb(168, 45, 45));

  flex: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 46px 24px 64px;
}

.players-header {
  width: 100%;
  max-width: 900px;
  margin-bottom: 36px;
}

.players-header .page-title {
  margin-bottom: 18px;
}

.players-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.018);
}

.players-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

.players-table thead {
  background: rgb(24, 24, 27);
}

.players-table th {
  padding: 18px 10px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  border-right: 1px solid rgba(200, 196, 183, 0.10);
  border-bottom: 1px solid var(--accent);
}

.players-table th:first-child {
  text-align: center;
}

.players-table th:last-child {
  border-right: none;
}

.players-table td {
  padding: 17px 10px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  border-right: 1px solid rgba(200, 196, 183, 0.08);
  border-bottom: 1px solid rgba(200, 196, 183, 0.10);
  vertical-align: middle;
}

.players-table td:first-child {
  text-align: center;
  font-weight: 900;
  color: rgb(230, 225, 210);
}

.players-table td:last-child {
  border-right: none;
}

.players-table tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.030);
}

.players-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.010);
}

.players-table tbody tr:hover {
  background: rgba(255, 196, 33, 0.06);
}

.players-table tbody tr:last-child td {
  border-bottom: none;
}

/* CABEÇALHO ORDENÁVEL */

.table-head-link {
  display: block;
  width: 100%;
  color: var(--accent);
  text-decoration: none;
}

.table-head-link:hover,
.table-head-link.active-sort {
  color: var(--text);
}

/* PLAYER + AVATAR STEAM */

.player-profile-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  max-width: 100%;
  color: rgb(230, 225, 210);
  text-decoration: none;
  text-align: center;
}

.player-profile-link:hover {
  color: var(--accent);
}

.steam-avatar,
.steam-avatar-fallback {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
}

.steam-avatar {
  display: block;
  object-fit: cover;
}

.steam-avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  background: var(--accent);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.player-name {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  color: inherit;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* DOUTRINA */

.doutrina-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--text);
  border: 1px solid rgba(200, 196, 183, 0.22);
  background: rgba(200, 196, 183, 0.05);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* MÍDIA */

.media-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  text-decoration: none;
  border: 1px solid transparent;
  overflow: hidden;
}

.media-youtube {
  color: rgb(230, 60, 55);
}

.media-twitch {
  color: rgb(165, 105, 255);
}

.media-link:hover {
  transform: translateY(-1px);
  filter: brightness(1.15);
}

.media-icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
  flex: 0 0 auto;
}

.media-icon-cut {
  fill: rgb(24, 24, 27);
}

.media-empty {
  color: rgba(200, 196, 183, 0.42);
}

/* CONQUISTA */

.achievement-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
}

.achievement-img {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.achievement-img.earned {
  filter: none;
  opacity: 1;
}

.achievement-img.locked {
  filter: grayscale(1);
  opacity: 0.32;
}

.achievement-empty {
  color: rgba(200, 196, 183, 0.42);
}

/* MOBILE - TABELA VIRA CARDS */

@media (max-width: 760px) {
  .players-page {
    padding: 34px 18px 52px;
  }

  .players-header {
    margin-bottom: 28px;
  }

  .players-table-wrap {
    border: none;
    background: transparent;
    overflow: visible;
  }

  .players-table {
    width: 100%;
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0 18px;
    table-layout: auto;
  }

  .players-table thead {
    display: none;
  }

  .players-table,
  .players-table tbody,
  .players-table tr,
  .players-table td {
    display: block;
    width: 100%;
  }

  .players-table tr {
    overflow: hidden;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.025);
  }

  .players-table tbody tr:nth-child(odd),
  .players-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.025);
  }

  .players-table td {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
  padding: 13px 15px;
  border-right: none;
  border-bottom: 1px solid rgba(200, 196, 183, 0.10);
  text-align: left;
  font-size: 14px;
}

.players-table td::before {
  content: attr(data-label);
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left;
}

  .players-table td[data-label="Player"] {
    display: block;
    padding: 14px 15px;
    background: rgb(24, 24, 27);
    color: rgb(217, 192, 104);
    font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 1px solid rgba(200, 196, 183, 0.10);
  }

  .players-table td[data-label="Player"]::before {
    display: none;
  }

  .players-table td[data-label="Player"] .player-profile-link {
    color: rgb(217, 192, 104);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    text-align: center;
  }

  .players-table td[data-label="Player"] .player-profile-link:hover {
    color: var(--accent);
  }

  .players-table td[data-label="Player"] .steam-avatar,
  .players-table td[data-label="Player"] .steam-avatar-fallback {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .players-table td[data-label="Player"] .steam-avatar-fallback {
    font-size: 13px;
  }

  .players-table td[data-label="Player"] .player-name {
    width: 100%;
    max-width: 100%;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.15;
  }

  .players-table td:last-child {
    border-bottom: none;
  }

  .doutrina-badge {
    min-width: 124px;
    padding: 7px 9px;
    font-size: 9px;
  }

  .media-link {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .media-icon {
  width: 26px;
  height: 26px;
}

  .achievement-wrap {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .achievement-img {
    width: 36px;
    height: 36px;
    border-radius: 7px;
  }
}

/* CONQUISTA */

.achievement-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.achievement-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  overflow: hidden;
}

.achievement-wrap.achievement-broken::after {
  content: "—";
  color: rgba(200, 196, 183, 0.42);
  font-size: 16px;
  font-weight: 900;
}

.achievement-img {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  font-size: 0;
  color: transparent;
}

.achievement-img.earned {
  filter: none;
  opacity: 1;
}

.achievement-img.locked {
  filter: grayscale(1);
  opacity: 0.32;
}

.achievement-empty {
  color: rgba(200, 196, 183, 0.42);
}


@media (max-width: 760px) {
  .achievement-list {
    justify-content: flex-start;
    gap: 8px;
  }

  .achievement-wrap {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .achievement-img {
    width: 36px;
    height: 36px;
    border-radius: 7px;
  }
}











/* =========================
   Página Lendas - Clean
========================= */

.lendas-list {
  display: grid;
  gap: 58px;
  margin-top: 42px;
}

/* Bloco geral da conquista */
.lenda-block {
  padding: 10px;
  border: 0;
  border-radius: 0;
  background: rgb(10, 12, 14);
  box-shadow: none;
  border-radius: 10px;
}

/* Área da conquista */
.lenda-conquista {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* Imagem da conquista */
.lenda-conquista-img-wrap {
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.lenda-conquista-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Categoria / função */
.lenda-label {
  margin-bottom: 8px;
  color: rgb(255, 196, 33);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Nome da conquista Steam */
.lenda-title {
  margin: 0 0 10px;
  color: rgb(235, 231, 218);
  font-size: 1.42rem;
  line-height: 1.22;
}

/* Descrição */
.lenda-desc {
  max-width: 680px;
  margin: 0 auto;
  color: rgb(200, 196, 183);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* Aviso de conquista não encontrada */
.lenda-warning {
  max-width: 620px;
  margin: 12px auto 0;
  color: rgba(255, 196, 33, 0.72);
  font-size: 0.82rem;
  line-height: 1.5;
}

/* Área dos players */
.lenda-players {
  margin-top: 24px;
  padding-top: 0;
  border-top: 0;
}

.lenda-players h3 {
  margin: 0 0 18px;
  color: rgba(235, 231, 218, 0.82);
  font-size: 0.78rem;
  text-align: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Grid de players */
.lenda-player-grid {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 18px 12px;
  justify-items: center;
}

/* Link do player */
.lenda-player-card {
  width: 92px;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
  text-align: center;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.lenda-player-card:hover {
  transform: translateY(-2px);
  background: transparent;
  border-color: transparent;
  opacity: 0.88;
}

/* Avatar Steam */
.lenda-player-avatar,
.lenda-player-avatar-fallback {
  width: 58px;
  height: 58px;
  display: flex;
  margin: 0 auto 8px;
  border: 0;
  border-radius: 50%;
  object-fit: cover;
  align-items: center;
  justify-content: center;
  color: rgb(31, 31, 34);
  font-size: 1.1rem;
  font-weight: 900;
  background: rgb(255, 196, 33);
  box-shadow: none;
}

/* Nome do player */
.lenda-player-name {
  display: block;
  color: rgb(235, 231, 218);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  word-break: break-word;
}

/* Quando ninguém tem a conquista */
.lenda-empty {
  margin: 0;
  color: rgba(200, 196, 183, 0.52);
  font-size: 0.88rem;
  text-align: center;
  font-style: italic;
}

/* Alertas */
.lendas-alert {
  max-width: 780px;
  margin: 24px auto 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(235, 231, 218, 0.82);
  background: transparent;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
}

.lendas-alert strong {
  color: rgb(255, 196, 33);
}

/* =========================
   Mobile
========================= */

@media (max-width: 680px) {
  .lendas-list {
    gap: 48px;
    margin-top: 34px;
  }

  .lenda-conquista {
    max-width: 100%;
  }

  .lenda-conquista-img-wrap {
    width: 78px;
    height: 78px;
    margin-bottom: 13px;
    border-radius: 12px;
  }

  .lenda-label {
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }

  .lenda-title {
    font-size: 1.12rem;
    line-height: 1.25;
  }

  .lenda-desc {
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .lenda-players {
    margin-top: 22px;
  }

  .lenda-players h3 {
    margin-bottom: 16px;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .lenda-player-grid {
    grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
    gap: 16px 8px;
  }

  .lenda-player-card {
    width: 72px;
  }

  .lenda-player-avatar,
  .lenda-player-avatar-fallback {
    width: 48px;
    height: 48px;
    margin-bottom: 7px;
    font-size: 0.95rem;
  }

  .lenda-player-name {
    font-size: 0.7rem;
    line-height: 1.2;
  }
}

/* Mobile muito pequeno */
@media (max-width: 390px) {
  .lenda-player-grid {
    grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
    gap: 15px 6px;
  }

  .lenda-player-card {
    width: 64px;
  }

  .lenda-player-avatar,
  .lenda-player-avatar-fallback {
    width: 44px;
    height: 44px;
  }

  .lenda-player-name {
    font-size: 0.66rem;
  }
}