/* === RESET & BASE === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
}
body {
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #000;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* === VARIABLES === */
:root {
  --blue: #112e8d;
  --white: #ffffff;
  --black: #000000;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 174px;
  height: 58px;
  background: var(--blue);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.btn-primary:hover {
  transform: scale(1.06);
  filter: brightness(1.2);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 174px;
  height: 58px;
  background: var(--white);
  color: var(--blue);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.25s ease, color 0.25s ease;
}
.btn-secondary:hover {
  transform: scale(1.06);
  background: var(--blue);
  color: var(--white);
}

/* === TEXT UTILITIES === */
.text-body-dark {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.1;
  color: var(--black);
}
.text-body-light {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.1;
  color: var(--white);
}
.arrow-icon {
  width: 35px;
  height: 26px;
  object-fit: contain;
  transform: rotate(40deg);
  flex-shrink: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  width: 100%;
  background: var(--white);
  padding: 7px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 50;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 58px;
}
.nav-links a {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: normal;
  text-transform: uppercase;
  color: var(--blue);
}
.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.nav-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.nav-logo-text {
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: normal;
  text-transform: uppercase;
  color: var(--blue);
}
.nav-hamburger {
  display: none;
}
.nav-hamburger img {
  display: block;
}
.nav-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white);
  border-top: 2px solid var(--blue);
  flex-direction: column;
  z-index: 100;
}
.nav-mobile-menu.open {
  display: flex;
}
.nav-mobile-menu a {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--blue);
  padding: 14px 20px;
  border-bottom: 1px solid rgba(17, 46, 141, 0.15);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  width: 100%;
  background: var(--white);
  padding: 40px 30px 100px;
  overflow: hidden;
  position: relative;
}
.hero-flowers {
  position: absolute;
  left: 370px;
  top: -30px;
  width: 780px;
  height: 780px;
  pointer-events: none;
  z-index: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  transform: rotate(-50deg);
}
.hero-flowers img {
  width: 540px;
  height: 740px;
  transform: rotate(8deg);
  object-fit: contain;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.hero-headline {
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: 150px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--blue);
  width: 463px;
  flex-shrink: 0;
}
.hero-right {
  width: 647px;
  display: flex;
  flex-direction: column;
  gap: 316px;
  align-items: flex-end;
}
.hero-tagline-group {
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}
.hero-tagline {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 24px;
  line-height: 1.1;
  color: var(--black);
  text-align: right;
}
.hero-bottom {
  width: 100%;
  display: flex;
  align-items: flex-end;
  gap: 193px;
}
.hero-body-group {
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  width: 100%;
  height: 937px;
  background: var(--white);
  overflow: hidden;
  position: relative;
}
.about-top {
  position: absolute;
  left: 0;
  top: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.about-title {
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: 150px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--blue);
  text-align: center;
}
.about-desc-block {
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-flowers-7 {
  position: absolute;
  left: 23px;
  top: 450px;
  width: 420px;
  height: 565px;
  object-fit: contain;
}
.about-flowers-25 {
  position: absolute;
  left: 640px;
  top: 280px;
  width: 380px;
  height: 490px;
  object-fit: contain;
}
.about-flowers-25-mobile {
  display: none;
}
.about-right-block {
  position: absolute;
  left: 700px;
  top: 571px;
  width: 470px;
  display: flex;
  flex-direction: column;
  gap: 38px;
  align-items: flex-end;
}
.about-icon-row {
  width: 235px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.about-icon-row img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
}
.about-tagline {
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: 80px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--blue);
  text-align: right;
}

/* ============================================================
   OUR GAMES
   ============================================================ */
