:root {
  --night: #07110d;
  --stadium: #0c2418;
  --field: #0f8a4a;
  --field-dark: #08713b;
  --brazil-green: #069447;
  --brazil-yellow: #f7d328;
  --blue: #1646a0;
  --white: #ffffff;
  --paper: #f5fbf4;
  --ink: #14211a;
  --muted: #607065;
  --line: #dbe9dd;
  --danger: #dc4f3d;
  --shadow: 0 22px 54px rgba(7, 17, 13, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 5%, rgba(247, 211, 40, 0.2), transparent 24rem),
    radial-gradient(circle at 85% 8%, rgba(6, 148, 71, 0.22), transparent 26rem),
    linear-gradient(180deg, #eef9ef 0%, #ffffff 42%, #f4faf3 100%);
  line-height: 1.68;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 148, 71, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(22, 70, 160, 0.04) 1px, transparent 1px);
  background-size: 92px 92px;
  animation: pitchGrid 22s linear infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: auto -10% -24% -10%;
  height: 42vh;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse at center, rgba(6, 148, 71, 0.18), transparent 62%),
    repeating-linear-gradient(90deg, rgba(6, 148, 71, 0.1) 0 68px, rgba(247, 211, 40, 0.08) 68px 136px);
  transform: perspective(600px) rotateX(62deg);
  transform-origin: bottom center;
}

@keyframes pitchGrid {
  from { background-position: 0 0, 0 0; }
  to { background-position: 92px 92px, -92px 92px; }
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.stadium-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(247, 211, 40, 0.24), transparent 20rem),
    radial-gradient(circle at 20% 78%, rgba(6, 148, 71, 0.28), transparent 22rem),
    linear-gradient(145deg, #05100c, #0b2b1a 58%, #08110d);
  color: var(--white);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.stadium-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.kickoff-card {
  width: min(560px, calc(100% - 34px));
  min-height: 320px;
  display: grid;
  place-items: center;
  gap: 18px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  overflow: hidden;
  position: relative;
}

.kickoff-card::before,
.kickoff-card::after {
  content: "";
  position: absolute;
  top: -40%;
  width: 44%;
  height: 150%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent);
  filter: blur(4px);
  opacity: 0.55;
  animation: stadiumLight 2.2s ease-in-out infinite alternate;
}

.kickoff-card::before {
  left: 4%;
  transform: rotate(18deg);
}

.kickoff-card::after {
  right: 4%;
  transform: rotate(-18deg);
  animation-delay: 0.35s;
}

@keyframes stadiumLight {
  from { opacity: 0.18; }
  to { opacity: 0.58; }
}

.ball-mark {
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 28%, #ffffff 0 20%, #e9f1ec 21% 48%, #111 49% 52%, #ffffff 53%),
    conic-gradient(from 20deg, #111 0 14%, #fff 14% 28%, #111 28% 40%, #fff 40% 55%, #111 55% 68%, #fff 68% 100%);
  border: 5px solid var(--white);
  box-shadow: 0 0 0 10px rgba(247, 211, 40, 0.1);
  animation: kickoffSpin 1.25s cubic-bezier(.2,.7,.2,1) infinite;
  position: relative;
  z-index: 2;
}

@keyframes kickoffSpin {
  0% { transform: translateX(-28px) rotate(-80deg); }
  50% { transform: translateX(28px) rotate(80deg); }
  100% { transform: translateX(-28px) rotate(280deg); }
}

.kickoff-card strong {
  position: relative;
  z-index: 2;
  font-size: clamp(1.5rem, 5vw, 2.8rem);
  line-height: 1.05;
  color: var(--brazil-yellow);
}

.kickoff-card span {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.loading-track {
  position: relative;
  z-index: 2;
  width: min(360px, 100%);
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.loading-track i {
  display: block;
  width: 46%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brazil-green), var(--brazil-yellow));
  animation: loadingRun 1.1s ease-in-out infinite;
}

@keyframes loadingRun {
  from { transform: translateX(-110%); }
  to { transform: translateX(230%); }
}

.site-header {
  background: var(--night);
  color: var(--white);
  border-bottom: 4px solid var(--brazil-yellow);
}

.header-shell,
.hero-shell,
.content-shell,
.article-shell,
.footer-grid,
.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.header-shell {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  position: relative;
}

.brand-link,
.footer-logo {
  display: inline-flex;
  align-items: center;
}

.brand-link img,
.footer-logo img {
  max-width: 200px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  font-size: 0.93rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--night);
  background: var(--brazil-yellow);
  outline: none;
}

