:root {
  --bg: #070807;
  --bg-soft: #10120f;
  --panel: #161915;
  --panel-strong: #1d211a;
  --text: #f6f2e8;
  --muted: #b8b6a8;
  --line: rgba(246, 242, 232, 0.16);
  --accent: #ff3f34;
  --accent-2: #19e6b1;
  --accent-3: #f4c542;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--bg);
  background-size: 42px 42px;
  color: var(--text);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 7, 0.86);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 63, 52, 0.7);
  background: #1d0f0d;
  color: var(--accent);
  font-weight: 900;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 1.05rem;
  letter-spacing: 0;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
}

.primary-nav {
  justify-self: center;
}

.menu,
.footer-menu {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu a,
.footer-menu a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.menu a:hover,
.footer-menu a:hover {
  color: var(--text);
}

.header-cta,
.button-primary,
.button-secondary,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  border-radius: 6px;
  box-shadow: 0 16px 34px rgba(255, 63, 52, 0.22);
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 6px;
  padding: 9px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.site-main {
  min-height: 70vh;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 34px;
  padding: clamp(86px, 12vh, 150px) clamp(18px, 5vw, 78px) clamp(36px, 7vh, 70px);
  overflow: hidden;
}

.hero-home {
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.92), rgba(7, 8, 7, 0.62) 52%, rgba(7, 8, 7, 0.28)),
    url("https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=1900&q=82") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1 {
  max-width: 980px;
  font-size: clamp(3rem, 8vw, 7.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-text {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-panel {
  align-self: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(10, 12, 10, 0.72);
  box-shadow: var(--shadow);
  border-radius: 8px;
}

.hero-panel span,
.hero-panel small {
  color: var(--muted);
  display: block;
}

.hero-panel strong {
  display: block;
  margin: 10px 0;
  font-size: 2rem;
}

.arena-overview {
  padding-top: 34px;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
}

.visual-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(7, 8, 7, 0.12), rgba(7, 8, 7, 0.88)),
    url("https://images.unsplash.com/photo-1493711662062-fa541adb3fc8?auto=format&fit=crop&w=1200&q=80") center / cover;
  overflow: hidden;
}

.visual-card.large {
  grid-row: span 2;
  min-height: 478px;
  background:
    linear-gradient(180deg, rgba(7, 8, 7, 0.06), rgba(7, 8, 7, 0.9)),
    url("https://images.unsplash.com/photo-1550745165-9bc0b252726f?auto=format&fit=crop&w=1400&q=82") center / cover;
}

.visual-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(7, 8, 7, 0.12), rgba(7, 8, 7, 0.88)),
    url("https://images.unsplash.com/photo-1511882150382-421056c89033?auto=format&fit=crop&w=1200&q=80") center / cover;
}

.visual-card:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(7, 8, 7, 0.12), rgba(7, 8, 7, 0.88)),
    url("https://images.unsplash.com/photo-1511512578047-dfb367046420?auto=format&fit=crop&w=1200&q=80") center / cover;
}

.visual-card span,
.mode-card span,
.roadmap-list span,
.info-tile span {
  color: var(--accent-3);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-card p,
.mode-card p,
.roadmap-list p,
.info-tile p {
  color: var(--muted);
}

.visual-card a {
  width: fit-content;
  margin-top: 12px;
  color: var(--accent-2);
  font-weight: 900;
}

.section-band,
.content-section,
.split-section,
.page-content,
.single-layout {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  transform: translateY(-26px);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.stat {
  padding: 24px;
  background: var(--panel);
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  font-size: 1.5rem;
}

.stat span {
  color: var(--muted);
}

.content-section,
.split-section {
  padding: clamp(54px, 8vw, 96px) 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading a {
  color: var(--accent-2);
  font-weight: 900;
}

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

.card-grid.small {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.feature-card div,
.news-card {
  padding: 22px;
}

.feature-card span,
.news-card time {
  color: var(--accent-3);
  font-weight: 900;
  font-size: 0.82rem;
}

.feature-card p,
.news-card p,
.split-section p,
.page-content,
.single-content {
  color: var(--muted);
}

.feature-card a,
.news-card a,
.event-row a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--accent-2);
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 36px;
}

.media-strip {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.media-strip img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

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

.event-row {
  display: grid;
  grid-template-columns: 180px 1fr minmax(180px, 0.55fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
}

.event-row span {
  color: var(--accent-3);
  font-weight: 900;
}

.event-row p {
  margin: 0;
  color: var(--muted);
}

.page-hero {
  min-height: 42vh;
  padding: clamp(92px, 12vw, 150px) clamp(18px, 5vw, 78px) 58px;
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.94), rgba(7, 8, 7, 0.64)),
    var(--hero-image, url("https://images.unsplash.com/photo-1511512578047-dfb367046420?auto=format&fit=crop&w=1900&q=82")) center / cover;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 7vw, 5.8rem);
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
}

.page-content {
  padding: 58px 0 86px;
}

.page-content h2,
.page-content h3,
.single-content h2,
.single-content h3 {
  color: var(--text);
  margin-top: 1.2em;
}

.page-content a,
.single-content a {
  color: var(--accent-2);
  font-weight: 900;
}

.game-launcher {
  margin-top: 32px;
  width: 100%;
  height: min(78vh, 760px);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

.game-launcher iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.play-hero {
  min-height: calc(86vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: 28px;
  padding: clamp(96px, 12vw, 160px) clamp(18px, 5vw, 78px) clamp(42px, 7vw, 80px);
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.94), rgba(7, 8, 7, 0.52)),
    url("https://images.unsplash.com/photo-1542751110-97427bbecf20?auto=format&fit=crop&w=1900&q=82") center / cover;
}

.play-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

.play-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.12rem;
}

