@import url("brand-tokens.css");

/* 开枪杯观赛指南与赛制百科 */
:root {
  --bg: #09101b;
  --panel: #101a28;
  --panel-soft: rgba(255, 255, 255, .025);
  --line: rgba(255, 255, 255, .11);
  --text: #f2f0ea;
  --muted: #94a0b0;
  --gold: #e8b641;
  --light: #ffe39a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(232, 182, 65, .07), transparent 27%),
    linear-gradient(180deg, #08101b, #0b1422);
  color: var(--text);
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  max-width: 1260px;
  margin: auto;
  padding: 75px 5vw;
}

.intro {
  min-height: 610px;
  padding-top: 35px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.intro > span,
.heading > span,
.core article span,
.boundary span,
.arena-grid article > span,
.bp-types article span,
.score-compare article > span,
.tournament-track article > span {
  color: var(--gold);
  font: 700 11px ui-monospace, monospace;
  letter-spacing: .12em;
}

.intro h1 {
  margin: 12px 0 20px;
  font-size: clamp(56px, 8vw, 104px);
  line-height: 1.01;
  letter-spacing: -.065em;
}

.intro h1 em {
  color: var(--light);
  font-style: normal;
}

.intro > p {
  max-width: 850px;
  color: #aab4c2;
  font-size: 17px;
  line-height: 1.9;
}

.intro-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.intro-actions a {
  padding: 11px 15px;
  border: 1px solid var(--line);
  color: #c2cad4;
  font-size: 12px;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.intro-actions a:first-child {
  border-color: rgba(232, 182, 65, .5);
  background: rgba(232, 182, 65, .08);
  color: var(--light);
}

.intro-actions a:hover {
  border-color: rgba(232, 182, 65, .65);
  color: var(--light);
}

.source-note {
  display: inline-block;
  margin-top: 26px;
  padding: 9px 13px;
  border-left: 2px solid rgba(232, 182, 65, .55);
  background: rgba(255, 255, 255, .02);
  color: #778394;
  font-size: 11px;
  line-height: 1.6;
}

.heading {
  margin-bottom: 28px;
}

.heading h2 {
  margin: 7px 0 10px;
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -.025em;
}

.heading > p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.flow-section,
.arena-section,
.bp-section,
.scoring-section,
.player-points-section,
.tournament-section,
.core,
.terms,
.season-evolution {
  scroll-margin-top: 96px;
}

.flow-list p,
.arena-grid p,
.bp-types p,
.score-compare p,
.tournament-track p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.78;
}

.flow-section {
  padding: 70px 42px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.flow-list {
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  counter-reset: flow;
}

.flow-list li {
  position: relative;
  min-height: 210px;
  padding: 27px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.flow-list li:nth-child(1),
.flow-list li:nth-child(2),
.flow-list li:nth-child(3) {
  border-top: 0;
}

.flow-list li:nth-child(3n + 1) {
  border-left: 0;
}

.flow-list li > b {
  display: block;
  margin-bottom: 30px;
  color: rgba(232, 182, 65, .45);
  font: 800 12px ui-monospace, monospace;
}

.flow-list span {
  color: #778394;
  font-size: 11px;
}

.flow-list strong {
  display: block;
  margin: 7px 0 9px;
  font-size: 18px;
}

.arena-section,
.bp-section,
.scoring-section,
.player-points-section,
.tournament-section,
.core,
.season-evolution {
  margin-top: 80px;
  padding-top: 70px;
  border-top: 1px solid var(--line);
}

.arena-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.arena-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--panel-soft);
  display: flex;
  flex-direction: column;
}

.arena-grid h3 {
  margin: 32px 0 11px;
  font-size: 23px;
}

.arena-grid small {
  margin-top: auto;
  padding-top: 23px;
  color: #697587;
  font: 700 10px ui-monospace, monospace;
  letter-spacing: .1em;
}

.bp-types {
  display: grid;
  gap: 11px;
}

.bp-types article {
  min-height: 190px;
  padding: 30px 38px;
  border: 1px solid var(--line);
  background: var(--panel-soft);
}

.bp-types article.featured {
  border-color: rgba(232, 182, 65, .42);
  background: rgba(232, 182, 65, .055);
}

.bp-type-content {
  max-width: 980px;
}

.bp-type-label {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.bp-type-label b {
  width: 30px;
  height: 30px;
  border: 1px solid #445064;
  display: grid;
  place-items: center;
  color: #8995a8;
  background: rgba(137, 149, 168, .06);
  font: 800 13px ui-monospace, monospace;
}

.bp-types .bp-type-label span {
  color: var(--gold);
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .03em;
}

.bp-types article.featured .bp-type-label b {
  border-color: rgba(232, 182, 65, .55);
  color: var(--gold);
  background: rgba(232, 182, 65, .08);
}

.bp-types h3 {
  margin: 0 0 12px;
  font-size: 25px;
}

.bp-types p {
  max-width: 790px;
}

.ban-notation {
  max-width: 790px;
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ban-notation > div {
  padding: 12px;
  border: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  color: #aeb8c5;
  font-size: 11px;
}

.ban-notation b {
  margin-right: 4px;
  color: var(--light);
  font: 800 16px ui-monospace, monospace;
}

.ban-notation i {
  color: var(--gold);
  font-style: normal;
}

.ban-notation small {
  width: 100%;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  color: #687587;
  font-size: 10px;
}

.bp-types .notation-note {
  margin-top: 9px;
  color: #6e7a8c;
  font-size: 11px;
}

.peak-flow {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.peak-flow b {
  padding: 7px 10px;
  border: 1px solid var(--line);
  color: #c6ced8;
  font-size: 11px;
  font-weight: 600;
}

.peak-flow i {
  color: var(--gold);
  font-size: 11px;
  font-style: normal;
}

.bp-example {
  margin-top: 12px;
  padding: 24px 28px;
  border: 1px solid rgba(232, 182, 65, .28);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.bp-example div span {
  display: block;
  margin-bottom: 7px;
  color: #7d8999;
  font-size: 10px;
}

.bp-example strong {
  font-size: 14px;
}

.bp-example i {
  color: var(--gold);
  font-style: normal;
}

.fine-print {
  margin: 13px 0 0;
  color: #6e7a8c;
  font-size: 11px;
}

.score-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.score-compare article {
  min-height: 355px;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--panel-soft);
}

.score-compare article.featured {
  border-color: rgba(232, 182, 65, .42);
  background: linear-gradient(145deg, rgba(232, 182, 65, .07), rgba(255, 255, 255, .015));
}

.score-compare h3 {
  margin: 18px 0 28px;
  font-size: 32px;
}

.score-compare strong {
  display: block;
  margin-bottom: 20px;
  color: var(--light);
  font-size: 19px;
}

.score-compare ul {
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  list-style: none;
}

.score-compare li {
  padding: 10px 12px;
  border: 1px solid var(--line);
  color: #c1c9d3;
  font-size: 12px;
}

.bo-note {
  margin-top: 12px;
  padding: 21px 25px;
  border-left: 2px solid var(--gold);
  background: var(--panel);
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
}

.bo-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.points-clarify {
  padding: 26px 30px;
  border: 1px solid rgba(232, 182, 65, .3);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  background: rgba(232, 182, 65, .045);
}

.points-clarify div > span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font: 700 10px ui-monospace, monospace;
  letter-spacing: .1em;
}

.points-clarify strong {
  display: block;
  margin-bottom: 7px;
  font-size: 17px;
}

.points-clarify p,
.points-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.points-clarify i {
  color: var(--gold);
  font-size: 24px;
  font-style: normal;
}

.points-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.points-grid article {
  min-height: 305px;
  padding: 30px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  background: var(--panel-soft);
}

.points-grid article > span {
  color: var(--gold);
  font: 700 11px ui-monospace, monospace;
  letter-spacing: .12em;
}

.points-grid h3 {
  margin: 11px 0 25px;
  font-size: 29px;
}

.points-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--light);
  font-size: 17px;
}

.points-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.points-grid small {
  margin-top: auto;
  padding-top: 24px;
  color: #718093;
  font-size: 11px;
}

.points-rule {
  margin-top: 12px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  background: var(--panel-soft);
}

.points-rule p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.points-note {
  margin-top: 12px;
  padding: 22px 25px;
  border-left: 2px solid var(--gold);
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 22px;
  background: var(--panel);
}

.points-note a {
  color: var(--light);
  font-size: 12px;
  white-space: nowrap;
}

.tournament-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tournament-track article {
  position: relative;
  min-height: 250px;
  padding: 27px;
  border-left: 1px solid var(--line);
}

.tournament-track article:first-child {
  border-left: 0;
}

.tournament-track article:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: 31px;
  right: -10px;
  color: var(--gold);
}

.tournament-track b {
  display: block;
  margin-bottom: 35px;
  color: #465164;
  font: 800 12px ui-monospace, monospace;
}

.tournament-track h3 {
  margin: 8px 0 10px;
  font-size: 20px;
}

.core article {
  min-height: 190px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 130px 1fr;
}

.core article > b {
  color: #445063;
  font: 800 12px ui-monospace, monospace;
}

.core article h2 {
  margin: 7px 0 9px;
  font-size: 30px;
}

.core article p {
  max-width: 800px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.terms {
  margin-top: 80px;
  padding: 42px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.terms dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.terms dl div {
  min-height: 140px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.terms dt {
  font-weight: 800;
}

.terms dd {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.season-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.season-list article {
  grid-column: span 2;
  min-height: 330px;
  padding: 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  background: var(--panel-soft);
}

.season-list article:last-child {
  grid-column: 3 / span 2;
}

.season-list .featured-season {
  border-color: rgba(232, 182, 65, .42);
  background: rgba(232, 182, 65, .055);
}

.season-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.season-top b {
  color: var(--gold);
  font: 800 12px ui-monospace, monospace;
}

.season-top span {
  color: #798596;
  font-size: 11px;
}

.season-list h3 {
  margin: 28px 0 15px;
  font-size: 22px;
}

.season-facts {
  margin: 0;
  border-top: 1px solid var(--line);
}

.season-facts > div {
  min-height: 48px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 10px;
  align-items: center;
}

.season-facts dt {
  color: #6f7b8d;
  font-size: 10px;
}

.season-facts dd {
  margin: 0;
  color: #c5cdd7;
  font-size: 12px;
  line-height: 1.55;
}

.season-extra {
  margin: 10px 0 0;
  color: #758194;
  font-size: 10px;
  line-height: 1.6;
}

.season-list a {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--light);
  font-size: 12px;
}

.boundary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border: 1px solid var(--line);
}

.boundary > div {
  min-height: 190px;
  padding: 25px;
  border-left: 1px solid var(--line);
}

.boundary > div:first-child {
  border-left: 0;
}

.boundary strong {
  display: block;
  margin: 32px 0 7px;
  font-size: 19px;
}

.boundary p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

footer {
  padding: 28px 5vw;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: #b5beca;
  font-size: 13px;
}

@media (max-width: 960px) {
  .tournament-track {
    grid-template-columns: 1fr 1fr;
  }

  .points-grid {
    grid-template-columns: 1fr 1fr;
  }

  .flow-list {
    grid-template-columns: 1fr 1fr;
  }

  .flow-list li,
  .flow-list li:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .flow-list li:nth-child(1),
  .flow-list li:nth-child(2) {
    border-top: 0;
  }

  .flow-list li:nth-child(odd) {
    border-left: 0;
  }

  .tournament-track article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .tournament-track article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .season-list {
    grid-template-columns: 1fr 1fr;
  }

  .season-list article,
  .season-list article:last-child {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  main {
    padding-top: 38px;
  }

  .intro {
    min-height: 560px;
    padding-top: 0;
  }

  .intro h1 {
    font-size: 52px;
  }

  .intro > p {
    font-size: 15px;
  }

  .intro-actions a {
    flex: 1 1 auto;
    text-align: center;
  }

  .flow-list,
  .arena-grid,
  .score-compare,
  .points-grid,
  .tournament-track,
  .terms dl,
  .boundary,
  .season-list {
    grid-template-columns: 1fr;
  }

  .flow-section,
  .terms {
    padding: 26px 20px;
  }

  .flow-list li,
  .flow-list li:nth-child(2),
  .flow-list li:nth-child(3) {
    min-height: 180px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .flow-list li:first-child {
    border-top: 0;
  }

  .bp-types article {
    padding: 24px 20px;
  }

  .ban-notation {
    grid-template-columns: 1fr;
  }

  .bp-example {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .bp-example i {
    transform: rotate(90deg);
    justify-self: start;
  }

  .score-compare ul {
    grid-template-columns: 1fr;
  }

  .bo-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .points-clarify {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .points-clarify i {
    transform: rotate(90deg);
    justify-self: start;
  }

  .points-note {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .points-rule {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .tournament-track article,
  .tournament-track article:nth-child(2),
  .tournament-track article:nth-child(3),
  .tournament-track article:nth-child(4) {
    min-height: 210px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .tournament-track article:first-child {
    border-top: 0;
  }

  .tournament-track article:not(:last-child)::after {
    top: auto;
    right: 24px;
    bottom: -10px;
    transform: rotate(90deg);
  }

  .core article {
    grid-template-columns: 48px 1fr;
  }

  .core article h2 {
    font-size: 24px;
  }

  .boundary > div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .boundary > div:first-child {
    border-top: 0;
  }
}

/* Approved 2026 content-site visual system. */
.guide-page {
  --bg: var(--gsbp-ink-950);
  --panel: var(--gsbp-ink-900);
  --panel-soft: rgba(18, 29, 49, .46);
  --line: var(--gsbp-line-subtle);
  --text: var(--gsbp-text-primary);
  --muted: var(--gsbp-text-muted);
  --gold: var(--gsbp-gold);
  --light: var(--gsbp-cream);
  min-width: 320px;
  background:
    radial-gradient(circle at 82% 8%, rgba(234, 179, 8, .06), transparent 29rem),
    linear-gradient(180deg, var(--gsbp-ink-950), #0a1422);
  color: var(--gsbp-text-primary);
  font-family: var(--gsbp-font-sans);
  font-synthesis: none;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.guide-page main {
  max-width: 1200px;
  padding: 72px 0 96px;
}

.guide-page .intro {
  min-height: 610px;
  padding-top: 20px;
}

.guide-page .intro h1 {
  margin: 18px 0 24px;
  font-family: var(--gsbp-font-display);
  font-size: clamp(56px, 8vw, 94px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: .015em;
}

.guide-page .intro > p {
  max-width: 760px;
  color: var(--gsbp-text-secondary);
  font-size: 18px;
  line-height: 1.9;
}

.guide-page .intro-actions { margin-top: 28px; }
.guide-page .intro-actions a {
  min-height: 46px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  color: var(--gsbp-text-secondary);
  font-size: 15px;
  font-weight: 500;
}

.guide-page .source-note {
  max-width: 760px;
  margin-top: 28px;
  padding: 12px 16px;
  color: var(--gsbp-text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.guide-page :is(.intro > span, .heading > span, .core article span, .boundary span, .arena-grid article > span, .bp-types article span, .score-compare article > span, .tournament-track article > span) {
  color: var(--gsbp-gold);
  font-family: var(--gsbp-font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .13em;
}

.guide-page .heading { margin-bottom: 32px; }
.guide-page .heading h2 {
  margin: 8px 0 12px;
  color: var(--gsbp-text-primary);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: -.02em;
}
.guide-page .heading > p { max-width: 760px; color: var(--gsbp-text-secondary); font-size: 16px; line-height: 1.8; }

.guide-page :is(.flow-section, .arena-section, .bp-section, .scoring-section, .player-points-section, .tournament-section, .core, .terms, .season-evolution) {
  scroll-margin-top: 144px;
}

.guide-page .flow-section {
  padding: 64px 42px;
  border-color: var(--gsbp-line-subtle);
  background: var(--gsbp-ink-900);
}
.guide-page .flow-list li { min-height: 220px; }
.guide-page .flow-list li > b { color: rgba(234,179,8,.58); font-family: var(--gsbp-font-sans); font-size: 13px; }
.guide-page .flow-list span { color: var(--gsbp-text-muted); font-size: 13px; }
.guide-page .flow-list strong { color: var(--gsbp-text-primary); font-size: 19px; font-weight: 600; }

.guide-page :is(.flow-list p, .arena-grid p, .bp-types p, .score-compare p, .tournament-track p) {
  color: var(--gsbp-text-secondary);
  font-size: 15px;
  line-height: 1.78;
}

.guide-page :is(.arena-section, .bp-section, .scoring-section, .player-points-section, .tournament-section, .core, .season-evolution) {
  margin-top: 88px;
  padding-top: 76px;
  border-top-color: var(--gsbp-line-subtle);
}

.guide-page :is(.arena-grid article, .bp-types article, .score-compare article, .points-grid article, .tournament-track article) {
  border-color: var(--gsbp-line-subtle);
  background: var(--panel-soft);
}

.guide-page .arena-grid h3 { font-size: 24px; font-weight: 600; }
.guide-page .arena-grid small { color: var(--gsbp-text-muted); font-family: var(--gsbp-font-sans); font-size: 13px; font-weight: 500; }

.guide-page .bp-types .bp-type-label span { font-family: var(--gsbp-font-sans); font-size: 18px; font-weight: 600; }
.guide-page .bp-types h3 { font-size: 25px; font-weight: 600; }
.guide-page .bp-type-label b { font-family: var(--gsbp-font-sans); font-size: 13px; }
.guide-page .ban-notation > div { color: var(--gsbp-text-secondary); font-size: 14px; }
.guide-page .ban-notation b { font-family: var(--gsbp-font-sans); }
.guide-page .ban-notation small { color: var(--gsbp-text-muted); font-size: 13px; }
.guide-page .bp-types .notation-note,
.guide-page .fine-print { color: var(--gsbp-text-muted); font-size: 13px; line-height: 1.7; }
.guide-page .peak-flow b { color: var(--gsbp-text-secondary); font-size: 14px; }
.guide-page .peak-flow i { font-size: 13px; }
.guide-page .bp-example div span { color: var(--gsbp-text-muted); font-size: 13px; }
.guide-page .bp-example strong { font-size: 15px; font-weight: 500; }

.guide-page .score-compare h3,
.guide-page .points-grid h3 { font-weight: 600; }
.guide-page .score-compare :is(li, strong) { font-size: 15px; }
.guide-page .bo-note :is(b, p) { font-size: 15px; }

.guide-page .core article > b,
.guide-page .tournament-track article > b { font-family: var(--gsbp-font-sans); font-size: 13px; }
.guide-page .core article h2 { font-size: 24px; font-weight: 600; }
.guide-page .core article p { color: var(--gsbp-text-secondary); font-size: 15px; line-height: 1.75; }
.guide-page .tournament-track h3 { font-weight: 600; }

.guide-page .points-clarify :is(span, p),
.guide-page .points-grid :is(p, small),
.guide-page .points-rule p,
.guide-page .points-note p { font-size: 15px; line-height: 1.75; }
.guide-page .points-grid > article > span { font-size: 13px; }
.guide-page .points-grid small { color: var(--gsbp-text-muted); }
.guide-page .points-note a { min-height: 44px; display: inline-flex; align-items: center; font-size: 14px; }

.guide-page .terms { margin-top: 88px; padding-top: 76px; }
.guide-page .terms dt { color: var(--gsbp-cream); font-size: 15px; font-weight: 600; }
.guide-page .terms dd { color: var(--gsbp-text-secondary); font-size: 15px; line-height: 1.75; }

.guide-page .season-top :is(b, span),
.guide-page .season-facts :is(dt, dd),
.guide-page .season-extra,
.guide-page .season-list article > a { font-size: 14px; }
.guide-page .season-list h3 { font-weight: 600; }

.guide-page .boundary :is(span, p) { font-size: 14px; }
.guide-page .boundary strong { font-size: 18px; font-weight: 600; }

.guide-page > footer {
  min-height: 84px;
  padding-inline: max(20px, calc((100% - 1200px) / 2));
  border-top-color: var(--gsbp-line-subtle);
  color: var(--gsbp-text-secondary);
  font-size: 14px;
}

@media (max-width: 1248px) {
  .guide-page main { width: calc(100% - 40px); }
}

@media (max-width: 760px) {
  .guide-page main { width: calc(100% - 24px); padding-top: 48px; }
  .guide-page .intro { min-height: 540px; }
  .guide-page .intro h1 { font-size: clamp(48px, 15vw, 68px); }
  .guide-page .flow-section { padding: 42px 20px; }
  .guide-page .flow-list li { min-height: auto; }
  .guide-page .heading > p { font-size: 16px; }
  .guide-page .bp-example { gap: 16px; }
  .guide-page > footer { padding-inline: 12px; }
}
