@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;600;700&display=swap');

@font-face {
  font-family: 'Franklin Gothic Demi';
  src: url('/assets/fonts/FRADM.woff2') format('woff2'),
       url('/assets/fonts/FRADM.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #111;
  background: #f4f4f4;
  margin: 0;
  padding: 0;
  padding-top: 60px;
  width: 100%;
  min-height: 100%;
}

main { min-height: 0; }

body.past-scroll-content #pinned-hero{
  opacity: 0;
  pointer-events: none;
}

:root{
  --pinned-hero-height: 0px;
  --scroll-content-height: 0px;
  --footer-height: 0px;
  --scroll-y: 0px;
  --header-offset: 0px;
}

/* Pinned layer: slider + games header band */
#pinned-hero{
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 5;
}

/* Scroll proxy: creates the real scrollbar */
#scroll-proxy{
  height: 0px;
  box-sizing: border-box;
}

/* Scrolling layer: everything that must slide over the pinned hero */
#scroll-content{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  transform: translateY(calc(var(--pinned-hero-height) - var(--scroll-y)));
  padding-top: var(--header-offset);
  will-change: transform;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.section-header {
  text-align: center;
  padding: 70px 0 30px;
}

.section-header-tight {
  padding: 56px 0 36px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 10px;
}

.section-lead {
  color: #555;
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* =========================================================
   Buttons (use the 2 login types, but bigger)
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: normal;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 1.28em;
  line-height: 1;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
}

.btn:active { transform: translateY(1px); }

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.18);
}

/* Light pages: dark filled */
.btn-dark {
  background: #111;
  color: #fff;
  border-color: #111;
}

.btn-dark:hover {
  background: #000;
  border-color: #000;
}

/* Light pages: secondary outline */
.btn-ghost-dark {
  background: transparent;
  color: #111;
  border-color: rgba(0,0,0,0.35);
}

.btn-ghost-dark:hover {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.70);
}

/* Dark areas (Support): EXACT login button types */
.support-section .btn-light {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.support-section .btn-light:hover {
  background-color: #e0e0e0;
  border-color: #e0e0e0;
}

.support-section .btn-outline-light {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.60);
}

.support-section .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.85);
}

/* Keep legacy class name without forcing global "login white" */
.btn-light {
  background: #fff;
  color: #111;
  border-color: #fff;
}

.btn-light:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
}

/* ========================================================= */

.games-header-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0b0f1a 0%, #070a12 55%, #05070d 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.games-header-band .container {
  position: relative;
  z-index: 2;
}

.section-header-tight .section-title {
  color: #fff;
  margin-bottom: 14px;
}

.scroll-hint {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.scroll-hint-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.2px;
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.55);
  position: relative;
  display: inline-block;
}

.scroll-mouse-wheel {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  position: absolute;
  left: 50%;
  top: 9px;
  transform: translateX(-50%);
  animation: scrollWheel 1.25s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { transform: translateX(-50%) translateY(0); opacity: 0.9; }
  70% { transform: translateX(-50%) translateY(10px); opacity: 0.2; }
  100% { transform: translateX(-50%) translateY(0); opacity: 0.9; }
}

/* ===================== Featured games (do not change responsive behavior) ===================== */

.featured-games-section {
  width: 100%;
  background: #fff;
  padding: 0 0 70px;
}

.featured-game-item {
  min-height: 520px;
  padding: 55px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.featured-game-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 10%;
  bottom: 0;
  width: 80%;
  height: 1px;
  background: rgba(0,0,0,0.06);
  z-index: 6;
}

.featured-game-blurred-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: none;
  transform: scale(1.08);
  z-index: 1;
  opacity: 0.55;
}

.featured-game-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.35) 0%,
      rgba(0,0,0,0.22) 40%,
      rgba(0,0,0,0.12) 70%,
      rgba(0,0,0,0.05) 100%
    ),
    linear-gradient(
      180deg,
      var(--game-bg-color1, #3b3b3b) 0%,
      var(--game-bg-color1, #3b3b3b) 45%,
      var(--game-bg-color2, #101010) 75%,
      var(--game-bg-color2, #101010) 100%
    );
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.90) 100%
  );
          mask-image: linear-gradient(
    180deg,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.90) 100%
  );
}

.featured-game-content-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  position: relative;
  z-index: 3;
}

.featured-game-info {
  min-width: 0;
  position: relative;
  padding-right: 52%;
}

.featured-game-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.featured-game-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: currentColor;
  margin-top: 12px;
  opacity: 0.85;
}

