/* ══════════════════════════════════════════════
   WarriorLand Banlist — style.css
   Konzistentní design systém s hlavním webem WarriorLand.cz
   ══════════════════════════════════════════════ */

/* ── CSS Proměnné (WarriorLand Design System) ── */
:root {
  --bg:          #2a2a2a;
  --bg-dark:     #1a1a1a;
  --bg-card:     #212121;
  --bg-card-alt: #252525;
  --bg-elev:     #181818;
  --bg-nav:      rgba(22, 22, 22, 0.95);
  --border:      rgba(255, 255, 255, 0.06);
  --border-s:    rgba(255, 255, 255, 0.12);
  --border-red:  rgba(193, 0, 0, 0.25);
  --text:        #e8e8e8;
  --text-muted:  #888888;
  --text-dim:    #555555;
  --red:         #c10000;
  --red-hover:   #d40000;
  --red-glow:    rgba(193, 0, 0, 0.5);
  --green:       #22c55e;
  --orange:      #f97316;
  --yellow:      #facc15;
  --radius:      12px;
  --radius-sm:   8px;
  --font-body:   'Inter', sans-serif;
  --font-head:   'Bebas Neue', sans-serif;
  --transition:  0.22s ease;
}

/* ── Reset & Základ ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition);
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 3px;
}

/* ── Background Particles Canvas ── */
#particles-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .45;
}

/* ══ Navbar (WarriorLand Standard) ════════════════════════════════════ */
nav.main-nav,
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 60px;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(193, 0, 0, 0.18);
  transition: box-shadow .3s, background .3s;
}

nav.main-nav.scrolled,
.site-header.scrolled {
  background: rgba(14, 14, 14, 0.99);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.6);
}

.nav-logo,
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img,
.brand-logo {
  height: 36px !important;
  width: auto !important;
  max-height: 36px !important;
  display: block;
  filter: drop-shadow(0 0 8px rgba(193, 0, 0, 0.55));
  transition: transform .3s, filter .3s;
}

.nav-logo img:hover,
.brand-logo:hover {
  transform: scale(1.07) rotate(-2deg);
  filter: drop-shadow(0 0 16px rgba(193, 0, 0, 0.8));
}

.nav-links,
.site-nav {
  display: flex;
  gap: .15rem;
  align-items: center;
}

.nav-links a {
  color: #888;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .38rem .8rem;
  border-radius: 7px;
  position: relative;
  transition: all .2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 1.5px;
  background: var(--red);
  border-radius: 2px;
  transition: left .25s, right .25s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  left: 10%;
  right: 10%;
}

.nav-links a:hover {
  color: #e8e8e8;
  background: rgba(255, 255, 255, 0.05);
}

.nav-links a.active {
  color: #e8e8e8;
}

.nav-links a.nav-store {
  background: var(--red);
  color: #fff !important;
  border-radius: 8px !important;
  padding: .38rem 1rem !important;
  transition: all .2s !important;
}

.nav-links a.nav-store::after {
  display: none;
}

.nav-links a.nav-store:hover {
  background: var(--red-hover) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 14px rgba(193, 0, 0, 0.5) !important;
}

.nav-links a.nav-support {
  color: var(--orange) !important;
  font-weight: 700;
}

#hamburger {
  display: none;
  background: none;
  border: none;
  color: #aaa;
  font-size: 1.25rem;
  cursor: pointer;
  transition: color .2s;
  padding: .4rem;
}

#hamburger:hover {
  color: #e8e8e8;
}

/* ══ Toast ════════════════════════════════════════════════════════════ */
#toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--green);
  color: #fff;
  padding: .6rem 1.4rem;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 700;
  z-index: 9999;
  opacity: 0;
  transition: opacity .3s, transform .3s;
  pointer-events: none;
  box-shadow: 0 6px 20px rgba(0,0,0,.4);
}

#toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ══ Layout Wrapper ═══════════════════════════════════════════════════ */
.wrap {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 3.5rem 2rem 5rem;
  flex: 1;
}

/* ══ Hero Sekce & Texty ═══════════════════════════════════════════════ */
.hero {
  margin-bottom: 2.4rem;
}

.sec-label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: .6rem;
  display: block;
}

.sec-title,
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: .95;
  letter-spacing: .02em;
  color: #ffffff;
  margin-bottom: .75rem;
}

.sec-title span,
.hero h1 span {
  color: var(--red);
}

.sec-desc,
.hero p {
  font-size: .95rem;
  color: #999;
  line-height: 1.7;
  max-width: 650px;
}