.play-status {
  padding: 24px;
  border: 1px solid rgba(25, 230, 177, 0.42);
  border-radius: 8px;
  background: rgba(7, 8, 7, 0.72);
  box-shadow: var(--shadow);
}

.play-status span,
.play-status small {
  display: block;
  color: var(--muted);
}

.play-status strong {
  display: block;
  color: var(--accent-2);
  font-size: 2.4rem;
}

.play-frame-section {
  width: min(1320px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 78px) 0;
}

.play-frame {
  height: min(82vh, 820px);
  min-height: 520px;
  border: 1px solid rgba(25, 230, 177, 0.34);
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
}

.play-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.play-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 12px;
}

.info-tile {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

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

.mode-card {
  min-height: 360px;
  display: flex;
  align-items: end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(7, 8, 7, 0.04), rgba(7, 8, 7, 0.9)),
    url("https://images.unsplash.com/photo-1560253023-3ec5d502959f?auto=format&fit=crop&w=1200&q=80") center / cover;
}

.mode-arena {
  background:
    linear-gradient(180deg, rgba(7, 8, 7, 0.04), rgba(7, 8, 7, 0.9)),
    url("https://images.unsplash.com/photo-1519669556878-63bdad8a1a49?auto=format&fit=crop&w=1200&q=80") center / cover;
}

.mode-survival {
  background:
    linear-gradient(180deg, rgba(7, 8, 7, 0.04), rgba(7, 8, 7, 0.9)),
    url("https://images.unsplash.com/photo-1534423861386-85a16f5d13fd?auto=format&fit=crop&w=1200&q=80") center / cover;
}

.roadmap-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.roadmap-list article {
  padding: 26px;
  background: var(--panel);
}

.category-hub {
  padding-top: clamp(42px, 7vw, 78px);
}

.category-grid,
.support-grid,
.arsenal-grid,
.clan-grid,
.stat-cards,
.rules-list,
.legal-grid,
.map-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.category-card,
.support-card,
.arsenal-grid article,
.clan-grid article,
.stat-cards article,
.rules-list article,
.legal-grid article,
.info-tile {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.category-card span,
.support-card span,
.arsenal-grid span,
.clan-grid span,
.stat-cards span,
.rules-list span,
.legal-grid span,
.map-card span,
.contact-list span {
  color: var(--accent-3);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.category-card p,
.support-card p,
.arsenal-grid p,
.clan-grid p,
.stat-cards p,
.rules-list p,
.legal-grid p,
.map-card p,
.contact-list p,
.legal-note p {
  color: var(--muted);
}

.category-card a,
.support-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent-2);
  font-weight: 900;
}

.store-band,
.footer-cta {
  width: min(1180px, calc(100% - 36px));
  margin: clamp(42px, 7vw, 84px) auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(25, 230, 177, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.92), rgba(7, 8, 7, 0.72)),
    url("https://images.unsplash.com/photo-1560253023-3ec5d502959f?auto=format&fit=crop&w=1600&q=80") center / cover;
  box-shadow: var(--shadow);
}

.store-band h2,
.footer-cta h2 {
  max-width: 780px;
}

.store-band p {
  max-width: 680px;
  color: var(--muted);
}

.store-actions,
.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.faq-grid article {
  padding: 24px;
  border-left: 4px solid var(--accent);
  background: var(--panel);
}

.faq-grid p {
  color: var(--muted);
}

.community-hero,
.clans-hero {
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.94), rgba(7, 8, 7, 0.58)),
    url("https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=1900&q=82") center / cover;
}

.support-hero,
.contact-hero {
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.94), rgba(7, 8, 7, 0.58)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1900&q=82") center / cover;
}

.maps-hero,
.media-hero {
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.94), rgba(7, 8, 7, 0.58)),
    url("https://images.unsplash.com/photo-1511882150382-421056c89033?auto=format&fit=crop&w=1900&q=82") center / cover;
}

.arsenal-hero,
.rules-hero,
.rankings-hero,
.faq-hero,
.legal-hero,
.shop-hero {
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.94), rgba(7, 8, 7, 0.58)),
    url("https://images.unsplash.com/photo-1519669556878-63bdad8a1a49?auto=format&fit=crop&w=1900&q=82") center / cover;
}

.shop-shell {
  padding-top: clamp(42px, 7vw, 78px);
}