.featured-game-description {
  font-size: 1.03rem;
  line-height: 1.75;
  opacity: 0.95;
  max-width: 640px;
  margin-bottom: 18px;
}

.featured-game-meta {
  margin-top: 6px;
  margin-bottom: 16px;
}

.meta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: baseline;
  margin: 0 0 10px;
  opacity: 0.95;
}

.meta-row-tight { margin-bottom: 8px; }

.meta-label {
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.95;
}

.meta-value {
  font-weight: 600;
  letter-spacing: 0.2px;
}

.platforms-list {
  list-style: none;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.platform-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  min-height: 0;
}

.platform-icon-svg {
  width: 26px;
  height: 26px;
  display: block;
}

.platform-name-only {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  opacity: 0.9;
}

.featured-game-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.featured-game-media {
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  width: 48%;
  max-width: 760px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.35);
  transition: transform 360ms ease, box-shadow 360ms ease;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.featured-game-item:hover .featured-game-media {
  transform: translateY(-50%) translateY(-8px);
  box-shadow: 0 24px 55px rgba(0,0,0,0.48);
}

.video-thumbnail-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
}

.video-thumbnail-img,
.game-main-image,
.in-block-video-player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-placeholder-thumbnail {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #101010;
  color: rgba(255,255,255,0.75);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px;
  text-align: center;
}

.play-lightbox-button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: rgba(0,0,0,0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 180ms ease;
}

.play-lightbox-button:hover { background: rgba(0,0,0,0.35); }

.play-video-icon {
  font-size: 54px;
  color: rgba(255,255,255,0.92);
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, background-color 180ms ease;
  pointer-events: none;
}

.play-lightbox-button:hover .play-video-icon {
  transform: scale(1.08);
  background: rgba(0,0,0,0.62);
}

.featured-games-footer {
  display: flex;
  justify-content: center;
  padding-top: 35px;
}

/* ===================== Manifesto (Independent Game Publisher) ===================== */

.manifesto-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f6f6f6 100%);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 70px 0;
}

.manifesto-section .container { position: relative; z-index: 2; }

.manifesto-scribble {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}

.manifesto-scribble svg { width: 100%; height: 100%; display: block; }

.ms-line {
  fill: none;
  stroke: rgba(0,0,0,0.18);
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: msDraw 7.2s ease-in-out infinite;
}

.ms-line:nth-child(1) { animation-delay: 0s; }
.ms-line:nth-child(2) { animation-delay: 0.4s; opacity: 0.75; }
.ms-line:nth-child(3) { animation-delay: 0.8s; opacity: 0.6; }
.ms-line:nth-child(4) { animation-delay: 1.2s; opacity: 0.7; }
.ms-line:nth-child(5) { animation-delay: 1.6s; opacity: 0.55; }

@keyframes msDraw {
  0%   { stroke-dashoffset: 1400; opacity: 0; }
  10%  { opacity: 0.9; }
  48%  { stroke-dashoffset: 0; opacity: 0.9; }
  72%  { stroke-dashoffset: 0; opacity: 0.25; }
  100% { stroke-dashoffset: -1400; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .ms-line {
    animation: none;
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    opacity: 0.22;
  }
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: start;
}

.eyebrow {
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #222;
  opacity: 0.8;
  font-size: 12px;
  margin-bottom: 10px;
}

.manifesto-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 14px;
}

.manifesto-subtitle {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 620px;
}

.manifesto-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.manifesto-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mini-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 16px 16px 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.10);
  border-color: rgba(0,0,0,0.12);
}

.mini-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 6px;
}

.mini-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===================== Latest news ===================== */

.latest-news-section {
  padding: 70px 0;
  background: #f7f7f7;
}

.latest-news-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 36px;
}

.news-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 260ms ease, box-shadow 260ms ease;
  background: #fff;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.news-card-image-container {
  position: relative;
  width: 100%;
  padding-top: 66.66%;
  height: 0;
  overflow: hidden;
  background: #e0e0e0;
}

.news-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 380ms ease;
}

.news-card:hover .news-card-image { transform: scale(1.06); }

.news-card-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px 20px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0) 100%);
  color: #fff;
}

.news-card-date {
  font-size: 0.75rem;
  margin-bottom: 6px;
  opacity: 0.92;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.news-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.all-news-link { text-align: center; }

/* ===================== Support (Contact) ===================== */

.support-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #2b2b2b 0%, #1b1b1b 100%);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.support-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: start;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.support-left {
  position: relative;
  padding-right: 8px;
}

