@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800;900&family=Inter:wght@400;500;700&display=swap');

:root {
  /* SoftGrove Bubbly Calm Green Palette */
  --bg-color: #f0fdf4; /* Very light green */
  --bg-gradient: linear-gradient(145deg, #f0fdf4 0%, #dcfce7 100%);
  --text-primary: #064e3b; /* Deep green */
  --text-secondary: #047857; /* Medium-dark green */
  
  --sage: #10b981;
  --sage-deep: #059669;
  --rose: #f43f5e;
  
  --card-bg: rgba(255, 255, 255, 0.85);
  --card-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 16px 40px rgba(16, 185, 129, 0.12);
  
  --radius-xl: 40px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --content-width: 1240px;
  --title-font: 'Outfit', sans-serif;
  --body-font: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--body-font);
  overflow-x: hidden;
  position: relative;
}

/* Bubbly Parallax Backgrounds */
body::before, body::after, .parallax-bubble {
  content: '';
  position: fixed;
  border-radius: 50%;
  z-index: -1;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(16, 185, 129, 0.1));
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: float-bubble infinite alternate ease-in-out;
}

body::before {
  top: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  animation-duration: 18s;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(16, 185, 129, 0.2));
}

body::after {
  bottom: 15%;
  right: 5%;
  width: 500px;
  height: 500px;
  animation-duration: 25s;
  animation-delay: -5s;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(244, 63, 94, 0.15));
}

@keyframes float-bubble {
  0% { transform: translateY(0) scale(1) rotate(0deg); }
  50% { transform: translateY(-40px) scale(1.05) rotate(10deg); }
  100% { transform: translateY(20px) scale(0.95) rotate(-5deg); }
}

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

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

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 1rem;
  background: var(--text-primary);
  color: white;
}
.skip-link:focus {
  left: 50%;
  transform: translateX(-50%);
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 20px 32px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.05);
}

.site-header__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.site-brand:hover {
  transform: scale(1.05);
}

.site-brand__logo {
  height: 56px;
  width: 56px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.2);
}

.site-brand span {
  display: flex;
  flex-direction: column;
}

.site-brand strong {
  font-family: var(--title-font);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.1;
}

.site-brand small {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav {
  display: flex;
  gap: 12px;
}

.site-nav__link {
  padding: 10px 20px;
  border-radius: 999px;
  color: var(--text-secondary);
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: transparent;
}

.site-nav__link:hover, .site-nav__link.is-active {
  color: var(--text-primary);
  background: white;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
  transform: translateY(-2px);
}

.page-pad {
  padding: 60px 24px 100px;
  flex: 1;
}

.home-shell {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  gap: 100px;
}

/* Glassmorphism containers designed to be bright and bubbly */
.hero__panel, .game-card, .principle-card, .contact-preview {
  background: var(--card-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 2px solid var(--card-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-shadow);
}

.fullscreen-hero {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: -60px; /* offset the .page-pad top */
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: url('../images/games/matchjong/hero.png') center/cover no-repeat;
}

.fullscreen-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(240,253,244,0.3) 0%, rgba(240,253,244,1) 100%);
  z-index: 1;
}

.fullscreen-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.fullscreen-hero h1 {
  font-family: var(--title-font);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 24px 0;
  color: var(--text-primary);
  text-shadow: 0 4px 24px rgba(255,255,255,0.9);
}

.fullscreen-hero .hero__lede {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--text-secondary);
  max-width: 42rem;
  margin: 0 auto 36px;
  line-height: 1.5;
  font-weight: 700;
  text-shadow: 0 4px 16px rgba(255,255,255,0.9);
}

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  background: var(--sage);
  color: white;
  font-weight: 800;
  border-radius: 999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--sage);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-20px) translateX(-50%); }
  60% { transform: translateY(-10px) translateX(-50%); }
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}



.button {
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
  cursor: pointer;
  font-family: var(--body-font);
}

.button--primary {
  background: var(--sage);
  color: white;
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.4), inset 0 -4px 0 rgba(0,0,0,0.1);
}

.button--primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 32px rgba(16, 185, 129, 0.5), inset 0 -4px 0 rgba(0,0,0,0.1);
  background: #34d399; /* slightly brighter */
}

.button--primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4), inset 0 0 0 rgba(0,0,0,0.1);
}

.button--ghost {
  background: white;
  border: 2px solid rgba(16, 185, 129, 0.2);
  color: var(--sage-deep);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.button--ghost:hover {
  background: #f8fafc;
  transform: translateY(-4px);
  border-color: var(--sage);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.15);
}

.button--large {
  font-size: 1.3rem;
  padding: 20px 48px;
}

