@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@400;500;600;700;800&family=Rubik:wght@400;500;600;700;800&display=swap");

:root {
  --background: #f8fafc;
  --foreground: #555555;
  --brand-bear: #f59e0b;
  --brand-bear-dark: #c86f10;
  --surface-1: #ffffff;
  --surface-2: #f3f6f9;
  --ink: #111827;
  --border: #cbd5e1;
  --footer: #ffffff;
  --shadow-pop: 0 18px 42px -24px rgba(37, 48, 66, 0.35);
  --shadow-pop-sm: 0 10px 24px -18px rgba(37, 48, 66, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-main, "Dosis"), sans-serif;
}

body[data-locale="ru"] {
  --font-main: "Rubik";
}

body[data-locale="en"] {
  --font-main: "Dosis";
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: #222222;
  font-weight: 700;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.container {
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(203, 213, 225, 0.6);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 81px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 16px;
}

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

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand span {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #222222;
  white-space: nowrap;
}

.brand .accent {
  color: var(--brand-bear);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #222222;
  transition: color 0.18s ease;
}

body[data-locale="ru"] .nav-links a {
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover,
.footer-link:hover {
  color: var(--brand-bear-dark);
}

.lang-switch {
  display: inline-flex;
  height: 40px;
  align-items: center;
  gap: 8px;
  border: 2px solid #222222;
  background: #ffffff;
  padding-inline: 12px;
  color: #222222;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 0 #f28c28;
  transition: transform 0.16s ease, box-shadow 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.lang-switch img {
  width: 24px;
  height: 16px;
  object-fit: cover;
}

.lang-switch:hover {
  transform: translateY(-2px);
  border-color: var(--brand-bear-dark);
  color: var(--brand-bear-dark);
  box-shadow: 5px 5px 0 0 #222222;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 40px;
  border: 2px solid #222222;
  background: #ffffff;
  color: #222222;
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--ink);
}

.hero:hover::after {
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 33%;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.05), transparent);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 24px 20px;
  text-align: center;
}

.hero-tagline {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
}

.button,
.button-outline,
.button-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
}

.button,
.button-hero {
  background: var(--brand-bear);
  color: #ffffff;
  font-weight: 800;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 92%);
}

.button:hover,
.button-hero:hover {
  transform: translateY(-4px);
}

.button {
  min-width: 176px;
  padding: 13px 32px;
  font-size: 16px;
  letter-spacing: 0.04em;
}

.button-large {
  min-width: 224px;
  padding: 16px 48px;
  font-size: 20px;
}

.button-hero {
  min-width: 256px;
  min-height: 56px;
  transform: skewX(-6deg);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding-inline: 40px;
  font-size: 16px;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 0 var(--brand-bear-dark), 0 22px 34px -18px rgba(0, 0, 0, 0.75);
  clip-path: none;
}

.button-hero span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: skewX(6deg);
}

.button-hero:hover {
  transform: skewX(-6deg) translateY(-4px);
  box-shadow: 0 12px 0 var(--brand-bear-dark), 0 26px 36px -18px rgba(0, 0, 0, 0.8);
}

.button-hero:active {
  transform: skewX(-6deg) translateY(4px);
  box-shadow: 0 5px 0 var(--brand-bear-dark), 0 16px 28px -18px rgba(0, 0, 0, 0.75);
}

.button-outline {
  min-width: 224px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-1);
  padding: 16px 48px;
  color: #222222;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: border-color 0.18s ease, color 0.18s ease;
}

.button-outline:hover {
  border-color: var(--brand-bear);
  color: var(--brand-bear);
}

.section {
  padding-block: 96px;
}

.section-light {
  background: var(--surface-1);
}

.section-muted {
  background: var(--surface-2);
}

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

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

.section-title {
  font-size: clamp(40px, 5vw, 48px);
  line-height: 1.05;
  text-transform: uppercase;
}

.section-subtitle {
  max-width: 672px;
  margin-top: 8px;
  font-size: 18px;
  color: #555555;
}

.games-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px 56px;
}

.game-card {
  position: relative;
  display: block;
  width: min(100%, 576px);
  outline: none;
}

.game-image-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 2px;
  background: #000000;
  box-shadow: 0 18px 34px -24px rgba(0, 0, 0, 0.85);
}

.game-image-wrap img,
.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

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

.game-image-wrap::after,
.news-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent, transparent);
}

.status-pill {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--brand-bear);
  padding: 8px 16px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: var(--shadow-pop-sm);
}

