:root {
  --bg: #070b12;
  --bg-2: #0b111b;
  --panel: #101824;
  --panel-2: #121d2b;
  --line: rgba(205, 246, 255, 0.13);
  --line-strong: rgba(91, 244, 255, 0.35);
  --text: #edf8ff;
  --muted: #9eb3c3;
  --soft: #c8d6df;
  --cyan: #38e8ff;
  --green: #53ff9f;
  --red: #ff4d55;
  --amber: #ffb84d;
  --violet: #ad7cff;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(56, 232, 255, 0.13), transparent 30rem),
    radial-gradient(circle at 86% 12%, rgba(255, 77, 85, 0.08), transparent 28rem),
    linear-gradient(180deg, #060911 0%, #0b111b 42%, #070b12 100%);
  line-height: 1.55;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

.sr-only {
  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;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--cyan);
  color: #041017;
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 11, 18, 0.82);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 18px rgba(56, 232, 255, 0.18);
}

.brand span {
  display: block;
}

.brand__name {
  font-family: Orbitron, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  font-size: 1.08rem;
}

.brand__domain {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: -3px;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nav__links a {
  color: var(--soft);
  font-size: 0.92rem;
  padding: 9px 10px;
  border-radius: var(--radius);
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: var(--radius);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: linear-gradient(135deg, rgba(56, 232, 255, 0.14), rgba(83, 255, 159, 0.12));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(83, 255, 159, 0.7);
}

.btn--primary {
  color: #041018;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  border-color: transparent;
  font-weight: 800;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
}

.btn--small {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 0.9rem;
}

.btn svg,
.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background-image:
    linear-gradient(90deg, rgba(7, 11, 18, 0.95) 0%, rgba(7, 11, 18, 0.78) 38%, rgba(7, 11, 18, 0.26) 72%, rgba(7, 11, 18, 0.86) 100%),
    url("../img/brand/hero-arcade-portal.png");
  background-size: cover;
  background-position: center;
}

.hero::after,
.band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 76%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 86px 0 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--green);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(2.35rem, 6.8vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: #d2e1eb;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
  margin-top: 44px;
}

.assurance__item {
  min-height: 96px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(11, 17, 27, 0.72);
  border-radius: var(--radius);
}

.assurance__item strong {
  display: block;
  color: var(--text);
  font-size: 0.94rem;
  margin-bottom: 6px;
}

.assurance__item span {
  color: var(--muted);
  font-size: 0.88rem;
}

.section,
.band {
  position: relative;
  padding: 82px 0;
}

.band {
  background:
    linear-gradient(180deg, rgba(18, 29, 43, 0.6), rgba(7, 11, 18, 0.82)),
    radial-gradient(circle at 82% 18%, rgba(255, 184, 77, 0.12), transparent 25rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.container {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

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

.section-head h2,
.legal-hero h1 {
  font-family: Orbitron, Inter, sans-serif;
  letter-spacing: 0;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.4vw, 3rem);
  line-height: 1.05;
}

.section-head p {
  max-width: 640px;
  margin: 10px 0 0;
  color: var(--muted);
}

.meta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.84rem;
}

.chip--hot {
  border-color: rgba(255, 184, 77, 0.48);
  color: #ffe0a7;
  background: rgba(255, 184, 77, 0.08);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.weekly-card {
  position: relative;
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0d1420;
  box-shadow: var(--shadow);
}

.weekly-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.76;
}

.weekly-card__content {
  position: absolute;
  inset: auto 0 0;
  padding: 28px;
  background: linear-gradient(180deg, transparent, rgba(7, 11, 18, 0.94) 42%, rgba(7, 11, 18, 0.98));
}

.weekly-card__content h3 {
  margin: 10px 0;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1;
}

.weekly-card__content p {
  max-width: 640px;
  color: #cad9e4;
  margin: 0 0 18px;
}

.mini-stack {
  display: grid;
  gap: 18px;
}

.mini-game {
  min-height: 186px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(56, 232, 255, 0.08), rgba(255, 77, 85, 0.06)), var(--panel);
  overflow: hidden;
  display: grid;
  grid-template-columns: 44% 1fr;
}

.mini-game img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-game__body {
  padding: 18px;
  align-self: center;
}

.mini-game__body h3 {
  margin: 6px 0;
}

.mini-game__body p {
  color: var(--muted);
  margin: 0;
  font-size: 0.92rem;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}

.search-box {
  position: relative;
}

.search-box svg {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: var(--muted);
}

.search-box input,
.sort-select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  outline: none;
}

.search-box input {
  padding: 0 14px 0 44px;
}

.sort-select {
  padding: 0 40px 0 14px;
}

.search-box input:focus,
.sort-select:focus {
  border-color: var(--line-strong);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.filter-tabs button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 12px;
}

.filter-tabs button.is-active {
  color: #041018;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  border-color: transparent;
  font-weight: 800;
}

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

.game-card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)), var(--panel);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.game-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(56, 232, 255, 0.24), rgba(255, 77, 85, 0.16)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 14px),
    #0a111c;
  overflow: hidden;
}

.game-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.game-card:hover .game-card__media img {
  transform: scale(1.04);
}

.game-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(7, 11, 18, 0.88));
}