/* Sections */
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.section-heading h2 {
  font-family: var(--title-font);
  font-size: 3.5rem;
  font-weight: 900;
  margin: 12px 0 0;
  color: var(--text-primary);
}

.section-heading p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 24rem;
  text-align: right;
  margin: 0;
}

.eyebrow {
  color: var(--sage);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 1rem;
  background: rgba(16, 185, 129, 0.15);
  padding: 6px 16px;
  border-radius: 999px;
  display: inline-block;
  margin: 0;
}

/* Game Feed */
.game-feed {
  display: grid;
  gap: 80px;
  width: 100%;
}

.game-card {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: all 0.4s ease;
  overflow: hidden;
  margin: 0 auto;
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(16, 185, 129, 0.2);
}

.game-card__art {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

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

.game-card:hover .game-card__art img {
  transform: scale(1.08);
}

.game-card__content {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.game-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
}

.game-card__mood {
  color: var(--text-secondary);
  font-weight: 500;
  margin: 0;
}

.game-card__title-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.game-card__icon {
  width: 96px;
  height: 96px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.game-card__title-row h3 {
  font-family: var(--title-font);
  font-size: 3.2rem;
  font-weight: 900;
  margin: 0 0 8px;
  line-height: 1;
}

.game-card__title-row p {
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
}

.game-card__description {
  color: var(--text-primary);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

.chip-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 0 32px;
  list-style: none;
}

.chip-list li {
  padding: 8px 20px;
  background: white;
  border: 2px solid rgba(16, 185, 129, 0.15);
  border-radius: 999px;
  font-weight: 700;
  color: var(--sage-deep);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.screenshot-strip {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.screenshot-strip__item {
  height: 100px;
  width: 150px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: zoom-in;
}

.screenshot-strip__item:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.3);
}

.game-card__actions {
  display: flex;
  gap: 16px;
  margin-top: auto;
}

/* Principles */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.principle-card {
  padding: 48px 40px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
}

.principle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(16, 185, 129, 0.15);
  background: white;
}

.principle-card h3 {
  font-family: var(--title-font);
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 20px;
  color: var(--sage-deep);
}

.principle-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1.1rem;
  margin: 0;
}

/* Roadmap */
.roadmap-list {
  background: var(--card-bg);
  backdrop-filter: blur(24px);
  border: 2px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 48px 64px;
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.roadmap-list li {
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.6;
}

/* Contact Form */
.contact-preview {
  padding: 64px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 40px;
}

.contact-layout p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form label span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 20px;
  background: white;
  border: 2px solid rgba(16, 185, 129, 0.2);
  border-radius: 20px;
  color: var(--text-primary);
  font-family: var(--body-font);
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: inset 0 4px 8px rgba(0,0,0,0.02);
}

.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.contact-form__actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

/* Footer completely rewritten */
.site-footer {
  background: #064e3b; /* Deep green */
  color: white;
  padding: 80px 40px 40px;
  margin-top: 80px;
  border-top-left-radius: 64px;
  border-top-right-radius: 64px;
  position: relative;
  z-index: 10;
}

.site-footer__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 48px;
}

.site-footer__brand {
  flex: 1;
  min-width: 300px;
}

.site-footer__brand h2 {
  font-family: var(--title-font);
  font-size: 3rem;
  font-weight: 900;
  margin: 0 0 16px;
  color: white;
}

.site-footer__brand p {
  color: #a7f3d0;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 25rem;
  margin: 0 0 24px;
}

.site-footer__links-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 200px;
}

.site-footer__links-col h3 {
  font-family: var(--title-font);
  font-size: 1.5rem;
  color: #34d399;
  margin: 0 0 8px;
}

.site-footer__links-col a {
  color: #dcfce7;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.site-footer__links-col a:hover {
  color: white;
  transform: translateX(4px);
}

.site-footer__bottom {
  max-width: var(--content-width);
  margin: 64px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  color: #a7f3d0;
  align-items: center;
}

/* Legal Pages Redesign */
.legal-hero {
  max-width: 800px;
  margin: 60px auto 40px;
  text-align: center;
  padding: 40px;
}

.legal-hero h1 {
  font-family: var(--title-font);
  font-size: 3.5rem;
  font-weight: 900;
  margin: 16px 0;
  color: var(--text-primary);
}