.game-title {
  position: absolute;
  left: 16px;
  right: 56px;
  bottom: 16px;
  z-index: 1;
  color: #ffffff;
  font-size: clamp(20px, 4vw, 24px);
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

.game-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  display: flex;
  width: 44px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transform: translate(50%, -50%);
  background: var(--brand-bear);
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  box-shadow: 0 14px 24px -18px rgba(0, 0, 0, 0.9);
  clip-path: polygon(0 0, 88% 7%, 100% 100%, 8% 93%);
  transition: transform 0.2s ease;
}

.game-card:hover .game-arrow {
  transform: translate(58%, -50%);
}

.center-row {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

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

.news-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  box-shadow: 0 24px 48px -34px rgba(0, 0, 0, 0.95);
  transition: transform 0.2s ease;
}

.news-card:hover {
  transform: translateY(-4px);
}

.news-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000000;
}

.news-card-image::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  height: 8px;
  background: #000000;
}

.news-labels {
  position: absolute;
  left: 0;
  top: 20px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.news-label {
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
}

.news-label.kind {
  background: var(--brand-bear);
  color: var(--ink);
}

.news-label.date {
  background: #3a3278;
  color: #ffffff;
}

.news-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
  background: #000000;
  padding: 24px;
}

.news-card h3,
.news-card h2 {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
}

.news-card p {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-card-action {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 16px;
}

.about-section {
  background: var(--background);
  padding: 64px 24px 96px;
}

.about-copy {
  max-width: 1024px;
  margin-bottom: 80px;
}

.about-copy h2 {
  margin-bottom: 32px;
}

.about-text {
  display: grid;
  gap: 24px;
  color: #555555;
  font-size: 18px;
  line-height: 1.6;
}

.about-text strong {
  color: #222222;
  font-weight: 800;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-items: center;
  gap: 48px 64px;
  max-width: 768px;
  margin-inline: auto;
  text-align: center;
}

.team-member {
  width: 288px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.avatar {
  display: flex;
  width: 144px;
  height: 144px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #2b2d2b;
  color: var(--brand-bear);
  font-size: 56px;
  font-weight: 800;
  box-shadow: var(--shadow-pop-sm);
  clip-path: polygon(24% 8%, 50% 0%, 78% 9%, 96% 32%, 96% 68%, 79% 91%, 50% 100%, 21% 91%, 4% 66%, 4% 34%);
}

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

.avatar.empty {
  color: #ffffff;
}

.team-member h3 {
  margin-top: 28px;
  font-size: 24px;
  text-transform: uppercase;
  white-space: nowrap;
}

.team-member .handle {
  margin-top: 20px;
  color: #047857;
  font-size: 18px;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(4, 120, 87, 0.35);
  text-underline-offset: 4px;
}

.team-member .handle:hover {
  color: var(--brand-bear);
}

.join-description {
  max-width: 256px;
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.6;
}

.page-hero {
  background: var(--surface-2);
  padding: 64px 24px 96px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(40px, 7vw, 60px);
  line-height: 1.08;
  text-transform: uppercase;
}

.page-hero p {
  max-width: 768px;
  margin: 20px auto 0;
  color: #555555;
  font-size: 18px;
}

.page-kicker {
  margin-top: 12px;
  color: #777777;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-section {
  flex: 1;
  background: var(--background);
  padding: 64px 24px 96px;
}

.narrow {
  max-width: 768px;
}

.contact-form {
  display: grid;
  gap: 24px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: #222222;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-1);
  padding: 12px 16px;
  color: #222222;
  box-shadow: var(--shadow-pop-sm);
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--brand-bear);
}

.direct-email {
  margin-top: 64px;
  text-align: center;
  color: #555555;
  font-size: 18px;
}

.text-link {
  color: var(--brand-bear);
  font-weight: 700;
}

.text-link:hover {
  text-decoration: underline;
}

.info-card {
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface-1);
  padding: 32px;
  color: #555555;
  box-shadow: var(--shadow-pop-sm);
}

.info-card h2,
.info-card p:first-child {
  margin-bottom: 12px;
  color: #222222;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-card ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.privacy-content {
  display: grid;
  gap: 40px;
}

.privacy-content h2 {
  font-size: 24px;
  text-transform: uppercase;
}

.privacy-content div {
  margin-top: 16px;
  display: grid;
  gap: 12px;
  color: #555555;
  font-size: 17px;
  line-height: 1.75;
}

.contact-note {
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-1);
  padding: 24px;
  color: #555555;
  font-size: 17px;
  line-height: 1.75;
  box-shadow: var(--shadow-pop-sm);
}

.news-index {
  flex: 1;
  background: var(--surface-2);
  padding-block: 40px 96px;
}

.news-index .section-heading-row {
  margin-bottom: 24px;
}

.post-shell {
  flex: 1;
  background: var(--surface-2);
  padding-block: 40px 56px;
}

.post-wrap {
  max-width: 1024px;
}