.our-games {
  width: 100%;
  background: var(--blue);
  padding: 40px 0 80px;
  position: relative;
  overflow: hidden;
}
.games-header {
  display: flex;
  align-items: flex-start;
  gap: 132px;
  padding: 0 30px;
  margin-bottom: 40px;
}
.games-header-title {
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: 150px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
}
.games-header-side {
  width: 235px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 10px;
}
.games-header-side img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.games-list {
  display: flex;
  flex-direction: column;
  gap: 43px;
  align-items: flex-end;
  width: 100%;
}
.game-item {
  width: 670px;
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
  padding-right: 116px;
  white-space: nowrap;
}
.game-item-highlighted {
  align-self: stretch;
  background: var(--white);
  height: 69px;
  padding: 13px 30px 16px 50%;
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--blue);
  white-space: nowrap;
  width: 100%;
}
.game-item-highlighted .arrow-icon {
  filter: none;
}
.games-flowers {
  position: absolute;
  left: 220px;
  top: 80px;
  width: 460px;
  height: 580px;
  object-fit: contain;
  pointer-events: none;
}
.games-bottom-block {
  position: absolute;
  left: 30px;
  top: 560px;
  width: 235px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ============================================================
   OUR COMMUNITY
   ============================================================ */
.community {
  width: 100%;
  background: var(--white);
  padding: 40px 30px;
  overflow: hidden;
  position: relative;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.community-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  flex: 1;
}
.community-title {
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: 150px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--blue);
  width: 696px;
}
.community-right {
  width: 416px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  flex-shrink: 0;
}
/* Cards stack like a deck — front card fully visible, others peek from behind */
.cards-container {
  position: relative;
  width: 269px;
  height: 332px;
  margin: 0 auto;
  overflow: visible;
}
.game-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 269px;
  height: 332px;
  background: var(--blue);
  border: 1px solid var(--white);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 14px 14px 35px;
  overflow: hidden;
}
.game-card img.card-image {
  width: 241px;
  height: 241px;
  object-fit: cover;
  flex-shrink: 0;
}
.game-card .card-title {
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
  width: 241px;
}
/* Deck fan — card-1 furthest back, card-6 front. Pairs share rotation, small y offset separates them */
.card-1 {
  z-index: 1;
  transform: rotate(-15deg) translateY(6px);
  transform-origin: bottom center;
}
.card-2 {
  z-index: 2;
  transform: rotate(11.39deg) translateY(6px);
  transform-origin: bottom center;
}
.card-3 {
  z-index: 3;
  transform: translateY(4px);
}
.card-4 {
  z-index: 4;
  transform: rotate(-15deg);
  transform-origin: bottom center;
}
.card-5 {
  z-index: 5;
  transform: rotate(11.39deg);
  transform-origin: bottom center;
}
.card-6 {
  z-index: 6;
}
.community-caption {
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.community-flowers-10 {
  position: absolute;
  left: 329px;
  top: 349px;
  width: 270px;
  height: 383px;
  object-fit: contain;
  pointer-events: none;
}

/* ============================================================
   GET STARTED
   ============================================================ */
.get-started {
  width: 100%;
  background: var(--blue);
  padding: 40px 30px 380px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.get-started-row {
  display: flex;
  gap: 132px;
  padding: 0 30px;
  width: 100%;
  align-items: flex-start;
}
.get-started-title {
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: 150px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
}
.get-started-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.get-started-icon-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.get-started-icon-row img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
}
.get-started-flowers {
  position: absolute;
  left: 384px;
  top: 125px;
  width: 470px;
  height: 528px;
  object-fit: contain;
  pointer-events: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  width: 100%;
  background: var(--white);
  border: 18px solid var(--blue);
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}
.footer-inner {
  width: calc(100% - 80px);
  display: flex;
  flex-direction: column;
  gap: 27px;
}
.footer-wordmark {
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: 180px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--blue);
  transform: rotate(-0.48deg);
  display: block;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-contact p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.1;
  color: var(--blue);
}
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-social a img {
  width: 44px;
  height: 43px;
  object-fit: contain;
}
.footer-nav {
  display: flex;
  gap: 260px;
}
.footer-nav a {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--blue);
}
.footer-divider {
  width: 100%;
  display: block;
  margin-top: -16px;
  height: 20px;
  object-fit: cover;
}
.footer-divider-mobile {
  display: none;
}
.footer-copyright {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.1;
  color: var(--blue);
  text-align: center;
}

/* ============================================================
   GAME DETAIL PAGE
   ============================================================ */
.game-detail {
  width: 100%;
  background: var(--blue);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.game-detail-top {
  display: flex;
  gap: 40px;
  align-items: center;
}

.game-card-preview {
  width: 500px;
  height: 415px;
  background: var(--white);
  border: 1px solid var(--blue);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 14px 14px 35px;
  overflow: hidden;
  flex-shrink: 0;
}

.game-card-preview__image {
  width: 472px;
  height: 330px;
  object-fit: cover;
  flex-shrink: 0;
}

.game-card-preview__title {
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--blue);
  width: 472px;
}

.game-detail-title {
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: 80px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
  flex: 1;
  align-self: center;
}

.game-detail-bottom {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.game-detail-actions {
  display: flex;
  gap: 40px;
  align-items: center;
}

.game-detail-desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  max-width: 900px;
}

/* ============================================================
   POLICY PAGES
   ============================================================ */
