@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;900&family=Walter+Turncoat&display=swap');

:root {
  --bg-black: #000000;
  --green: #008e55;
  --cream: #fefcf9;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.6);
  --font-display: 'Walter Turncoat', cursive;
  --font-body: 'Poppins', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: var(--bg-black);
  color: var(--cream);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

p {
  margin: 0;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.page {
  background: var(--bg-black);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.section-inner {
  max-width: 1020px;
  margin: 0 auto;
  width: 100%;
}

.site-header {
  background: var(--bg-black);
  padding: 10px 90px 0;
}

.nav {
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  color: var(--white);
  letter-spacing: 1.92px;
  line-height: 0.9;
  text-transform: capitalize;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  gap: 72px;
  align-items: center;
}

.nav-menu a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  text-transform: capitalize;
  line-height: 1.2;
  transition: opacity 0.2s ease;
}

.nav-menu a:hover {
  opacity: 0.7;
}

.nav-toggle {
  display: none;
  width: 30px;
  height: 14px;
}

.nav-toggle img {
  width: 100%;
  height: 100%;
}

.hero-wrap {
  background: var(--bg-black);
  padding: 0 90px 60px;
}

.hero {
  max-width: 1020px;
  margin: 0 auto;
  background: var(--green);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-image {
  flex: 1 1 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-width: 0;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  min-width: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  color: var(--cream);
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--cream);
  line-height: 1.6;
  max-width: 422px;
  display: flex;
  flex-direction: column;
  gap: 1.6em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 48px;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 16px;
  line-height: 1.2;
  text-transform: capitalize;
  text-align: center;
  white-space: nowrap;
  transition: opacity 0.2s ease;
  align-self: flex-start;
}

.btn:hover {
  opacity: 0.85;
}

.btn-light {
  background: var(--white);
  color: var(--green);
}

.btn-green {
  background: var(--green);
  color: var(--white);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  color: var(--cream);
  line-height: 1.1;
  text-align: center;
}

.friction {
  background: var(--bg-black);
  padding: 60px 90px;
}

.friction-inner {
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.friction-grid {
  display: flex;
  gap: 20px;
  width: 100%;
}

.friction-card {
  flex: 1 1 0;
  border: 2px solid var(--green);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.card-image {
  width: 100px;
  height: 101px;
  flex-shrink: 0;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  color: var(--cream);
  line-height: 0.9;
}

.card-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--cream);
  line-height: 1.6;
}

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

.genre-wrap {
  background: var(--bg-black);
  padding: 60px 90px;
}

.genre {
  max-width: 1020px;
  margin: 0 auto;
  background: var(--green);
  padding: 20px;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.genre-text {
  flex: 0 1 508px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.genre-text h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  color: var(--cream);
  line-height: 1.1;
}

.genre-text-body {
  display: flex;
  flex-direction: column;
  gap: 1.6em;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--cream);
  line-height: 1.6;
}

.genre-image {
  flex: 0 0 430px;
  width: 430px;
  height: 400px;
}

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

.features {
  background: var(--bg-black);
  padding: 60px 90px;
}

.features-inner {
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.features-grid {
  display: flex;
  gap: 24px;
  width: 100%;
}

.feature {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.discovery {
  background: var(--bg-black);
  padding: 60px 90px;
}

.discovery-inner {
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  gap: 56px;
  align-items: center;
  justify-content: center;
}

.discovery-image {
  flex: 1 1 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-width: 0;
}

.discovery-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.discovery-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
  min-width: 0;
}

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

.discovery-text h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  color: var(--cream);
  line-height: 1.1;
}

.discovery-text-body {
  display: flex;
  flex-direction: column;
  gap: 1.6em;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--cream);
  line-height: 1.6;
  max-width: 422px;
}

.site-footer {
  background: var(--bg-black);
  padding-top: 60px;
}

.footer-inner {
  max-width: 1136px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.footer-socials {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-socials a {
  display: block;
  line-height: 0;
}

.footer-social-icon {
  width: 96px;
  height: 96px;
  display: block;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 136px;
  color: var(--white);
  letter-spacing: 10.88px;
  line-height: 0.9;
  text-transform: capitalize;
  text-align: center;
  white-space: nowrap;
}

.footer-contacts {
  display: flex;
  gap: 49px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--white);
  line-height: 1.6;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  width: 100%;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  font-size: 14px;
  gap: 20px;
}

.footer-copy {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--muted);
  white-space: nowrap;
}

.footer-links {
  display: flex;
  gap: 49px;
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.2;
  text-transform: capitalize;
  color: var(--white);
  white-space: nowrap;
}

.footer-links a {
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-banner {
  width: 100%;
}

.footer-banner img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .page {
    max-width: 100%;
  }

  .site-header {
    padding: 10px 20px;
  }

  .nav {
    padding: 12px 0;
  }

  .nav-menu {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-wrap {
    padding: 40px 20px;
  }

  .hero {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    padding: 20px;
  }

  .hero-image {
    width: 100%;
    height: 300px;
    align-self: stretch;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-content {
    width: 100%;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-text {
    max-width: 100%;
  }

  .friction {
    padding: 40px 20px;
  }

  .friction-inner {
    gap: 20px;
  }

  .section-title {
    font-size: 34px;
  }

  .friction-grid {
    flex-direction: column;
    gap: 20px;
  }

  .friction-card {
    width: 100%;
  }

  .genre-wrap {
    padding: 40px 20px;
  }

  .genre {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    padding: 20px;
  }

  .genre-image {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    aspect-ratio: 430 / 400;
    order: -1;
  }

  .genre-text {
    flex: 1 1 auto;
  }

  .genre-text h2 {
    font-size: 34px;
  }

  .features {
    padding: 40px 20px;
  }

  .features-inner {
    gap: 20px;
  }

  .features-grid {
    flex-direction: column;
    gap: 24px;
  }

  .feature {
    width: 100%;
  }

  .discovery {
    padding: 40px 20px;
  }

  .discovery-inner {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  .discovery-image {
    width: 100%;
    height: 300px;
    align-self: stretch;
    order: -1;
  }

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

  .discovery-content {
    gap: 20px;
    width: 100%;
  }

  .discovery-text h2 {
    font-size: 34px;
  }

  .discovery-text-body {
    max-width: 100%;
  }

  .site-footer {
    padding-top: 40px;
  }

  .footer-inner {
    padding: 0 20px;
    gap: 56px;
  }

  .footer-top {
    gap: 20px;
  }

  .footer-socials {
    gap: 6.25px;
  }

  .footer-social-icon {
    width: 40px;
    height: 40px;
  }

  .footer-brand {
    font-size: 45px;
    letter-spacing: 3.6px;
    white-space: normal;
  }

  .footer-contacts {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    align-items: center;
  }

  .footer-bottom-row {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .footer-copy {
    white-space: normal;
    text-align: center;
  }

  .footer-banner img {
    height: 400px;
  }
}

.shelf-wrap {
  background: var(--bg-black);
  padding: 60px 90px;
}

.shelf {
  max-width: 1020px;
  margin: 0 auto;
  background: var(--green);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shelf-inner {
  display: flex;
  gap: 30px;
  align-items: center;
  width: 100%;
}

.shelf-text {
  flex: 0 0 auto;
  width: 560px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: var(--white);
}

.shelf-text h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.1;
  text-transform: uppercase;
}

.shelf-text-body {
  display: flex;
  flex-direction: column;
  gap: 1.1em;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.1;
}

.shelf-grid {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.shelf-row {
  display: flex;
  gap: 20px;
  width: 100%;
}

.shelf-card {
  flex: 1 1 0;
  min-width: 0;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  display: block;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.shelf-card:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.shelf-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rowsense-wrap {
  background: var(--bg-black);
  padding: 60px 90px;
}

.rowsense {
  max-width: 1020px;
  margin: 0 auto;
  background: var(--green);
  padding: 20px 40px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.rowsense-image {
  flex: 1 1 0;
  height: 430px;
  min-width: 0;
  overflow: hidden;
}

.rowsense-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.rowsense-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.rowsense-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--cream);
}

.rowsense-text h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.1;
}

.rowsense-text-body {
  display: flex;
  flex-direction: column;
  gap: 1.6em;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  max-width: 422px;
}

@media (max-width: 900px) {
  .shelf-wrap {
    padding: 40px 20px;
  }

  .shelf {
    padding: 20px;
  }

  .shelf-inner {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  .shelf-text {
    width: 100%;
    gap: 20px;
  }

  .shelf-text h1 {
    font-size: 40px;
  }

  .shelf-grid {
    width: 100%;
  }

  .rowsense-wrap {
    padding: 40px 20px;
  }

  .rowsense {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    padding: 20px;
  }

  .rowsense-image {
    width: 100%;
    height: 300px;
    flex: 0 0 auto;
  }

  .rowsense-content {
    width: 100%;
  }

  .rowsense-text h2 {
    font-size: 34px;
  }

  .rowsense-text-body {
    max-width: 100%;
  }
}

.game-detail {
  background: var(--green);
  padding: 60px 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.game-detail-inner {
  max-width: 1020px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;

}
.game-detail-inner a {
  margin: 0 auto;
}

.game-detail h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.1;
  color: var(--cream);
  text-align: center;
  width: 100%;
}

.game-detail-image {
  width: 300px;
  height: 300px;
  flex-shrink: 0;
  overflow: hidden;
}

.game-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.game-detail-text {
  display: flex;
  flex-direction: column;
  gap: 1.6em;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--cream);
  text-align: center;
  width: 100%;
}

@media (max-width: 900px) {
  .game-detail {
    padding: 40px 20px;
  }

  .game-detail-inner {
    gap: 20px;
  }

  .game-detail h1 {
    font-size: 34px;
  }

  .game-detail-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

.policy-wrap {
  background: var(--bg-black);
  padding: 60px 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.policy-inner {
  max-width: 1020px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.policy-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.1;
  color: var(--cream);
  text-align: center;
  width: 100%;
}

.policy-card {
  background: var(--green);
  padding: 20px;
  width: 100%;
}

.policy-card p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 20px;
}

.policy-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .policy-wrap {
    padding: 40px 20px;
  }

  .policy-inner {
    gap: 20px;
  }

  .policy-title {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .footer-brand {
    font-size: 36px;
    letter-spacing: 2px;
  }
}

/* ============================
   Cookie consent banner
   ============================ */
.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cookie-banner--visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner--closing {
  opacity: 0;
}

.cookie-banner-box {
  background: var(--green);
  width: 100%;
  max-width: 1200px;
  padding: 32px 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  pointer-events: auto;
  transform: translateY(24px);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.4);
}

.cookie-banner--visible .cookie-banner-box {
  transform: translateY(0);
}

.cookie-banner-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  color: var(--cream);
  line-height: 1.1;
  text-transform: capitalize;
}

.cookie-banner-text {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--cream);
  line-height: 1.6;
}

.cookie-banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 16px;
  line-height: 1.2;
  text-transform: capitalize;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  min-width: 180px;
}

.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.cookie-btn:active {
  transform: translateY(0);
}

.cookie-btn-accept {
  background: var(--white);
  color: var(--green);
}

.cookie-btn-decline {
  background: rgba(254, 252, 249, 0.45);
  color: var(--green);
}

@media (max-width: 900px) {
  .cookie-banner-box {
    padding: 24px 20px;
    gap: 16px;
  }

  .cookie-banner-title {
    font-size: 34px;
  }

  .cookie-banner-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-btn {
    width: 100%;
    min-width: 0;
    padding: 16px 24px;
  }
}

/* ============================
   Reveal-on-scroll animation
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .cookie-banner,
  .cookie-banner-box,
  .cookie-btn {
    transition: none;
  }
}

/* ============================
   Hover effects
   ============================ */
.btn {
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.25s ease,
              opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.btn:active {
  transform: translateY(0);
}

.friction-card,
.feature {
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}

.friction-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 142, 85, 0.25);
  border-color: var(--cream);
}

.feature:hover .card-title {
  color: var(--white);
}

.card-image img,
.feature .card-image img {
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.friction-card:hover .card-image img,
.feature:hover .card-image img {
  transform: scale(1.08) rotate(-2deg);
}

.shelf-card img {
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.shelf-card:hover img {
  transform: scale(1.06);
}

.shelf-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.shelf-card:hover::after {
  opacity: 1;
}

.logo {
  transition: transform 0.25s ease;
}

.logo:hover {
  transform: scale(1.04);
}

.logo-img {
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.logo:hover .logo-img {
  transform: rotate(-8deg);
}

.footer-socials a {
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px) scale(1.05);
  opacity: 0.9;
}

.nav-menu a {
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

.footer-links a {
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

/* Float-in hero character */
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-image img,
.genre-image img,
.discovery-image img,
.rowsense-image img {
  animation: floaty 7s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-image img,
  .genre-image img,
  .discovery-image img,
  .rowsense-image img {
    animation: none;
  }
}

/* Mobile nav open state */
@media (max-width: 900px) {
  .nav-menu.nav-menu--open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-black);
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    z-index: 50;
    border-top: 1px solid rgba(254, 252, 249, 0.1);
  }

  .site-header {
    position: relative;
  }

  .nav-toggle--active img {
    transform: rotate(90deg);
    transition: transform 0.2s ease;
  }
}