.back-link {
  display: inline-flex;
  color: #222222;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.back-link:hover {
  color: var(--brand-bear-dark);
  text-decoration-color: currentColor;
}

.post-hero {
  margin-top: 28px;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  box-shadow: 0 30px 64px -42px rgba(0, 0, 0, 0.75);
}

.post-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.post-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.post-title-block {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  padding: 28px 36px;
  backdrop-filter: blur(1px);
}

.post-title-block h1 {
  max-width: 896px;
  color: #ffffff;
  font-size: clamp(36px, 6vw, 48px);
  line-height: 1.08;
  font-weight: 800;
  text-transform: uppercase;
}

.post-title-block p {
  max-width: 768px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 1.7;
}

.post-body {
  margin-top: 40px;
  background: #ffffff;
  padding: 32px 36px;
  color: #555555;
  font-size: 18px;
  line-height: 1.75;
  box-shadow: 0 20px 46px -34px rgba(0, 0, 0, 0.55);
}

.post-body p + p {
  margin-top: 20px;
}

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

.modal.visible {
  display: flex;
}

.modal-card {
  width: min(100%, 448px);
  border-radius: 16px;
  background: var(--surface-1);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-pop-sm);
}

.modal-card h2 {
  font-size: 32px;
  text-transform: uppercase;
}

.modal-card p {
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  border-top: 1px solid #e4e4e7;
  background: #ffffff;
  padding: 16px 24px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.06);
}

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

.cookie-inner {
  width: min(100%, 1360px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-copy {
  max-width: 820px;
  color: #3f3f46;
}

.cookie-copy h2 {
  color: #18181b;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
}

.cookie-copy p {
  margin-top: 8px;
  color: #3f3f46;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.cookie-btn {
  min-width: 86px;
  height: 44px;
  border: 2px solid #27272a;
  border-radius: 16px;
  background: #ffffff;
  padding-inline: 20px;
  color: #27272a;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.cookie-btn.accept {
  border-color: #ff9f1c;
  background: #ff9f1c;
  color: #ffffff;
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  background: var(--footer);
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.social {
  position: relative;
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #777777;
  font-size: 18px;
  transition: background 0.18s ease, color 0.18s ease;
}

.social img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  transition: filter 0.18s ease;
}

.social:hover {
  color: #ffffff;
}

.social:hover img {
  filter: brightness(0) invert(1);
}

.social.youtube:hover { background: #ff0000; }
.social.twitter:hover { background: #000000; }
.social.tiktok:hover { background: #000000; }
.social.discord:hover { background: #5865f2; }
.social.steam:hover { background: #171d25; }
.social.email:hover { background: var(--brand-bear); }

.tooltip {
  position: absolute;
  left: 50%;
  bottom: 100%;
  z-index: 20;
  margin-bottom: 8px;
  transform: translateX(-50%);
  border-radius: 4px;
  background: #444444;
  padding: 4px 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease;
}

.social:hover .tooltip,
.social:focus-visible .tooltip {
  opacity: 1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 40px;
}

.footer-link {
  color: #222222;
  font-size: 17px;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: 20px;
  color: #222222;
  font-size: 14px;
  font-weight: 600;
}

.empty-news {
  grid-column: 1 / -1;
  padding: 40px;
  background: #ffffff;
  color: #555555;
  text-align: center;
  box-shadow: var(--shadow-pop-sm);
}

@media (min-width: 1024px) {
  .hero,
  .hero-content {
    min-height: 640px;
  }

  .hero-content {
    padding-bottom: 32px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 32px, 1280px);
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    inset: 81px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--border);
    background: #ffffff;
    padding: 10px 24px 18px;
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
  }

  .nav-actions {
    gap: 12px;
  }

  .brand span {
    font-size: 20px;
  }

  .section-heading-row,
  .footer-main,
  .cookie-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .section,
  .page-section {
    padding-block: 56px;
  }

  .post-title-block {
    position: static;
    background: #000000;
    padding: 24px;
  }

  .post-body {
    padding: 28px 24px;
  }
}

@media (max-width: 560px) {
  .brand span {
    display: none;
  }

  .lang-switch {
    padding-inline: 10px;
  }

  .hero,
  .hero-content {
    min-height: 520px;
  }

  .hero-tagline {
    font-size: 16px;
  }

  .button-hero {
    min-width: 220px;
    padding-inline: 22px;
    font-size: 14px;
  }

  .game-arrow {
    right: 18px;
    transform: translate(0, -50%);
  }

  .game-card:hover .game-arrow {
    transform: translate(6px, -50%);
  }

  .button-outline,
  .button-large {
    width: 100%;
    min-width: 0;
    padding-inline: 24px;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}