.legal-intro {
  font-size: 1.3rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.legal-sections {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.legal-card {
  background: var(--card-bg);
  backdrop-filter: blur(24px);
  border: 2px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--glass-shadow);
}

.legal-card h2 {
  font-family: var(--title-font);
  font-size: 1.8rem;
  color: var(--sage-deep);
  margin-top: 0;
  margin-bottom: 24px;
}

.legal-card p, .legal-card li {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.legal-card ul {
  padding-left: 20px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
  animation: fade-in 0.3s ease;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: scale-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scale-in {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Cookie Banner restored and restyled */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  border-radius: var(--radius-xl);
  background: var(--card-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 2px solid var(--sage);
  color: var(--text-primary);
  box-shadow: 0 24px 48px rgba(16, 185, 129, 0.25);
  animation: slide-up 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes slide-up {
  from { transform: translateY(150px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-banner__content h2 {
  font-family: var(--title-font);
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.cookie-banner__content p {
  color: var(--text-secondary);
  font-weight: 500;
  margin: 0;
}

.cookie-banner__actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero { flex-direction: column; }
  .hero__panel, .hero__aside { flex: auto; width: 100%; }
  .game-card { grid-template-columns: 1fr; }
  .game-card__art { min-height: 350px; }
  .principles-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 3.5rem; }
  .page-pad { padding: 40px 16px 80px; }
  .site-header { padding: 12px 16px; }
  .section-heading { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-heading h2 { font-size: 2.2rem; }
  .section-heading p { text-align: left; }

  /* Header: hide tagline, shrink logo */
  .site-brand small { display: none; }
  .site-brand strong { font-size: 1.3rem; }
  .site-brand__logo { height: 40px; width: 40px; border-radius: 12px; }
  .site-brand { gap: 10px; }

  /* Nav: shrink links */
  .site-nav { gap: 4px; }
  .site-nav__link { padding: 8px 12px; font-size: 0.85rem; }

  /* Hero */
  .fullscreen-hero { height: 70vh; }
  .hero__actions { flex-wrap: wrap; gap: 12px; }
  .button--large { font-size: 1.1rem; padding: 16px 32px; }

  /* Game cards */
  .game-card__art { min-height: 240px; }
  .game-card__content { padding: 28px 20px; }
  .game-card__title-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .game-card__title-row h3 { font-size: 2rem; }
  .game-card__title-row p { font-size: 1rem; }
  .game-card__icon { width: 64px; height: 64px; border-radius: 18px; }
  .game-card__description { font-size: 1rem; }
  .game-card__actions { flex-wrap: wrap; }
  .game-feed { gap: 40px; }
  .home-shell { gap: 60px; }

  /* Screenshot strip: horizontal scroll */
  .screenshot-strip { overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; padding-bottom: 4px; }
  .screenshot-strip__item { flex-shrink: 0; scroll-snap-align: start; width: 120px; height: 80px; border-radius: 14px; }

  /* Chips */
  .chip-list li { padding: 6px 14px; font-size: 0.9rem; }

  /* Principles */
  .principle-card { padding: 28px 24px; }
  .principle-card h3 { font-size: 1.5rem; }
  .principle-card p { font-size: 1rem; }

  /* Roadmap */
  .roadmap-list { padding: 28px 24px; }

  /* Contact */
  .contact-preview { padding: 28px 20px; }
  .contact-form__actions { flex-direction: column; }
  .contact-form__actions .button { width: 100%; text-align: center; }

  /* Cookie banner */
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; padding: 20px; left: 12px; right: 12px; bottom: 12px; }
  .cookie-banner__actions { justify-content: center; flex-wrap: wrap; }
  .cookie-banner__content h2 { font-size: 1.4rem; }

  /* Footer */
  .site-footer { padding: 48px 20px 28px; border-top-left-radius: 32px; border-top-right-radius: 32px; margin-top: 48px; }
  .site-footer__inner { flex-direction: column; gap: 32px; }
  .site-footer__brand { min-width: unset; }
  .site-footer__brand h2 { font-size: 2rem; }
  .site-footer__brand p { font-size: 1rem; }
  .site-footer__links-col { min-width: unset; }
  .site-footer__bottom { flex-direction: column; gap: 8px; text-align: center; margin-top: 32px; }

  /* Legal pages */
  .legal-hero { margin: 20px auto 24px; padding: 20px; }
  .legal-hero h1 { font-size: 2rem; }
  .legal-intro { font-size: 1.1rem; }
  .legal-card { padding: 24px 20px; }
  .legal-card h2 { font-size: 1.4rem; }
  .legal-card p, .legal-card li { font-size: 1rem; }

  /* Reduce decorative bubbles on mobile */
  body::before { width: 150px; height: 150px; }
  body::after { width: 200px; height: 200px; }
}

/* Small phones */
@media (max-width: 400px) {
  .site-brand strong { font-size: 1.1rem; }
  .site-nav__link { padding: 6px 8px; font-size: 0.8rem; }
  .fullscreen-hero h1 { font-size: clamp(2rem, 10vw, 3rem); }
  .game-card__title-row h3 { font-size: 1.6rem; }
  .button { padding: 14px 24px; font-size: 1rem; }
  .button--large { padding: 14px 24px; font-size: 1rem; }
}
