/* Torneos — línea de tiempo oscura */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;500;700;800&display=swap");

body.page-torneos {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, #0f1419 0%, #1a222d 45%, #0d1117 100%);
  color: #e6edf3;
  font-family: "Outfit", system-ui, sans-serif;
}

.page-torneos main {
  flex: 1;
  padding: 40px 20px 72px;
}

.torneos-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.page-torneos h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}
.page-torneos .subtitle {
  color: #8b9cb3;
  font-size: 1.05rem;
  margin: 0 0 40px;
  max-width: 520px;
  line-height: 1.55;
}

.timeline {
  position: relative;
  padding-left: 28px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(#ff6b4a, #f472b6, #38bdf8);
  border-radius: 2px;
}

.tl-item {
  position: relative;
  padding-bottom: 36px;
}
.tl-item::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0f1419;
  border: 2px solid #ff6b4a;
  box-shadow: 0 0 0 4px rgba(255, 107, 74, 0.2);
}

.tl-date {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #f472b6;
  font-weight: 700;
}
.tl-item h2 {
  margin: 6px 0 8px;
  font-size: 1.35rem;
  font-weight: 700;
}
.tl-item p {
  margin: 0;
  color: #9fb0c8;
  line-height: 1.6;
  font-size: 0.98rem;
}

.torneos-banner {
  margin-top: 48px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.torneos-banner img {
  width: 100%;
  display: block;
  max-height: 280px;
  object-fit: cover;
}