.site-nav .nav-cta,
.button-primary,
.button-secondary,
.inline-cta {
  background: linear-gradient(135deg, var(--brazil-green), #00b86a);
  color: var(--white);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(6, 148, 71, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.site-nav .nav-cta:hover,
.button-primary:hover,
.button-secondary:hover,
.inline-cta:hover,
.site-nav .nav-cta:focus-visible,
.button-primary:focus-visible,
.button-secondary:focus-visible,
.inline-cta:focus-visible {
  color: var(--white);
  filter: saturate(1.08);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(6, 148, 71, 0.38);
}

.mobile-menu-toggle {
  display: none;
  width: 48px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 10px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  display: block;
}

.mobile-menu-toggle em {
  font-style: normal;
  font-size: 0.68rem;
}

.worldcup-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 14%, rgba(247, 211, 40, 0.2), transparent 19rem),
    radial-gradient(circle at 82% 8%, rgba(255, 255, 255, 0.18), transparent 12rem),
    linear-gradient(135deg, #07110d 0%, #0f4329 45%, #08130e 100%);
}

.worldcup-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 48.8%, rgba(255, 255, 255, 0.25) 49%, transparent 51.2%),
    radial-gradient(ellipse at center, transparent 0 23%, rgba(255, 255, 255, 0.2) 23.2% 23.9%, transparent 24.1%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 70px, rgba(0, 0, 0, 0.04) 70px 140px);
  opacity: 0.55;
}

.worldcup-hero::after {
  content: "";
  position: absolute;
  inset: -18% -12% auto -12%;
  height: 50%;
  background:
    conic-gradient(from 200deg at 22% 0%, rgba(255,255,255,0.36), transparent 22%),
    conic-gradient(from 150deg at 78% 0%, rgba(247,211,40,0.28), transparent 24%);
  filter: blur(2px);
  animation: sweepLights 4.8s ease-in-out infinite alternate;
}

@keyframes sweepLights {
  from { transform: translateX(-2%) skewX(-4deg); opacity: 0.45; }
  to { transform: translateX(2%) skewX(4deg); opacity: 0.72; }
}

.hero-shell {
  position: relative;
  z-index: 1;
  padding: 54px 0 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  gap: 30px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(247, 211, 40, 0.55);
  border-radius: 999px;
  color: var(--brazil-yellow);
  font-weight: 900;
  font-size: 0.88rem;
  background: rgba(0, 0, 0, 0.22);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--brazil-yellow);
  box-shadow: 0 0 0 5px rgba(247, 211, 40, 0.16);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 1.01;
  letter-spacing: 0;
}

.hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button-primary,
.button-secondary,
.inline-cta {
  min-height: 46px;
  padding: 11px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.button-ghost {
  min-height: 46px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
}

.scoreboard {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(5, 14, 10, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.scoreboard-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--brazil-yellow);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.score-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.team-tile {
  display: grid;
  place-items: center;
  min-height: 98px;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(6, 148, 71, 0.28), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.team-tile strong {
  font-size: 2rem;
  line-height: 1;
}

.versus {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  color: var(--night);
  background: var(--brazil-yellow);
  font-weight: 900;
  box-shadow: 0 0 0 10px rgba(247, 211, 40, 0.1);
}

.odds-strip,
.dashboard-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.odd-box,
.dashboard-metric {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  padding: 12px;
}

.odd-box strong,
.dashboard-metric strong {
  display: block;
  color: var(--brazil-yellow);
  font-size: 1.12rem;
}

.odd-box span,
.dashboard-metric span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.content-shell {
  padding: 42px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 312px;
  gap: 30px;
}

.main-flow {
  display: grid;
  gap: 34px;
  min-width: 0;
}

.section-band,
.article-content,
.side-section {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(7, 17, 13, 0.07);
}

.section-band {
  padding: clamp(20px, 4vw, 34px);
}

.section-band.soft {
  background: rgba(245, 255, 244, 0.96);
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--brazil-green);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.section-band h2,
.article-content h2,
.side-section h2,
.site-footer h2 {
  margin: 0 0 14px;
  color: var(--night);
  line-height: 1.18;
  letter-spacing: 0;
}

.section-band h2,
.article-content h2 {
  font-size: clamp(1.45rem, 3vw, 2.25rem);
}

.section-band p,
.article-content p,
.side-section p {
  margin: 0 0 14px;
}

.review-command {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: linear-gradient(135deg, rgba(6,148,71,0.12), rgba(247,211,40,0.14));
  border: 1px solid #cfe7d7;
  border-radius: 14px;
}

.review-command img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 999px;
  border: 4px solid var(--white);
}

.match-grid,
.payment-grid,
.responsible-grid,
.review-grid,
.article-grid,
.feature-grid {
  display: grid;
  gap: 18px;
}

.match-grid,
.article-grid,
.reader-review-list,
.review-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.payment-grid,
.responsible-grid,
.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.match-card,
.game-brief-card,
.guide-list-item,
.payment-item,
.responsible-item,
.reader-review-item,
.feature-item,
.recommended-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.match-card,
.game-brief-card,
.guide-list-item,
.recommended-item {
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.match-card:hover,
.game-brief-card:hover,
.guide-list-item:hover,
.recommended-item:hover {
  border-color: var(--brazil-green);
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(6, 148, 71, 0.16);
}

.match-card figure,
.game-brief-card a,
.guide-list-item a,
.recommended-item a {
  margin: 0;
  display: grid;
}

.media-frame {
  overflow: hidden;
  background: var(--stadium);
}

.match-card img,
.game-brief-card img,
.guide-list-item img,
.recommended-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.match-card:hover img,
.game-brief-card:hover img,
.guide-list-item:hover img,
.recommended-item:hover img {
  transform: scale(1.04);
}

.match-card figcaption,
.game-brief-card a,
.guide-list-item a,
.recommended-item a {
  padding: 16px;
}

.match-card h3,
.game-brief-card h3,
.guide-list-item h2,
.recommended-item h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.meta-line,
.risk-note,
.article-meta,
.breadcrumb,
.small-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.risk-note {
  display: block;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.payment-item,
.responsible-item,
.feature-item {
  padding: 16px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.payment-item:hover,
.feature-item:hover {
  transform: translateY(-3px);
  border-color: var(--brazil-green);
}

.payment-item img,
.responsible-item img,
.feature-item img {
  width: 86px;
  height: 62px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

.tag-pill,
.time-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff5b8;
  color: #5e5100;
  font-size: 0.82rem;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 54px;
  border: 0;
  background: #f0f8f1;
  color: var(--night);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-question span {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brazil-green);
  color: var(--white);
  flex: 0 0 auto;
}

.faq-answer {
  padding: 16px;
}

.is-collapsed .faq-answer {
  display: none;
}

.is-collapsed .faq-question span {
  background: var(--night);
}

.reader-review-panel {
  display: grid;
  gap: 16px;
}

.reader-review-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.reader-review-item {
  padding: 16px;
  position: relative;
  min-height: 156px;
  opacity: 1;
  transform: translateY(0);
}

.reader-review-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reader-review-item::before {
  content: "";
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 30%, #fff 0 22%, #dfe7e1 23% 45%, #111 46% 49%, #fff 50%),
    conic-gradient(#111 0 18%, #fff 18% 34%, #111 34% 52%, #fff 52% 100%);
  display: block;
  margin-bottom: 10px;
  border: 2px solid var(--brazil-yellow);
}

.reader-review-item header,
.reader-review-item footer,
.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.reader-review-item strong {
  color: var(--night);
}

.reader-review-item p,
.reader-review-item blockquote {
  margin: 10px 0 0;
}

.reader-review-item blockquote {
  border-left: 4px solid var(--brazil-green);
  padding-left: 12px;
  font-style: italic;
}

.reader-review-item::after {
  content: "★★★★★";
  display: block;
  color: var(--brazil-yellow);
  font-size: 0.9rem;
  margin-top: 10px;
}

.review-offset {
  background: #f8fff2;
}

.review-compact {
  min-height: 130px;
}

.side-panel {
  display: grid;
  align-content: start;
  gap: 18px;
}

.side-section {
  padding: 18px;
}

.side-action {
  background: var(--night);
  color: var(--white);
  border-color: transparent;
}

.side-action h2 {
  color: var(--white);
}

.side-list {
  display: grid;
  gap: 12px;
}

.side-list a {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 10px;
  align-items: center;
  font-weight: 800;
}

.side-list img {
  width: 96px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud a {
  padding: 6px 10px;
  background: #eef8ef;
  border-radius: 999px;
  color: var(--brazil-green);
  font-weight: 800;
  font-size: 0.9rem;
}

.note-box {
  border-color: var(--brazil-yellow);
  background: #fffdf1;
}

.article-shell {
  padding: 38px 0;
  display: grid;
  gap: 24px;
}

.layout-with-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 312px;
  gap: 30px;
}

.article-content {
  min-width: 0;
  padding: clamp(20px, 4vw, 34px);
}

.article-content h1 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--night);
}

.article-content .main-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  margin: 18px 0;
}

.guide-list {
  display: grid;
  gap: 16px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.page-link {
  min-width: 42px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.page-link:hover,
.page-link:focus-visible {
  border-color: var(--brazil-green);
  color: var(--brazil-green);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 0.95rem;
}

.data-table th,
.data-table td {
  border: 1px solid var(--line);
  padding: 10px;
  vertical-align: top;
}

.data-table th {
  background: #eef8ef;
  text-align: left;
}

.site-footer {
  background: var(--night);
  color: rgba(255, 255, 255, 0.82);
  padding: 42px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 0.8fr;
  gap: 24px;
}

.site-footer h2 {
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.84);
  margin: 8px 0;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--brazil-yellow);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-badges img {
  border-radius: 10px;
  object-fit: cover;
  background: var(--white);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .mobile-menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    background: var(--night);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0 0 12px 12px;
    padding: 12px;
    z-index: 30;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    justify-content: flex-start;
  }

  .hero-shell,
  .content-shell,
  .layout-with-sidebar,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .payment-grid,
  .responsible-grid,
  .feature-grid,
  .match-grid,
  .article-grid,
  .reader-review-list,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .header-shell {
    width: min(100% - 22px, 1180px);
    min-height: 76px;
  }

  .brand-link img {
    max-width: 162px;
  }

  .hero-shell {
    padding-top: 32px;
  }

  .odds-strip,
  .dashboard-strip,
  .payment-grid,
  .responsible-grid,
  .feature-grid,
  .match-grid,
  .article-grid,
  .reader-review-list,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-command {
    grid-template-columns: 1fr;
  }

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

  .versus {
    margin: 0 auto;
  }

  .side-list a {
    grid-template-columns: 82px 1fr;
  }

  .side-list img {
    width: 82px;
    height: 62px;
  }
}