/* ══ Stat Karty ═══════════════════════════════════════════════════════ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background var(--transition);
}

.stat-card:hover {
  transform: translateY(-3px);
  background: var(--bg-card-alt);
  border-color: var(--border-s);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.stat-card.is-active {
  background: #252020;
  border-color: rgba(193, 0, 0, 0.6);
  box-shadow: 0 0 24px rgba(193, 0, 0, 0.22), inset 0 0 0 1px rgba(193, 0, 0, 0.3);
}

.stat-card.is-active::before {
  background: var(--red);
}

.stat-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: .35rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.stat-value {
  font-family: var(--font-head);
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: .03em;
  color: #ffffff;
}

.stat-card.is-active .stat-value {
  color: #fff;
}

.stat-sub {
  font-size: .78rem;
  color: #ff7766;
  font-weight: 600;
  margin-top: .4rem;
  display: flex;
  align-items: center;
  gap: .35rem;
}

.stat-sub::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 6px var(--red);
}

.stat-skeleton {
  min-height: 105px;
  animation: pulse 1.4s ease-in-out infinite;
}

/* ══ Toolbar & Hledání ═════════════════════════════════════════════════ */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.1rem;
  background: var(--bg-card);
  padding: .9rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.search-wrap {
  flex: 1 1 280px;
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 1rem;
  color: #666;
  font-size: .85rem;
  pointer-events: none;
}

.toolbar .search {
  width: 100%;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .68rem 1rem .68rem 2.4rem;
  color: var(--text);
  font-family: inherit;
  font-size: .9rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.toolbar .search::placeholder {
  color: #666;
}

.toolbar .search:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(193, 0, 0, 0.22);
}

.toolbar-filters select {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: .68rem 1rem;
  font-family: inherit;
  font-size: .88rem;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition);
}

.toolbar-filters select:focus {
  border-color: var(--red);
}

.btn-red,
.btn-search {
  background: var(--red);
  color: #fff;
  border: none;
  padding: .68rem 1.6rem;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 4px 14px rgba(193, 0, 0, 0.4);
  transition: all var(--transition);
}

.btn-red:hover,
.btn-search:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(193, 0, 0, 0.6);
}

.btn-red:active,
.btn-search:active {
  transform: translateY(0);
}

.btn-clear {
  color: var(--text-muted);
  font-size: .84rem;
  font-weight: 600;
  padding: .4rem .6rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: color var(--transition);
}

.btn-clear:hover {
  color: var(--red);
}

.result-count {
  color: var(--text-muted);
  font-size: .85rem;
  margin-bottom: .9rem;
  min-height: 1.4rem;
  font-weight: 500;
}

/* ══ Tabulka Trestů ════════════════════════════════════════════════════ */
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.punish-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: .9rem;
  text-align: left;
}

.punish-table thead th {
  background: #181818;
  font-size: .73rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: #777;
  font-weight: 700;
  padding: 1.05rem 1.3rem;
  border-bottom: 1px solid var(--border);
}

.punish-table tbody td {
  padding: 1rem 1.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.035);
  vertical-align: middle;
}

.punish-table tbody tr {
  transition: background var(--transition);
}

.punish-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.025);
}

.punish-table tbody tr:last-child td {
  border-bottom: none;
}

.c-player {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.avatar {
  border-radius: 6px;
  image-rendering: pixelated;
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
  transition: transform .2s;
}

.c-player:hover .avatar {
  transform: scale(1.1);
}

.player-name {
  font-weight: 600;
  color: #ffffff;
  transition: color var(--transition);
}

a.player-name:hover {
  color: #ff8a7a;
  text-decoration: underline;
}

.c-reason {
  max-width: 320px;
  word-break: break-word;
  color: #ddd;
}

.c-staff {
  color: #ccc;
  font-weight: 500;
}

.c-date, .c-until {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  color: var(--text-muted);
  font-size: .85rem;
}

.muted {
  color: var(--text-muted);
  font-size: .82rem;
}

.perma {
  color: #ff5555;
  font-weight: 700;
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .04em;
}

.empty {
  text-align: center;
  color: var(--text-muted);
  padding: 3.5rem 1rem !important;
  font-size: .95rem;
}

.row-note td {
  padding-top: .4rem;
  padding-bottom: .8rem;
  border-top: none;
  background: rgba(0, 0, 0, 0.18);
  font-size: .82rem;
  color: #777;
}

/* ══ Badges ════════════════════════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .28rem .7rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.st-active {
  background: rgba(220, 38, 38, 0.18);
  color: #ff7766;
  border: 1px solid rgba(220, 38, 38, 0.4);
}

.st-expired {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.st-removed {
  background: rgba(249, 115, 22, 0.15);
  color: var(--orange);
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.st-neutral {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border);
}

.type-bans {
  background: rgba(193, 0, 0, 0.22);
  color: #ff7766;
  border: 1px solid rgba(193, 0, 0, 0.45);
}

.type-mutes {
  background: rgba(249, 115, 22, 0.18);
  color: #fb923c;
  border: 1px solid rgba(249, 115, 22, 0.35);
}

.type-warnings {
  background: rgba(234, 179, 8, 0.18);
  color: #facc15;
  border: 1px solid rgba(234, 179, 8, 0.35);
}

.type-kicks {
  background: rgba(59, 130, 246, 0.18);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.35);
}

/* ══ Paginace ══════════════════════════════════════════════════════════ */
.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}

