/* ============================================
   ORIENTAL START — Hand-Drawn Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@400;700&family=Patrick+Hand&display=swap');

/* --- CSS Variables --- */
:root {
  --bg:            #fdfbf7;
  --fg:            #2d2d2d;
  --muted:         #e5e0d8;
  --accent:        #ff4d4d;
  --secondary:     #2d5da1;
  --border:        #2d2d2d;
  --white:         #ffffff;
  --postit:        #fff9c4;
  --green:         #3a7d44;
  --font-heading:  'Kalam', cursive;
  --font-body:     'Patrick Hand', cursive;
  --shadow-sm:     3px 3px 0px 0px #2d2d2d;
  --shadow-md:     4px 4px 0px 0px #2d2d2d;
  --shadow-lg:     8px 8px 0px 0px #2d2d2d;
  --radius-wobbly: 255px 15px 225px 15px / 15px 225px 15px 255px;
  --radius-wobbly-md: 30px 5px 25px 5px / 5px 25px 5px 30px;
  --radius-card:   15px 225px 15px 255px / 225px 15px 255px 15px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--fg);
  font-size: 18px;
  line-height: 1.625;
  overflow-x: hidden;
  background-image: radial-gradient(#e5e0d8 1px, transparent 1px);
  background-size: 24px 24px;
}

a { color: var(--secondary); text-decoration: none; transition: all 0.1s ease; }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Animations --- */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50%       { transform: translateY(-8px) rotate(-1deg); }
}
@keyframes bounce-gentle {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-12px) rotate(2deg); }
}
.animate-float  { animation: float 4s ease-in-out infinite; }
.animate-bounce { animation: bounce-gentle 3s ease-in-out infinite; }

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253,251,247,0.93);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--border);
  box-shadow: 0 3px 0 0 var(--border);
  padding: 14px 0;
}
.header .container { display: flex; align-items: center; justify-content: space-between; }
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img  { height: 38px; width: auto; display: block; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  transform: rotate(-1deg);
  display: inline-block;
}
.nav { display: flex; gap: 4px; align-items: center; }
.nav a {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--fg);
  padding: 6px 14px;
  border: 2px solid transparent;
  border-radius: var(--radius-wobbly);
  transition: all 0.1s ease;
  display: inline-block;
}
.nav a:hover {
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: 2px 2px 0 var(--accent);
  transform: rotate(-1deg);
}
.nav-toggle {
  display: none;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-wobbly);
  font-size: 20px;
  cursor: pointer;
  color: var(--fg);
  padding: 6px 12px;
  box-shadow: var(--shadow-sm);
  line-height: 1;
}

/* --- Hero --- */
.hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
}
.hero-deco-circle {
  position: absolute;
  width: 280px; height: 280px;
  border: 3px dashed var(--muted);
  border-radius: 50%;
  top: 8%; right: -80px;
  opacity: 0.5;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}
.hero-deco-circle-2 {
  position: absolute;
  width: 140px; height: 140px;
  border: 2px dashed var(--accent);
  border-radius: 50%;
  bottom: 5%; left: 2%;
  opacity: 0.2;
  animation: float 8s ease-in-out infinite reverse;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  background: var(--postit);
  border: 2px solid var(--border);
  border-radius: var(--radius-wobbly);
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  padding: 4px 16px;
  margin-bottom: 22px;
  transform: rotate(-1deg);
}
.hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 60px;
  line-height: 1.05;
  margin-bottom: 18px;
}
.hero h1 .underline-red {
  position: relative;
  display: inline-block;
  color: var(--accent);
}
.hero h1 .underline-red::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  transform: rotate(-1deg);
}
.hero p {
  font-size: 19px;
  opacity: 0.8;
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--fg);
  background: var(--white);
  padding: 12px 30px;
  border: 3px solid var(--border);
  border-radius: var(--radius-wobbly);
  box-shadow: var(--shadow-md);
  transition: all 0.1s ease;
  transform: rotate(-0.5deg);
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--accent);
  color: var(--white);
  box-shadow: 2px 2px 0 var(--border);
  transform: translateX(2px) translateY(2px) rotate(0.5deg);
}
.btn-primary:active { box-shadow: none; transform: translateX(4px) translateY(4px); }
.btn-secondary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--secondary);
  padding: 11px 24px;
  border: 2px dashed var(--secondary);
  border-radius: var(--radius-wobbly);
  transition: all 0.1s ease;
  transform: rotate(0.5deg);
  text-decoration: none;
}
.btn-secondary:hover {
  background: var(--secondary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateX(2px) translateY(2px) rotate(-0.5deg);
}
.hero-logo-card {
  background: var(--white);
  border: 3px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  padding: 28px 24px;
  text-align: center;
  transform: rotate(2deg);
  transition: transform 0.1s ease;
  flex-shrink: 0;
  position: relative;
}
.hero-logo-card:hover { transform: rotate(-1deg); }
.hero-logo-card img { width: 150px; margin: 0 auto; }

/* Tape decoration */
.tape {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 60px; height: 22px;
  background: rgba(229,224,216,0.7);
  border: 1px solid rgba(45,45,45,0.2);
  z-index: 2;
}

/* --- Stats --- */
.stats-section {
  padding: 0;
  border-top: 3px solid var(--border);
  border-bottom: 3px solid var(--border);
  background: var(--fg);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 32px 20px;
  text-align: center;
  border-right: 2px solid rgba(255,255,255,0.15);
  transition: background 0.1s ease;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.05); }
.stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  color: var(--postit);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(253,251,247,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Section Shared --- */
.section { position: relative; padding: 88px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.section-kicker::before, .section-kicker::after {
  content: '—';
  opacity: 0.4;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 44px;
  color: var(--fg);
  line-height: 1.1;
  position: relative;
  display: inline-block;
  transform: rotate(-0.5deg);
}
.section-title::after {
  content: '';
  display: block;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 8px;
  transform: rotate(0.5deg);
}
.section-sub {
  margin-top: 14px;
  font-size: 17px;
  opacity: 0.65;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.section-divider {
  border: none;
  border-top: 2px dashed var(--muted);
  margin: 0;
}


/* --- Games Grid --- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.game-card {
  position: relative;
  background: var(--white);
  border: 3px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: var(--fg);
}
.game-card:nth-child(3n+1) { transform: rotate(-0.8deg); }
.game-card:nth-child(3n+2) { transform: rotate(0.6deg); }
.game-card:nth-child(3n+3) { transform: rotate(-0.4deg); }
.game-card:hover {
  transform: rotate(0) translateY(-5px);
  box-shadow: var(--shadow-lg);
  z-index: 10;
}
.game-card-img-wrap {
  position: relative;
  border-bottom: 3px solid var(--border);
  background: var(--muted);
  overflow: hidden;
  aspect-ratio: 16/10;
}
.game-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}
.game-card:hover .game-card-img { transform: scale(1.05); }
.game-card-body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.game-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.game-card-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}
.game-card-type {
  font-size: 12px;
  padding: 2px 10px;
  border: 2px solid var(--border);
  border-radius: var(--radius-wobbly);
  background: var(--postit);
  white-space: nowrap;
  flex-shrink: 0;
  transform: rotate(1deg);
  display: inline-block;
}
.game-card-desc {
  font-size: 14px;
  opacity: 0.68;
  line-height: 1.5;
}
.game-card-play {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--secondary);
  border-bottom: 2px dashed var(--secondary);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: all 0.1s ease;
}
.game-card:hover .game-card-play { color: var(--accent); border-color: var(--accent); }

/* --- Platforms Section --- */
.platforms-section { }
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.platform-card {
  background: var(--white);
  border: 3px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  padding: 24px 18px;
  text-align: center;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  color: var(--fg);
  display: block;
}
.platform-card:nth-child(3n+1) { transform: rotate(-0.8deg); }
.platform-card:nth-child(3n+2) { transform: rotate(0.6deg); }
.platform-card:nth-child(3n+3) { transform: rotate(-0.4deg); }
.platform-card:nth-child(2)    { background: var(--postit); }
.platform-card:nth-child(5)    { background: var(--postit); }
.platform-card:nth-child(8)    { background: var(--postit); }
.platform-card:hover {
  transform: rotate(0) translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.platform-card-icon { font-size: 32px; margin-bottom: 10px; display: block; }
.platform-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  margin-bottom: 4px;
}
.platform-card p { font-size: 13px; opacity: 0.6; }

/* --- About Section --- */
.about-section { }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.about-text .section-title { text-align: left; transform: none; }
.about-text .section-title::after { transform: none; }
.about-text p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 16px;
  opacity: 0.85;
}
.about-feats {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  border: 2px solid var(--border);
  border-left: 4px solid var(--secondary);
  border-radius: 0 var(--radius-wobbly-md) var(--radius-wobbly-md) 0;
  box-shadow: var(--shadow-sm);
  transition: all 0.1s ease;
}
.about-feat:hover { transform: translateX(4px); box-shadow: none; }
.about-feat-icon { font-size: 22px; flex-shrink: 0; }
.about-feat h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  margin-bottom: 2px;
}
.about-feat p { font-size: 14px; opacity: 0.68; margin: 0; line-height: 1.5; }

/* Sticky note info card */
.info-card {
  background: var(--postit);
  border: 3px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  padding: 0;
  overflow: hidden;
  transform: rotate(1deg);
  transition: transform 0.1s ease;
  position: relative;
}
.info-card:hover { transform: rotate(-0.5deg); }
.info-card-header {
  background: var(--fg);
  color: var(--bg);
  padding: 14px 20px;
  font-family: var(--font-heading);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-card-body { padding: 4px 0; }
.info-row {
  display: flex;
  align-items: flex-start;
  padding: 13px 20px;
  border-bottom: 2px dashed rgba(45,45,45,0.15);
  gap: 14px;
  font-size: 14px;
}
.info-row:last-child { border-bottom: none; }
.info-row-icon { font-size: 18px; flex-shrink: 0; width: 24px; }
.info-row-label { opacity: 0.55; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.info-row-val { font-family: var(--font-heading); font-size: 15px; line-height: 1.3; }
.info-card-footer {
  background: rgba(45,45,45,0.06);
  border-top: 2px dashed rgba(45,45,45,0.15);
  padding: 10px 20px;
  font-size: 12px;
  opacity: 0.5;
  text-align: right;
}

/* --- How It Works --- */
.how-section { }
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
/* dashed horizontal connector */
.how-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  border-top: 2px dashed var(--muted);
  pointer-events: none;
}
.how-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.how-step-num {
  width: 56px; height: 56px;
  background: var(--white);
  border: 3px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  box-shadow: var(--shadow-sm);
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
}
.how-step:nth-child(even) .how-step-num { background: var(--postit); color: var(--secondary); }
.how-step-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.how-step h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  margin-bottom: 8px;
}
.how-step p { font-size: 14px; opacity: 0.68; line-height: 1.55; }

/* --- Trust / Why Us --- */
.trust-section {
  background: var(--fg);
  border-top: 3px solid var(--border);
  border-bottom: 3px solid var(--border);
}
.trust-section .section-kicker { color: var(--postit); }
.trust-section .section-title  { color: var(--bg); }
.trust-section .section-title::after { background: rgba(253,251,247,0.3); }
.trust-section .section-sub { color: rgba(253,251,247,0.55); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.trust-card {
  background: rgba(253,251,247,0.06);
  border: 2px solid rgba(253,251,247,0.15);
  border-top: 3px solid var(--postit);
  border-radius: 0;
  padding: 24px 20px;
  transition: all 0.1s ease;
}
.trust-card:hover {
  background: rgba(253,251,247,0.1);
  transform: translateY(-4px);
}
.trust-card-icon { font-size: 28px; margin-bottom: 12px; }
.trust-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--postit);
  margin-bottom: 8px;
}
.trust-card p { font-size: 14px; color: rgba(253,251,247,0.6); line-height: 1.65; }

