.game-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(80, 166, 226, .32), transparent 35%),
    linear-gradient(135deg, #071a2e, #123b66 72%, #163f55);
}

.game-content {
  gap: 48px;
}

.game-page,
.game-page main,
.game-page .shell,
.game-page section,
.game-page article {
  min-width: 0;
}

.game-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: -26px;
  color: var(--muted);
  font-size: 12px;
}

.game-breadcrumb a {
  font-weight: 700;
}

.game-scoreboard {
  display: grid;
  grid-template-columns: 1fr minmax(180px, .55fr) 1fr;
  align-items: center;
  min-height: 285px;
  overflow: hidden;
}

.game-side {
  min-width: 0;
  padding: 28px;
  text-align: center;
}

.game-side img,
.game-logo-fallback {
  width: 88px;
  height: 88px;
  margin: 0 auto 12px;
}

.game-logo-fallback {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-size: 22px;
  font-weight: 900;
}

.team-role {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.game-side h3 {
  margin: 8px 0 0;
  font-size: 22px;
  line-height: 1.25;
}

.game-side h3 a {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.game-score {
  display: block;
  margin-top: 10px;
  font-size: 38px;
}

.game-center {
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  text-align: center;
  background: #f7fafc;
}

.game-phase-pill {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 999px;
  color: #0e578c;
  background: #e2f1fc;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.game-center strong {
  margin: 14px 0 4px;
  font-size: 17px;
}

.game-center > span:last-child {
  color: var(--muted);
  font-size: 12px;
}

.game-fact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 14px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.game-fact-strip > div {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.game-fact-strip > div:last-child {
  border-right: 0;
}

.game-fact-strip dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.game-fact-strip dd {
  margin: 5px 0 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.game-fact-strip small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.game-guide-grid,
.game-context-grid,
.game-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.game-guide-card,
.game-context-card,
.game-tool-card {
  padding: 22px;
  border-top: 4px solid #1769a5;
}

.game-guide-card > span,
.game-tool-card > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.game-guide-card h3,
.game-context-card h3,
.game-tool-card h3 {
  margin: 8px 0;
  font-size: 19px;
  line-height: 1.3;
}

.game-guide-card p,
.game-context-card p,
.game-tool-card p {
  margin: 0;
  color: var(--muted);
}

.game-guide-card a,
.game-context-card a,
.game-tool-card > a:not(.btn) {
  display: inline-block;
  margin-top: 12px;
  margin-right: 12px;
  font-size: 13px;
  font-weight: 750;
}

.game-context-card {
  border-top-color: #2e7b69;
}

.game-tool-card {
  display: flex;
  flex-direction: column;
  min-height: 235px;
  border-top-color: #b86a19;
}

.game-tool-card p {
  flex: 1;
  margin-bottom: 14px;
}

.game-timezone-label {
  display: block;
  margin-top: 16px;
  color: #4a596a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.game-timezone-label select {
  display: block;
  width: 100%;
  height: 42px;
  margin-top: 5px;
  padding: 0 10px;
  border: 1px solid #c9d3df;
  border-radius: 7px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 13px;
  text-transform: none;
}

.game-faq-grid .faq-item {
  min-height: 190px;
}

@media (max-width: 960px) {
  .game-scoreboard {
    grid-template-columns: 1fr 160px 1fr;
  }

  .game-fact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-fact-strip > div:nth-child(2) {
    border-right: 0;
  }

  .game-fact-strip > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  .game-page {
    overflow-x: hidden;
  }

  .game-page .hero h1,
  .game-page .section-heading h2,
  .game-page .panel h3 {
    overflow-wrap: anywhere;
  }

  .game-page .hero h1 {
    font-size: clamp(31px, 10vw, 38px);
  }

  .game-breadcrumb {
    margin-bottom: -20px;
  }

  .game-scoreboard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-center {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 115px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .game-side {
    padding: 22px 14px;
  }

  .game-side img,
  .game-logo-fallback {
    width: 70px;
    height: 70px;
  }

  .game-side h3 {
    font-size: 17px;
  }

  .game-fact-strip,
  .game-guide-grid,
  .game-context-grid,
  .game-tool-grid {
    grid-template-columns: 1fr;
  }

  .game-fact-strip > div,
  .game-fact-strip > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .game-fact-strip > div:last-child {
    border-bottom: 0;
  }

  .game-tool-card,
  .game-faq-grid .faq-item {
    min-height: 0;
  }
}

@media print {
  .game-breadcrumb,
  .game-guide-grid,
  .game-context-grid,
  .game-tool-grid,
  .game-faq-grid,
  .game-content > section:not(#game-details) {
    display: none !important;
  }
}