.pager-nums {
  display: flex;
  gap: .35rem;
}

.pager-btn,
.pager-num {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .5rem .95rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
  cursor: pointer;
  user-select: none;
}

.pager-btn:hover:not(.disabled),
.pager-num:hover {
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 4px 12px rgba(193, 0, 0, 0.3);
}

.pager-num.is-current {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 4px 14px rgba(193, 0, 0, 0.45);
}

.pager-btn.disabled {
  opacity: .35;
  pointer-events: none;
}

.pager-ellipsis {
  color: var(--text-muted);
  padding: .5rem .4rem;
}

/* ══ Player Detail Page (player.html) ══════════════════════════════════ */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-muted);
  font-size: .86rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  transition: color var(--transition), transform var(--transition);
}

.back-link:hover {
  color: #fff;
  transform: translateX(-3px);
}

.player-hero {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 2.2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  margin-bottom: 1.5rem;
}

.player-hero-skeleton {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.avatar-lg {
  border-radius: 12px;
  image-rendering: pixelated;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(193, 0, 0, 0.3);
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.player-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: .95;
  letter-spacing: .02em;
  color: #ffffff;
  margin-bottom: .25rem;
}

.player-sub {
  font-size: .88rem;
  color: var(--text-muted);
}

/* ══ Skeleton Shimmer ══════════════════════════════════════════════════ */
.row-skeleton td {
  padding: 1.1rem 1.3rem !important;
}

.skeleton-line {
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(90deg, #232323 25%, #303030 50%, #232323 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  width: 100%;
}

.skeleton-avatar {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: linear-gradient(90deg, #232323 25%, #303030 50%, #232323 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  flex-shrink: 0;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .5; }
}

/* ══ Social Bar (WarriorLand Standard) ═════════════════════════════════ */
.soc-bar {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.soc-link {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .58rem 1.1rem;
  border-radius: 10px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: all .22s;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.soc-link:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.13);
}

.soc-link i {
  font-size: 1rem;
}

.soc-discord { color: #7289da; }
.soc-discord:hover { border-color: rgba(114, 137, 218, 0.35); box-shadow: 0 6px 18px rgba(114, 137, 218, 0.12) !important; }
.soc-yt      { color: #ff3333; }
.soc-yt:hover      { border-color: rgba(255, 0, 0, 0.35); box-shadow: 0 6px 18px rgba(255, 0, 0, 0.12) !important; }
.soc-ig      { color: #e1306c; }
.soc-ig:hover      { border-color: rgba(225, 48, 108, 0.35); box-shadow: 0 6px 18px rgba(225, 48, 108, 0.12) !important; }
.soc-tt      { color: #e8e8e8; }
.soc-tt:hover      { border-color: rgba(255, 255, 255, 0.25); }

/* ══ Footer (WarriorLand Standard 4-Col) ═══════════════════════════════ */
footer.main-footer,
.site-footer {
  background: var(--bg-dark);
  padding: 3.5rem 2rem 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
}

.fi,
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

footer img.fl,
.footer-logo {
  height: 40px !important;
  width: auto !important;
  max-height: 40px !important;
  display: block;
  filter: drop-shadow(0 0 8px rgba(193, 0, 0, 0.4));
  margin-bottom: .9rem;
  transition: filter .3s;
}

footer img.fl:hover,
.footer-logo:hover {
  filter: drop-shadow(0 0 16px rgba(193, 0, 0, 0.7));
}

.fd {
  font-size: .82rem;
  color: #555;
  line-height: 1.75;
}

footer h4 {
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: .8rem;
}

footer a.fl-link {
  display: block;
  color: #666;
  font-size: .82rem;
  margin-bottom: .38rem;
  transition: color .2s, padding-left .2s;
}

footer a.fl-link:hover {
  color: #e8e8e8;
  padding-left: 4px;
}

.fb,
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
  color: #444;
  flex-wrap: wrap;
  gap: .5rem;
}

.fb a,
.footer-bottom a {
  color: #666;
  transition: color .2s;
}

.fb a:hover,
.footer-bottom a:hover {
  color: #e8e8e8;
}

/* ══ Responsive Breakpoints ════════════════════════════════════════════ */
@media (max-width: 900px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fi {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  nav.main-nav {
    padding: 0 1.5rem;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(14, 14, 14, 0.98);
    padding: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 199;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  }
  .nav-links.open,
  .nav-links.is-open {
    display: flex;
  }
  .nav-links a {
    width: 100%;
    padding: .6rem .8rem;
  }
  .nav-links a::after {
    display: none;
  }
  #hamburger {
    display: block !important;
  }
  .wrap {
    padding: 2.2rem 1.2rem 4rem;
  }
  .fb,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .stat-grid {
    grid-template-columns: 1fr;
  }
  .fi {
    grid-template-columns: 1fr;
  }
  .player-hero {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }
}