/* --- Company Strip --- */
.company-strip {
  background: var(--muted);
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  padding: 16px 0;
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
}
.company-strip span { margin: 0 18px; }

/* --- Contact Section --- */
.contact-section { }
.contact-box {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 3px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  padding: 0;
  overflow: hidden;
  transform: rotate(-0.5deg);
  position: relative;
}
.contact-header {
  background: var(--fg);
  color: var(--bg);
  padding: 14px 24px;
  font-family: var(--font-heading);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-body {
  padding: 32px 36px;
  text-align: center;
}
.contact-body p { font-size: 16px; opacity: 0.75; margin-bottom: 22px; line-height: 1.7; }
.contact-email {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--secondary);
  border-bottom: 3px solid var(--secondary);
  padding-bottom: 4px;
  transition: all 0.1s ease;
}
.contact-email:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: rotate(1deg);
  display: inline-block;
}
.contact-address {
  margin-top: 24px;
  padding: 14px 16px;
  background: var(--muted);
  border: 2px dashed rgba(45,45,45,0.25);
  border-radius: var(--radius-wobbly-md);
  font-size: 13px;
  opacity: 0.65;
  line-height: 1.7;
  text-align: left;
}
.contact-address-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-bottom: 4px;
  display: block;
  font-family: var(--font-body);
}

