:root {
  --bg: #000;
  --panel: #070707;
  --panel-soft: #101010;
  --red: #e60000;
  --red-soft: #ff2030;
  --text: #efefef;
  --muted: #9f9f9f;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
  --content: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 110%, rgba(255, 32, 48, 0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 34% 118%, rgba(255, 255, 255, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 57% 112%, rgba(230, 0, 0, 0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 76% 121%, rgba(255, 255, 255, 0.1) 0 1px, transparent 2px),
    radial-gradient(circle at 92% 116%, rgba(255, 32, 48, 0.16) 0 2px, transparent 3px),
    linear-gradient(180deg, #000 0%, #030303 48%, #000 100%);
  background-size: 220px 620px, 260px 680px, 300px 760px, 240px 700px, 340px 820px, auto;
  background-position: 0 0, 70px 120px, 130px 80px, 190px 160px, 250px 40px, 0 0;
  color: var(--text);
  font-family: "Quicksand", sans-serif;
  font-size: 16px;
  line-height: 1.42;
  overflow-x: hidden;
  position: relative;
  isolation: isolate;
  animation: background-embers 18s linear infinite;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 78%, rgba(230, 0, 0, 0.16), transparent 22%),
    radial-gradient(circle at 86% 42%, rgba(230, 0, 0, 0.12), transparent 24%);
  opacity: 0.62;
  animation: background-glow 14s ease-in-out infinite alternate;
}

@keyframes background-embers {
  from {
    background-position: 0 0, 70px 120px, 130px 80px, 190px 160px, 250px 40px, 0 0;
  }

  to {
    background-position: 0 -620px, 70px -560px, 130px -680px, 190px -540px, 250px -780px, 0 0;
  }
}

@keyframes background-glow {
  from {
    transform: translate3d(-2%, 2%, 0) scale(1);
    opacity: 0.42;
  }

  to {
    transform: translate3d(2%, -3%, 0) scale(1.08);
    opacity: 0.7;
  }
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 30;
  background: #fff;
  color: #000;
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.livebar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: #030303;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03);
  color: #bdbdbd;
  font-size: 21px;
  font-weight: 300;
}

.livebar__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding-left: 0.6rem;
}

.pulse {
  width: 11px;
  height: 11px;
  border: 1px solid #821320;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(230, 0, 0, 0.5);
}

.livebar__state {
  color: #d8d8d8;
}

.livebar.is-online .pulse {
  background: #00e676;
  border-color: #00e676;
  box-shadow: 0 0 16px rgba(0, 230, 118, 0.75);
}

.livebar.is-online .livebar__state {
  color: #00e676;
}

.twitch-float {
  justify-self: end;
  margin-right: 0.5rem;
  width: 34px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: #7139d4;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
}

.livebar__platforms {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 1rem;
}

.stream-platform {
  min-height: 28px;
  display: inline-grid;
  place-items: center;
  padding: 0 10px;
  border-radius: 5px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.stream-platform--kick {
  background: #39ff14;
  color: #031203;
}

.stream-platform--youtube {
  background: #ff0033;
}

.site-header {
  position: sticky;
  top: 40px;
  z-index: 19;
  height: 86px;
  display: grid;
  grid-template-columns: 120px 84px 1fr auto;
  align-items: center;
  background: var(--red);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.brand {
  width: 88px;
  height: 88px;
  margin-left: 12px;
  display: grid;
  place-items: center;
}

.brand img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.search-toggle,
.more-toggle,
.more-close,
.modal-close,
.cookie-close {
  border: 0;
  background: transparent;
  color: #171717;
  cursor: pointer;
}

.search-toggle {
  width: 56px;
  height: 56px;
  font-size: 39px;
  line-height: 1;
  opacity: 0.72;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: clamp(1rem, 3vw, 4rem);
  font-size: 16px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.78);
}

.primary-nav a,
.more-panel a {
  transition: color 160ms ease, opacity 160ms ease;
}

.primary-nav a:hover,
.more-panel a:hover {
  color: #fff;
}

.more-toggle {
  width: 70px;
  height: 70px;
  margin-right: 14px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
}

.more-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 25;
  width: min(315px, 82vw);
  padding: 48px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  background: var(--red);
  color: #151515;
  box-shadow: -20px 0 48px rgba(0, 0, 0, 0.48);
  transform: translateX(105%);
  transition: transform 220ms ease;
  font-weight: 700;
}

.more-panel.is-open {
  transform: translateX(0);
}

.more-close {
  position: absolute;
  right: 24px;
  top: 13px;
  font-size: 34px;
}

.search-panel {
  position: fixed;
  inset: 126px 0 auto 0;
  z-index: 21;
  display: none;
  padding: 24px;
  background: rgba(0, 0, 0, 0.93);
  border-bottom: 1px solid rgba(230, 0, 0, 0.45);
}

.search-panel.is-open {
  display: block;
}

.search-box {
  width: min(680px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}

.search-box input {
  min-width: 0;
  height: 44px;
  border: 1px solid #3b3b3b;
  background: #090909;
  color: var(--text);
  padding: 0 12px;
}

.search-box button,
.button,
.cookie-actions button {
  border: 2px solid var(--red);
  background: transparent;
  color: #fff;
  min-height: 42px;
  padding: 0 28px;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.search-box button:hover,
.button:hover,
.cookie-actions button:hover {
  background: var(--red);
  color: #fff;
}

.search-results {
  width: min(680px, 100%);
  margin: 14px auto 0;
  color: var(--muted);
}

.search-results a {
  display: block;
  padding: 7px 0;
  color: var(--red-soft);
}

.masthead {
  position: relative;
  min-height: 356px;
  background: #050505;
  overflow: hidden;
}

.masthead__image {
  width: 100%;
  height: 356px;
  object-fit: cover;
  object-position: center 43%;
  opacity: 0.82;
}

.masthead::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.12) 68%, #000 100%);
  pointer-events: none;
}

.ember-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.85;
  background-image:
    radial-gradient(ellipse at 12% 58%, #050505 0 4px, transparent 5px),
    radial-gradient(ellipse at 40% 44%, #050505 0 4px, transparent 5px),
    radial-gradient(ellipse at 67% 36%, #050505 0 4px, transparent 5px),
    radial-gradient(ellipse at 88% 63%, #050505 0 5px, transparent 6px),
    radial-gradient(ellipse at 57% 39%, #ee0000 0 3px, transparent 4px),
    radial-gradient(ellipse at 74% 47%, #d70000 0 3px, transparent 4px);
  background-size: 260px 190px, 310px 210px, 230px 160px, 360px 220px, 310px 230px, 220px 170px;
  background-position: 10px 390px, 120px 430px, 40px 420px, 180px 460px, 70px 410px, 150px 440px;
  animation: particle-rise 9s linear infinite;
}

@keyframes particle-rise {
  from {
    background-position: 10px 390px, 120px 430px, 40px 420px, 180px 460px, 70px 410px, 150px 440px;
  }

  to {
    background-position: 10px -190px, 120px -230px, 40px -160px, 180px -260px, 70px -210px, 150px -180px;
  }
}

.masthead__content {
  position: absolute;
  inset: 70px 0 auto;
  z-index: 2;
  display: grid;
  justify-items: center;
  color: #f8f8f8;
  text-shadow: 0 2px 7px #000;
}

.masthead__logo {
  width: 108px;
  height: 108px;
  object-fit: contain;
  margin-bottom: 25px;
}

.masthead__content p {
  margin: 0 0 6px;
  font-weight: 700;
}

.countdown {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.countdown span {
  display: grid;
  justify-items: center;
}

.countdown strong,
.countdown b {
  font-family: "Khand", sans-serif;
  font-size: clamp(60px, 8vw, 88px);
  line-height: 0.86;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 4px 6px #000;
}

.countdown small {
  color: #d7d7d7;
  font-size: 16px;
}

.watch-button {
  display: none;
  margin-top: 12px;
  background: var(--red);
}

.site-main {
  min-height: 520px;
  outline: none;
}

.content-wrap {
  width: min(var(--content), calc(100% - 42px));
  margin: 0 auto;
  padding: 36px 0 48px;
}

.home-title {
  width: min(900px, calc(100% - 42px));
  margin: 30px auto 56px;
  color: var(--red-soft);
  text-align: center;
  font-size: clamp(32px, 4.2vw, 44px);
  line-height: 1.14;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0 0 20px;
  color: var(--red-soft);
  line-height: 1.15;
}

h1 {
  font-size: clamp(33px, 5vw, 50px);
  text-align: center;
}

h2 {
  font-size: clamp(28px, 4vw, 38px);
}

h3 {
  font-size: 20px;
}

p {
  margin: 0 0 18px;
  color: #bdbdbd;
}

strong {
  color: #fff;
}

.text-page {
  max-width: 1100px;
}

.text-page ul {
  color: #eee;
  font-weight: 700;
}

.text-page li {
  margin: 5px 0;
}

.wp-content-page {
  color: #bdbdbd;
}

.wp-content-page a,
.post-card h3 a {
  color: var(--red-soft);
}

.wp-content-page a:hover,
.post-card h3 a:hover {
  color: #fff;
}

.wp-content-page img,
.wp-content-page figure,
.wp-content-page iframe,
.wp-content-page video {
  max-width: 100%;
}

.wp-content-page iframe {
  width: 100%;
}

.wp-block-image,
.wp-block-embed,
.wp-block-gallery,
.wp-block-table {
  margin: 24px 0;
}

.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}

.wp-block-table td,
.wp-block-table th {
  border: 1px solid #242424;
  padding: 10px;
}

.wp-post-thumb {
  display: block;
  margin: 12px 0 18px;
}

.wp-post-thumb img {
  width: 100%;
  height: auto;
}

.wp-pagination {
  margin-top: 28px;
  color: var(--muted);
}

.wp-pagination a,
.wp-pagination span {
  display: inline-flex;
  margin: 3px;
  padding: 8px 12px;
  border: 1px solid rgba(230, 0, 0, 0.5);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 10px;
  align-items: start;
}

.blog-list {
  display: grid;
  gap: 20px;
}

.post-card,
.dark-card,
.hardware-card,
.streamer-card {
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.post-card {
  padding: 24px 22px 20px;
}

.post-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.byline {
  color: #d6d6d6;
  margin-bottom: 18px;
  font-size: 14px;
}

.post-card .button {
  display: inline-grid;
  place-items: center;
  margin-top: 4px;
  min-width: 134px;
}

.twitch-column {
  position: sticky;
  top: 148px;
  min-height: 460px;
  background: #101010;
}

.twitch-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #050505;
}

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

.ogm77-embed {
  width: 100%;
  margin: 22px 0;
  background: #050505;
  border: 1px solid rgba(230, 0, 0, 0.38);
}

.ogm77-embed iframe {
  width: 100%;
  border: 0;
  display: block;
}

.ogm77-twitch-combo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 14px;
  align-items: start;
}

.ogm77-twitch-wall {
  --wall-columns: 4;
  display: grid;
  grid-template-columns: repeat(var(--wall-columns), minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.ogm77-twitch-card {
  min-width: 0;
  background: #050505;
  border: 1px solid rgba(230, 0, 0, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.ogm77-twitch-card__preview {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  position: relative;
  display: block;
  text-decoration: none;
}

.ogm77-twitch-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 180ms ease, filter 180ms ease;
}

.ogm77-twitch-card__preview:hover img,
.ogm77-twitch-card__preview:focus-visible img {
  filter: brightness(1.08);
  transform: scale(1.03);
}

.ogm77-twitch-card__play {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.56);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ogm77-twitch-card__play::before {
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  border-top: 10px solid transparent;
  content: "";
  left: 16px;
  position: absolute;
  top: 10px;
}

.ogm77-twitch-card__chat iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.ogm77-twitch-card__body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.ogm77-twitch-card__body h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  overflow-wrap: anywhere;
}

.ogm77-twitch-card__body .button {
  justify-self: start;
  min-width: 0;
  padding-inline: 18px;
}

.ogm77-twitch-card__chat {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.ogm77-twitch-card__chat summary {
  cursor: pointer;
  padding: 12px 16px;
  color: var(--red-soft);
  font-weight: 700;
}

.ogm77-twitch-card__chat iframe {
  height: 340px;
}

.page-hero {
  text-align: center;
  margin-bottom: 30px;
}

.page-hero h1 {
  margin-top: 8px;
}

.page-image {
  width: min(420px, 80vw);
  margin: 0 auto 30px;
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.hardware-grid,
.streamer-grid,
.affiliate-grid,
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hardware-card {
  min-height: 186px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
}

.hardware-card img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.hardware-card span,
.small-label {
  display: block;
  color: var(--red-soft);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hardware-card h3 {
  color: #fff;
  font-size: 16px;
  margin: 6px 0 10px;
}

.hardware-card a {
  color: var(--red-soft);
  font-size: 14px;
  font-weight: 700;
}

.streamer-card,
.dark-card {
  padding: 22px;
}

.streamer-card h3 {
  color: #fff;
}

.streamer-fallback {
  padding-top: 0;
}

.affiliate-card-image {
  width: 100%;
  max-height: 110px;
  object-fit: contain;
  margin-bottom: 18px;
  background: #0a0a0a;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 28px;
}

.badge-row span {
  border: 1px solid rgba(230, 0, 0, 0.65);
  color: #fff;
  padding: 8px 12px;
  border-radius: 3px;
  background: rgba(230, 0, 0, 0.14);
  font-weight: 700;
}

.fuel-tool {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(230, 0, 0, 0.38);
  background: linear-gradient(180deg, rgba(230, 0, 0, 0.12), rgba(0, 0, 0, 0.2));
}

.fuel-controls {
  display: grid;
  grid-template-columns: 1fr 160px 160px auto auto;
  gap: 10px;
}

.fuel-controls input,
.fuel-controls select,
.backend-form input {
  border: 1px solid #333;
  background: #050505;
  color: #fff;
  min-height: 42px;
  padding: 0 10px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  color: #ddd;
}

.table th,
.table td {
  border-bottom: 1px solid #202020;
  padding: 11px 8px;
  text-align: left;
}

.table th {
  color: var(--red-soft);
}

.map-box {
  min-height: 340px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(230, 0, 0, 0.36);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 54% 48%, rgba(230, 0, 0, 0.22), transparent 24%),
    #070707;
  background-size: 44px 44px, 44px 44px, auto, auto;
  color: var(--muted);
}

.music-player {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 18px;
  background: #070707;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.backend-form {
  display: grid;
  gap: 14px;
  max-width: 520px;
  margin: 0 auto 24px;
}

.backend-form label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-weight: 700;
}

.weekly-schedule-editor {
  display: grid;
  gap: 10px;
}

.weekly-schedule-row {
  display: grid;
  grid-template-columns: 28px 1fr 128px;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #080808;
}

.weekly-schedule-row input[type="time"] {
  min-height: 38px;
  border: 1px solid #333;
  background: #050505;
  color: #fff;
  padding: 0 10px;
}

.backend-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.backend-status {
  color: var(--muted);
  text-align: center;
}

.affiliates-editor {
  margin-top: 30px;
  padding: 24px;
}

.backend-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.backend-section-head h2 {
  margin: 0;
}

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

.affiliate-editor-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr auto;
  gap: 12px;
  align-items: end;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #080808;
}

.affiliate-editor-row label {
  display: grid;
  gap: 7px;
  color: #fff;
  font-weight: 700;
}

.affiliate-editor-row input {
  min-width: 0;
  min-height: 42px;
  border: 1px solid #333;
  background: #050505;
  color: #fff;
  padding: 0 10px;
}

.play {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: #111;
  color: #fff;
}

.progress {
  height: 7px;
  border-radius: 999px;
  background: #242424;
  overflow: hidden;
}

.progress i {
  display: block;
  width: 38%;
  height: 100%;
  background: var(--red);
}

.tip-button {
  position: fixed;
  left: 15px;
  bottom: 20px;
  z-index: 18;
  min-width: 138px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(230, 0, 0, 0.25);
  font-weight: 700;
  cursor: pointer;
}

.tip-button span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--red);
}

.watch-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.76);
}

.watch-modal.is-open {
  display: flex;
}

.watch-modal__panel {
  position: relative;
  width: min(980px, 100%);
  background: #050505;
  border: 1px solid rgba(230, 0, 0, 0.6);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  right: 8px;
  top: -44px;
  color: #fff;
  font-size: 40px;
}

.cookie-card {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 28;
  width: min(500px, calc(100vw - 32px));
  padding: 38px 18px 14px;
  border-radius: 8px;
  background: #fff;
  color: #222;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.62);
  font-size: 13px;
}

.cookie-card.is-hidden {
  display: none;
}

.cookie-card p,
.cookie-card a {
  color: #555;
}

.cookie-card a {
  text-decoration: underline;
}

.cookie-close {
  position: absolute;
  right: 16px;
  top: 10px;
  font-size: 31px;
  color: #111;
}

.cookie-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.cookie-actions button {
  min-height: 44px;
  padding: 0 10px;
  color: #222;
  border-color: #eee;
  background: #f8f8f8;
}

.cookie-actions button:first-child {
  background: #1f7ac0;
  border-color: #1f7ac0;
  color: #fff;
}

.cookie-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 12px;
  font-size: 12px;
}

.site-footer {
  padding: 34px 20px 28px;
  text-align: center;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer h3 {
  color: var(--red-soft);
}

.partner-strip {
  width: min(760px, 100%);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: center;
}

.partner-strip a {
  min-height: 94px;
  display: grid;
  place-items: center;
  background: #0a0a0a;
  padding: 10px;
}

.partner-strip img {
  max-height: 74px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 16px;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  color: #aaa;
}

.site-footer a:hover {
  color: var(--red-soft);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 100px 52px 1fr auto;
  }

  .primary-nav {
    justify-content: flex-start;
    gap: 18px;
    overflow: auto hidden;
    padding: 0 8px;
    scrollbar-width: none;
  }

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

  .twitch-column {
    position: static;
    min-height: 0;
  }

  .hardware-grid,
  .streamer-grid,
  .affiliate-grid,
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ogm77-twitch-combo {
    grid-template-columns: 1fr;
  }

  .ogm77-twitch-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fuel-controls {
    grid-template-columns: 1fr 1fr;
  }

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

  .backend-section-head {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .livebar {
    height: 36px;
    font-size: 16px;
  }

  .livebar__platforms {
    display: none;
  }

  .ogm77-twitch-wall {
    grid-template-columns: 1fr;
  }

  .site-header {
    top: 36px;
    height: 76px;
    grid-template-columns: 82px 42px 1fr 66px;
  }

  .brand,
  .brand img {
    width: 72px;
    height: 72px;
  }

  .search-toggle {
    width: 42px;
    font-size: 30px;
  }

  .primary-nav {
    font-size: 14px;
  }

  .more-toggle {
    width: 56px;
    height: 56px;
    margin-right: 8px;
    font-size: 14px;
  }

  .masthead,
  .masthead__image {
    min-height: 330px;
    height: 330px;
  }

  .masthead__content {
    inset: 48px 0 auto;
  }

  .masthead__logo {
    width: 88px;
    height: 88px;
  }

  .countdown {
    gap: 10px;
  }

  .countdown strong,
  .countdown b {
    font-size: 56px;
  }

  .home-title {
    margin-top: 26px;
    margin-bottom: 34px;
  }

  .content-wrap {
    width: min(100% - 28px, var(--content));
  }

  .hardware-grid,
  .streamer-grid,
  .affiliate-grid,
  .shop-grid,
  .partner-strip {
    grid-template-columns: 1fr;
  }

  .hardware-card {
    grid-template-columns: 82px 1fr;
  }

  .search-panel {
    inset: 112px 0 auto 0;
  }

  .search-box,
  .fuel-controls {
    grid-template-columns: 1fr;
  }

  .cookie-actions,
  .cookie-links {
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .ember-layer {
    animation: particle-rise 9s linear infinite !important;
  }
}