.policy-section {
  width: 100%;
  background: var(--white);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.policy-title {
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: 150px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--blue);
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.policy-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.policy-body p {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.1;
  color: var(--black);
}

.policy-body .policy-list-item {
  padding-left: 24px;
}

/* ============================================================
   CATALOG PAGE
   ============================================================ */
.catalog-section {
  width: 100%;
  background: var(--white);
  padding: 40px 30px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.catalog-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.catalog-heading {
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: 80px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--blue);
}

.catalog-desc {
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.catalog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 73px;
  padding: 40px 0 60px;
  justify-content: center;
}

.catalog-card {
  width: 269px;
  height: 332px;
  background: var(--blue);
  border: 1px solid var(--white);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 14px 14px 35px;
  overflow: hidden;
  flex-shrink: 0;
}

.catalog-card__image {
  width: 241px;
  height: 241px;
  object-fit: cover;
  flex-shrink: 0;
}

.catalog-card__title {
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
  width: 241px;
}

.catalog-card--neg {
  transform: rotate(-15deg);
}

.catalog-card--pos {
  transform: rotate(11.39deg);
}

/* ============================================================
   ANIMATIONS & HOVER EFFECTS
   ============================================================ */

/* Keyframes */
@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal base states — applied via JS */
.sr { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.sr.sr-visible { opacity: 1; transform: translateY(0); }
.sr-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.sr-left.sr-visible { opacity: 1; transform: translateX(0); }
.sr-right { opacity: 0; transform: translateX(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.sr-right.sr-visible { opacity: 1; transform: translateX(0); }

/* Nav */
.nav-links a {
  position: relative;
  transition: opacity 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-logo { transition: transform 0.2s ease; }
.nav-logo:hover { transform: scale(1.05); }
.nav-mobile-menu a { transition: background 0.2s ease, padding-left 0.2s ease; }
.nav-mobile-menu a:hover { background: rgba(17,46,141,0.07); padding-left: 28px; }

/* Arrow icon */
.arrow-icon { transition: translate 0.3s ease; }

/* Catalog cards — preserve rotation on hover */
.catalog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.catalog-card:not(.catalog-card--neg):not(.catalog-card--pos):hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(17,46,141,0.25);
}
.catalog-card--neg:hover {
  transform: rotate(-15deg) translateY(-10px);
  box-shadow: 0 16px 40px rgba(17,46,141,0.25);
}
.catalog-card--pos:hover {
  transform: rotate(11.39deg) translateY(-10px);
  box-shadow: 0 16px 40px rgba(17,46,141,0.25);
}

/* Footer */
.footer-nav a { transition: opacity 0.2s ease; }
.footer-nav a:hover { opacity: 0.55; }
.footer-social a { transition: transform 0.2s ease; display: inline-flex; }
.footer-social a:hover { transform: scale(1.18); }

/* Game detail actions arrow nudge */
.game-detail-actions .arrow-icon { transition: translate 0.3s ease; }
.game-detail-actions:hover .arrow-icon { translate: 4px 4px; }

/* Floating flower animations */
.hero-flowers img { animation: float 7s ease-in-out infinite; }
.about-flowers-7 { animation: float 9s ease-in-out infinite 1s; }
.about-flowers-25 { animation: float 7s ease-in-out infinite 0.4s; }
.games-flowers { animation: float 8s ease-in-out infinite 0.8s; }
.get-started-flowers { animation: float 10s ease-in-out infinite 0.2s; }
.community-flowers-10 { animation: float 8s ease-in-out infinite 1.2s; }

/* ============================================================
   MOBILE  ≤ 768px
   ============================================================ */
@media (max-width: 768px) {
  /* Nav */
  .nav {
    padding: 7px 20px;
  }
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: block;
  }
  .nav-hamburger img {
    width: 32px;
    height: 22px;
    object-fit: contain;
  }
  .nav-logo-text {
    font-size: 24px;
  }

  /* Hero */
  .hero {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .hero-content {
    display: contents;
  }
  .hero-headline {
    order: 1;
    font-size: 60px;
    width: 100%;
  }
  .hero-flowers {
    order: 2;
    position: relative;
    left: 30%;
  
    top: auto;
    width: 60%;
    height: auto;
    align-self: flex-start;
    margin-right: 0;
    transform: none;
    justify-content: flex-start;
    transform: rotate(-50deg);
  }
  .hero-flowers img {
    width: 290px;
    height: 390px;
    transform: rotate(8deg);
  }
  .hero-right {
    order: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .hero-tagline-group {
    width: 100%;
    align-items: flex-end;
  }
  .hero-tagline {
    text-align: left;
  }
  .hero-bottom {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
  }
  .hero-body-group {
    width: 100%;
  }

  /* About */
  .about {
    height: auto;
    overflow: visible;
  }
  .about-top {
    position: static;
    width: 100%;
    padding: 40px 20px 0;
    align-items: flex-start;
  }
  .about-title {
    font-size: 40px;
    text-align: left;
  }
  .about-desc-block {
    width: 100%;
  }
  .about-flowers-7 {
    position: static;
    width: 222px;
    height: 298px;
    display: block;
    margin: 20px auto 0;
  }
  .about-flowers-25 {
    display: none;
  }
  .about-right-block {
    position: relative;
    left: auto;
    top: auto;
    width: calc(100% - 40px);
    margin: 20px 20px 40px;
    align-items: flex-end;
  }
  .about-icon-row {
    width: 100%;
  }
  .about-tagline {
    font-size: 60px;
  }

  /* About mobile flowers-25 overlay */
  .about-flowers-25-mobile {
    display: block;
    position: absolute;
    left: 195px;
    top: 40px;
    width: 155px;
    pointer-events: none;
    transform: rotate(-87.29deg);
  }

  /* Our Games */
  .our-games {
    padding: 40px 0;
  }
  .games-header {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
    margin-bottom: 0;
  }
  .games-header-title {
    font-size: 40px;
  }
  .game-item {
    font-size: 30px;
    width: 390px;
    padding-right: 0;
    max-width: calc(100% - 40px);
  }
  .game-item-highlighted {
    height: auto;
    padding: 10px 20px;
    font-size: 30px;
    justify-content: space-between;
  }
  .games-list {
    gap: 20px;
  }
  .games-flowers {
    position: static;
    width: 220px;
    height: 236px;
    margin: 20px auto;
  }
  .games-bottom-block {
    position: static;
    width: 100%;
    padding: 0 20px;
  }

  /* Community */
  .community {
    flex-direction: column;
    padding: 40px 20px;
    gap: 40px;
  }
  .community-left {
    width: 100%;
  }
  .community-title {
    font-size: 40px;
    width: 100%;
  }
  .community-right {
    width: 100%;
  }
  .cards-container {
    width: 251.875px;
    height: 310.865px;
    overflow: visible;
  }
  .game-card {
    width: 251.875px;
    height: 310.865px;
    border-width: 0.936px;
    gap: 18.727px;
    padding: 13.109px 13.109px 32.772px;
    top: 0;
    left: 0;
  }
  .game-card img.card-image {
    width: 225.658px;
    height: 225.658px;
  }
  .game-card .card-title {
    font-size: 22.472px;
    width: 225.658px;
  }
  .community-flowers-10 {
    display: block;
    position: absolute;
    left: 248px;
    top: 78px;
    width: 162px;
    height: 231px;
  }

  /* Get Started */
  .get-started {
    padding: 40px 20px;
  }
  .get-started-row {
    flex-direction: column;
    padding: 0;
    gap: 20px;
    width: 100%;
  }
  .get-started-title {
    font-size: 40px;
  }
  .get-started-right {
    gap: 20px;
  }
  .get-started-flowers {
    position: static;
    width: 282px;
    height: 317px;
    margin: 0 auto;
  }

  /* Footer */
  .footer {
    border-width: 10px;
    padding: 40px 20px;
    gap: 20px;
  }
  .footer-inner {
    width: 100%;
  }
  .footer-wordmark {
    font-size: 60px;
  }
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
  .footer-divider-desktop {
    display: none;
  }
  .footer-divider-mobile {
    display: block;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-top: -10px;
  }

  /* Game Detail */
  .game-detail {
    padding: 40px 20px;
    gap: 20px;
  }
  .game-detail-top {
    flex-direction: column;
    align-items: center;
  }
  .game-card-preview {
    width: 100%;
    max-width: 340px;
    height: auto;
  }
  .game-card-preview__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
  .game-card-preview__title {
    width: 100%;
  }
  .game-detail-title {
    font-size: 40px;
    text-align: center;
    align-self: center;
  }
  .game-detail-bottom {
    gap: 20px;
  }
  .game-detail-desc {
    text-align: center;
  }

  /* Policy */
  .policy-section {
    padding: 40px 20px;
  }
  .policy-title {
    font-size: 40px;
  }

  /* Catalog */
  .catalog-section {
    padding: 40px 20px 60px;
    gap: 20px;
  }
  .catalog-heading {
    font-size: 40px;
  }
  .catalog-desc {
    width: 100%;
  }
  .catalog-grid {
    gap: 73px;
    padding: 20px 0 40px;
    justify-content: center;
  }
}