/* --- Footer --- */
.footer {
  border-top: 3px solid var(--border);
  padding: 36px 0;
  background: var(--muted);
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 14px;
  color: var(--fg);
  opacity: 0.6;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: all 0.1s ease;
}
.footer-links a:hover { opacity: 1; color: var(--accent); border-color: var(--accent); text-decoration: line-through; }
.footer-copy   { font-size: 13px; opacity: 0.45; }
.footer-entity { font-size: 12px; opacity: 0.3; }

/* --- Legal Pages --- */
.legal-page { padding: 100px 0 80px; }
.legal-page .container { max-width: 780px; }
.legal-page h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 46px;
  margin-bottom: 8px;
  transform: rotate(-0.5deg);
  display: inline-block;
}
.legal-page .last-updated { font-size: 13px; opacity: 0.45; margin-bottom: 44px; }
.legal-page .entity-notice {
  background: var(--postit);
  border: 2px solid var(--border);
  border-radius: var(--radius-wobbly-md);
  padding: 18px 22px;
  margin: 28px 0 40px;
  font-size: 15px;
  box-shadow: var(--shadow-sm);
  transform: rotate(-0.3deg);
  line-height: 1.65;
}
.legal-page h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--secondary);
  margin: 36px 0 12px;
}
.legal-page p, .legal-page ul { font-size: 16px; line-height: 1.75; margin-bottom: 14px; opacity: 0.82; }
.legal-page ul { padding-left: 22px; }
.legal-page li { margin-bottom: 8px; }

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.15s !important;
  }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero h1     { font-size: 48px; }
  .section-title { font-size: 36px; }
  .games-grid  { grid-template-columns: repeat(2, 1fr); }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid  { grid-template-columns: 1fr; gap: 36px; }
  .trust-grid  { grid-template-columns: repeat(2, 1fr); }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .stat-item   { border-right: none; border-bottom: 2px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(odd)  { border-right: 2px solid rgba(255,255,255,0.1); }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(253,251,247,0.97);
    backdrop-filter: blur(12px);
    padding: 16px 24px;
    border-bottom: 3px solid var(--border);
    z-index: 50;
    gap: 2px;
  }
  .nav-toggle  { display: block; }
  .hero        { padding: 56px 0 44px; }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-logo-card  { display: none; }
  .hero h1     { font-size: 38px; }
  .hero p      { margin: 0 auto 28px; }
  .hero-btns   { justify-content: center; }
  .hero-deco-circle, .hero-deco-circle-2 { display: none; }
  .section     { padding: 60px 0; }
  .section-title { font-size: 30px; }
  .games-grid  { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .game-card:nth-child(3n+1),
  .game-card:nth-child(3n+2),
  .game-card:nth-child(3n+3) { transform: none; }
  .platform-card:nth-child(3n+1),
  .platform-card:nth-child(3n+2),
  .platform-card:nth-child(3n+3) { transform: none; }
  .how-steps   { flex-direction: column; gap: 32px; }
  .how-steps::before { display: none; }
  .platforms-grid { max-width: none; }
  .about-feat  { transform: none !important; }
  .trust-grid  { grid-template-columns: 1fr; }
  .footer .container { flex-direction: column; align-items: flex-start; }
  .contact-body { padding: 24px 20px; }
  .contact-email { font-size: 18px; }
}
@media (max-width: 480px) {
  .hero h1  { font-size: 30px; }
  .games-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 26px; }
  .trust-grid { grid-template-columns: 1fr; }
}
