/* Cup page specific styles */

.cups-topbar .topbar-inner {
  justify-content: center;
}

/* ── Hero ── */
.cups-hero {
  padding-bottom: 0;
}

.cups-hero .hero-title {
  font-size: clamp(52px, 12vw, 168px);
}

/* ── Main layout ── */
.cups-main {
  max-width: 1400px;
  margin: 0 auto;
}

/* ── Division sections ── */
.cups-division {
  padding: 80px 32px 32px;
}

.cups-division .division-head {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: none;
  position: relative;
}

.cups-division .division-head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,184,0,0.75) 0%, rgba(255,184,0,0.2) 35%, transparent 65%);
}

/* ── Gold accent on "Cup" in subheaders ── */
.cup-head-accent {
  background-image: linear-gradient(135deg, #FFE566 0%, #FFB800 45%, #A06200 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}


/* ── Trophy glyph in hero title ── */
.cup-trophy-svg {
  display: inline-block;
  width: 0.58em;
  height: 0.65em;
  vertical-align: -0.04em;
  margin-left: 0.1em;
  filter: drop-shadow(0 2px 14px rgba(255, 184, 0, 0.55));
}

/* ── Desktop: always show details row, no chevron, no pointer ── */
@media (min-width: 640px) {
  .cups-main .cup-match-main { cursor: default; }
  .cups-main .cup-chev       { display: none; }
  .cups-main .cup-details    { display: block; }
}

/* ── Details row ── */
.cup-detail-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  padding: 12px 22px 14px;
  background: rgba(0,0,0,0.12);
  font-size: 12px;
  color: var(--muted);
}

.cup-detail-sep {
  color: var(--dim);
}

/* ── YouTube watch button ── */
.cup-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(255, 40, 40, 0.1);
  border: 1px solid rgba(255, 60, 60, 0.35);
  border-radius: 6px;
  color: #ff6060;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s;
}

.cup-watch-btn:hover {
  background: rgba(255, 40, 40, 0.2);
  border-color: rgba(255, 60, 60, 0.6);
}

/* ── Mobile ── */
@media (max-width: 720px) {
  .cups-division { padding: 28px 14px 12px; }
}

@media (max-width: 639px) {
  .cup-detail-inner { padding: 12px 14px 14px; gap: 5px 10px; }
}
