/* cup page styles */

.cup-banner {
  margin-bottom: var(--s5);
}

.cup-banner > h3,
.cup-round > h3 {
  margin-bottom: var(--s4);
  color: var(--text);
  font-size: var(--fs-h3);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-transform: none;
}

.cup-banner-winner {
  color: var(--gold);
  font-size: var(--fs-body);
  font-weight: 600;
}

.cup-round {
  position: relative;
  overflow: hidden;
}

.cup-round::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 30%);
}

.cup-round > * {
  position: relative;
  z-index: 1;
}

.cup-fixture {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s3) var(--s4);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.cup-fixture + .cup-fixture {
  margin-top: var(--s3);
}

.cup-fixture.clickable:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.cup-fixture.goal {
  background:
    linear-gradient(90deg, rgba(227, 183, 101, 0.08), transparent 40%),
    rgba(255, 255, 255, 0.03);
}

.cup-fixture .min {
  flex: 0 0 auto;
  min-width: 28px;
  color: var(--text-3);
  text-align: center;
}

.cup-fixture-body {
  flex: 1;
  min-width: 0;
}

.cup-fixture-link {
  flex: 0 0 auto;
  font-size: var(--fs-sm);
  font-weight: 600;
}