.shop-shell .woocommerce,
.shop-shell .woocommerce-notices-wrapper,
.shop-shell form,
.shop-shell table,
.shop-shell .cart_totals,
.shop-shell .woocommerce-checkout-review-order {
  color: var(--text);
}

.shop-shell input,
.shop-shell select,
.shop-shell textarea {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0d0f0d;
  color: var(--text);
  padding: 10px 12px;
}

.community-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
}

.community-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.community-card.primary {
  grid-row: span 2;
  min-height: 538px;
  background:
    linear-gradient(180deg, rgba(7, 8, 7, 0.08), rgba(7, 8, 7, 0.9)),
    url("https://images.unsplash.com/photo-1493711662062-fa541adb3fc8?auto=format&fit=crop&w=1400&q=82") center / cover;
}

.community-card span {
  color: var(--accent-3);
  font-weight: 900;
}

.community-card p {
  color: var(--muted);
}

.community-card a {
  width: fit-content;
  color: var(--accent-2);
  font-weight: 900;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 18px;
}

.contact-panel {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 63, 52, 0.34);
  border-radius: 8px;
  background: var(--panel);
}

.contact-panel p {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.map-card,
.media-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(7, 8, 7, 0.06), rgba(7, 8, 7, 0.9)),
    url("https://images.unsplash.com/photo-1511882150382-421056c89033?auto=format&fit=crop&w=1200&q=80") center / cover;
}

.map-grid {
  grid-template-columns: repeat(3, 1fr);
}

.map-industrial,
.media-two {
  background:
    linear-gradient(180deg, rgba(7, 8, 7, 0.06), rgba(7, 8, 7, 0.9)),
    url("https://images.unsplash.com/photo-1511512578047-dfb367046420?auto=format&fit=crop&w=1200&q=80") center / cover;
}

.map-desert,
.media-three {
  background:
    linear-gradient(180deg, rgba(7, 8, 7, 0.06), rgba(7, 8, 7, 0.9)),
    url("https://images.unsplash.com/photo-1534423861386-85a16f5d13fd?auto=format&fit=crop&w=1200&q=80") center / cover;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.media-card {
  min-height: 420px;
}

.media-four {
  background:
    linear-gradient(180deg, rgba(7, 8, 7, 0.06), rgba(7, 8, 7, 0.9)),
    url("https://images.unsplash.com/photo-1550745165-9bc0b252726f?auto=format&fit=crop&w=1200&q=82") center / cover;
}

.leaderboard {
  display: grid;
  gap: 10px;
}

.leader-row {
  display: grid;
  grid-template-columns: 120px 1fr 1fr 120px;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.leader-head {
  color: var(--accent-3);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--panel-strong);
}

.legal-note {
  padding-top: 0;
}

.single-layout {
  padding: clamp(92px, 12vw, 148px) 0 86px;
}

.single-layout header {
  margin-bottom: 30px;
}

.single-image {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.single-content {
  max-width: 860px;
  margin-top: 30px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050605;
  padding: 48px clamp(18px, 5vw, 78px);
}

.footer-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  gap: 30px;
}

.footer-kicker {
  color: var(--accent);
  font-weight: 900;
}

.footer-grid h2 {
  margin-top: 8px;
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.footer-menu {
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.footer-contact {
  display: grid;
  gap: 10px;
  align-content: start;
  color: var(--muted);
}

.footer-contact a {
  color: var(--accent-2);
  font-weight: 900;
}

.woocommerce .products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: auto;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .primary-nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .primary-nav.is-open {
    display: block;
  }

  .menu {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .menu a {
    display: block;
    padding: 13px 0;
    border-top: 1px solid var(--line);
  }

  .header-cta {
    display: none;
  }

  .hero,
  .play-hero,
  .split-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-band,
  .card-grid,
  .card-grid.small,
  .visual-grid,
  .mode-grid,
  .play-info-grid,
  .roadmap-list,
  .category-grid,
  .support-grid,
  .arsenal-grid,
  .clan-grid,
  .stat-cards,
  .rules-list,
  .legal-grid,
  .map-grid,
  .media-grid,
  .woocommerce .products {
    grid-template-columns: repeat(2, 1fr);
  }

  .store-band,
  .footer-cta,
  .community-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .store-actions,
  .footer-cta-actions {
    justify-content: flex-start;
  }

  .event-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding-top: 96px;
  }

  h1 {
    font-size: 3rem;
  }

  .stats-band,
  .card-grid,
  .card-grid.small,
  .visual-grid,
  .mode-grid,
  .play-info-grid,
  .roadmap-list,
  .category-grid,
  .support-grid,
  .arsenal-grid,
  .clan-grid,
  .stat-cards,
  .rules-list,
  .legal-grid,
  .map-grid,
  .media-grid,
  .faq-grid,
  .woocommerce .products {
    grid-template-columns: 1fr;
  }

  .leader-row {
    grid-template-columns: 1fr;
  }

  .visual-card.large {
    min-height: 320px;
  }

  .play-frame {
    min-height: 420px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .game-launcher {
    height: 68vh;
  }
}