.game-card__badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  min-width: 54px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(7, 11, 18, 0.78);
  color: var(--text);
  font-family: Orbitron, Inter, sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: 0 0 26px rgba(56, 232, 255, 0.16);
}

.game-card__logo {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  max-width: 112px;
  max-height: 58px;
  padding: 6px;
  object-fit: contain;
  border-radius: var(--radius);
  background: rgba(7, 11, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.game-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.game-card__top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.game-card__top > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}

.game-card h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.22;
}

.score {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #041018;
  background: var(--amber);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.game-card p {
  color: var(--muted);
  margin: 12px 0 0;
  font-size: 0.94rem;
}

.game-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 16px 0;
}

.tag {
  font-size: 0.76rem;
  color: #bdd0dc;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  padding: 4px 8px;
}

.game-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.free-note {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 800;
}

.empty-state {
  display: none;
  padding: 28px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.stats-grid,
.process-grid,
.review-grid,
.faq-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stat,
.process,
.review,
.faq-item,
.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 24, 36, 0.82);
  padding: 20px;
}

.stat strong {
  display: block;
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--cyan);
  line-height: 1;
}

.stat span,
.process p,
.review p,
.faq-item p,
.legal-card p,
.leaderboard li span {
  color: var(--muted);
}

.process h3,
.review h3,
.faq-item h3,
.legal-card h3 {
  margin: 0 0 9px;
}

.process__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: #041018;
  font-weight: 900;
}

.leaderboard {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(16, 24, 36, 0.78);
}

.leaderboard ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.leaderboard li {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.leaderboard li:last-child {
  border-bottom: 0;
}

.rank {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(56, 232, 255, 0.12);
  color: var(--cyan);
  font-weight: 900;
}

.rating-bar {
  width: 112px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.rating-bar i {
  display: block;
  height: 100%;
  width: var(--score-width, 50%);
  background: linear-gradient(90deg, var(--red), var(--amber), var(--green));
}

.review {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review__stars {
  color: var(--amber);
  letter-spacing: 0;
}

.review footer {
  color: var(--soft);
  margin-top: auto;
  font-weight: 800;
}

.faq-item {
  min-height: 100%;
}

.notice {
  border: 1px solid rgba(83, 255, 159, 0.38);
  border-radius: var(--radius);
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(83, 255, 159, 0.1), rgba(56, 232, 255, 0.06)),
    rgba(16, 24, 36, 0.88);
  color: #dffdf0;
}

.notice strong {
  color: var(--green);
}

.legal-hero {
  padding: 78px 0 40px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(7, 11, 18, 0.72), rgba(7, 11, 18, 1)),
    url("../img/brand/hero-arcade-portal.png");
  background-size: cover;
  background-position: center 34%;
}

.legal-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4.3rem);
  line-height: 1.02;
}

.legal-hero p {
  max-width: 760px;
  color: var(--soft);
  font-size: 1.05rem;
}

.legal-content {
  padding: 56px 0 82px;
}

.legal-content article {
  max-width: 900px;
}

.legal-content h2 {
  margin: 34px 0 10px;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 1.45rem;
}

.legal-content p,
.legal-content li {
  color: #c8d6df;
}

.legal-content ul {
  padding-left: 22px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #05080d;
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
}

.footer-grid p {
  color: var(--muted);
  margin: 12px 0 0;
  max-width: 680px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-content: start;
  justify-content: end;
}

.footer-links a {
  color: var(--soft);
}

.footer-links a:hover {
  color: var(--cyan);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner__inner {
  width: min(100%, 980px);
  margin: 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(7, 11, 18, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.cookie-banner p {
  margin: 4px 0 0;
  color: var(--muted);
}

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

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.68);
}

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

.modal__dialog {
  width: min(100%, 720px);
  max-height: min(82vh, 760px);
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #0b111b;
  box-shadow: var(--shadow);
}

.modal__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.modal__head h3 {
  margin: 0;
}

.modal__close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.modal__body {
  padding: 20px;
}

.modal__body p,
.modal__body li {
  color: var(--muted);
}

.modal__body ul {
  padding-left: 20px;
}

@media (max-width: 980px) {
  .feature-grid,
  .catalog-grid,
  .stats-grid,
  .process-grid,
  .review-grid,
  .faq-grid,
  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .assurance {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .cookie-banner__inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: start;
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav__links {
    position: fixed;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 11, 18, 0.97);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    padding: 12px;
  }

  .nav .btn {
    display: none;
  }

  .hero {
    min-height: 680px;
    background-position: 58% center;
  }

  .hero__inner {
    padding-top: 58px;
  }

  .section,
  .band {
    padding: 58px 0;
  }

  .section-head {
    display: block;
  }

  .feature-grid,
  .mini-game,
  .catalog-grid,
  .stats-grid,
  .process-grid,
  .review-grid,
  .faq-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

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

  .weekly-card__content {
    padding: 22px;
  }

  .mini-game {
    min-height: auto;
  }

  .mini-game img {
    height: 190px;
  }

  .leaderboard li {
    grid-template-columns: 34px 1fr;
  }

  .rating-bar {
    grid-column: 2;
    width: 100%;
  }

  .cookie-actions {
    align-items: stretch;
  }

  .cookie-actions .btn {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .hero h1 {
    font-size: 2.25rem;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .brand__domain {
    display: none;
  }

  .game-card__logo {
    max-width: 92px;
  }
}
