/* eSports — neón sobre carbón */
@import url("https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;600;700&display=swap");

body.page-esports {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Chakra Petch", system-ui, sans-serif;
  background: #050508;
  color: #f8fafc;
}

.page-esports main {
  flex: 1;
}

.es-banner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 48px 24px 40px;
  background: #050508;
}
.es-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 8, 0.97) 0%, rgba(5, 5, 8, 0.5) 55%, transparent 100%),
    url("images/photo-1543973277-5020ef836640.jpeg") center/cover no-repeat;
  z-index: 0;
}
.es-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.es-banner h1 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 0 40px rgba(34, 211, 238, 0.45);
}
.es-banner p {
  margin: 0;
  max-width: 480px;
  color: #94a3b8;
  line-height: 1.65;
  font-size: 1.02rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(34, 211, 238, 0.25);
  border-top: 1px solid rgba(34, 211, 238, 0.35);
}
@media (max-width: 720px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stat {
  background: #0a0a0f;
  padding: 28px 20px;
  text-align: center;
}
.stat strong {
  display: block;
  font-size: 1.85rem;
  color: #22d3ee;
  font-weight: 700;
}
.stat span {
  font-size: 0.8rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.es-grid {
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 20px 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 700px) {
  .es-grid {
    grid-template-columns: 1fr;
  }
}
.es-card {
  border-radius: 16px;
  border: 1px solid rgba(34, 211, 238, 0.2);
  overflow: hidden;
  background: #0f1018;
}
.es-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.es-card .pad {
  padding: 18px 20px 22px;
}
.es-card h2 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #e2e8f0;
}
.es-card p {
  margin: 0;
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.55;
}