.support-left::after {
  content: "";
  position: absolute;
  top: 2px;
  right: -13px;
  width: 1px;
  height: calc(100% - 4px);
  background: rgba(255,255,255,0.10);
}

.support-eyebrow {
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.9;
  margin-bottom: 8px;
}

.support-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.0rem;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.support-text {
  font-size: 1.05rem;
  line-height: 1.75;
  opacity: 0.92;
  max-width: 660px;
}

.support-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.support-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-content: start;
  padding-left: 12px;
}

.support-card {
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 16px 16px 14px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.28);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(0,0,0,0.38);
  border-color: rgba(255,255,255,0.20);
  background: rgba(0,0,0,0.24);
}

.support-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 6px;
  opacity: 0.95;
}

.support-card-text {
  font-size: 0.98rem;
  line-height: 1.65;
  opacity: 0.88;
}

/* ===================== Video lightbox ===================== */

.video-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.86);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.video-lightbox-container {
  position: relative;
  background: #000;
  max-width: 92vw;
  max-height: 92vh;
  width: auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0,0,0,0.55);
}

#lightbox-video-player {
  display: block;
  max-width: 100%;
  max-height: calc(92vh - 40px);
  width: auto;
  height: auto;
  outline: none;
}

.video-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  width: 38px;
  height: 38px;
  font-size: 22px;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
  z-index: 1001;
  font-weight: 900;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.video-lightbox-close:hover {
  transform: scale(1.08);
  background: rgba(255,0,0,0.75);
  border-color: rgba(255,255,255,0.35);
}

/* ===================== Responsive (do not touch slider/featured games behavior) ===================== */

@media (max-width: 992px) {
  .featured-game-item {
    min-height: auto;
    padding: 45px 0;
  }

  .featured-game-info {
    padding-right: 0;
    text-align: center;
  }

  .featured-game-title::after {
    margin-left: auto;
    margin-right: auto;
  }

  .platforms-list {
    justify-content: center;
  }

  .featured-game-actions {
    justify-content: center;
  }

  .featured-game-media {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 760px;
    margin: 22px auto 0;
    transform: none;
  }

  .featured-game-item:hover .featured-game-media {
    transform: translateY(-8px);
  }

  /* Support layout */
  .support-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .support-left {
    padding-right: 0;
  }

  .support-left::after {
    display: none;
  }

  .support-right {
    padding-left: 0;
  }

  /* Manifesto: stack and reduce density (no impact on slider/featured games) */
  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .manifesto-cards {
    grid-template-columns: 1fr 1fr;
  }

  /* Latest news: 2 columns on tablets */
  .latest-news-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .featured-game-item {
    padding: 38px 0;
  }

  .featured-game-title {
    font-size: 2.6rem;
  }

  .featured-game-description {
    font-size: 0.98rem;
  }

  .play-video-icon {
    font-size: 40px;
    width: 64px;
    height: 64px;
  }

  /* Buttons slightly bigger on mobile */
  .btn {
    padding: 13px 30px;
    font-size: 1.30em;
  }

  /* ===== Manifesto mobile optimization ===== */
  .manifesto-section {
    padding: 56px 0;
  }

  .manifesto-title {
    font-size: 2.65rem;
  }

  .manifesto-subtitle {
    font-size: 1.0rem;
    line-height: 1.75;
  }

  .manifesto-actions {
    gap: 10px;
  }

  .manifesto-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .manifesto-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mini-card {
    border-radius: 14px;
    padding: 14px 14px 12px;
  }

  .mini-card h3 {
    font-size: 1.45rem;
  }

  /* ===== Latest news mobile optimization ===== */
  .latest-news-section {
    padding: 56px 0;
  }

  .section-header {
    padding: 56px 0 22px;
  }

  .latest-news-container {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 28px;
  }

  .news-card {
    border-radius: 14px;
  }

  .news-card-overlay {
    padding: 22px 16px 14px;
  }

  .news-card-title {
    font-size: 1.02rem;
    line-height: 1.35;
  }

  /* ===== Support mobile improvements (only support) ===== */
  .support-section {
    padding: 64px 0;
  }

  .support-title {
    font-size: 2.55rem;
  }

  .support-text {
    font-size: 1.0rem;
  }

  .support-actions {
    gap: 10px;
  }

  .support-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .support-right {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .featured-game-info {
    text-align: left;
  }

  .featured-game-title::after {
    margin-left: 0;
    margin-right: auto;
  }

  .meta-row {
    justify-content: flex-start;
  }

  .platforms-list {
    justify-content: flex-start;
  }

  .featured-game-actions {
    justify-content: flex-start;
  }
}
