:root {
  --bg0: #070a14;
  --bg1: #0b1020;
  --bg2: #0f1733;
  --bg3: #141b2d;
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.045);
  --border: rgba(255, 255, 255, 0.12);
  --border2: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.95);
  --muted: rgba(255, 255, 255, 0.7);
  --muted2: rgba(255, 255, 255, 0.55);
  --primary: #8b5cf6;
  --primary-light: #a78bfa;
  --cyan: #38bdf8;
  --green: #22c55e;
  --orange: #f97316;
  --pink: #ec4899;
  --success: var(--green);
  --danger: #ef4444;
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  --shadow2: 0 12px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 60px rgba(139, 92, 246, 0.25);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

a:hover {
  opacity: 0.85;
}

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

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: -999px;
}

.skip:focus {
  left: 16px;
  top: 16px;
  background: var(--bg2);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  z-index: 100;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(7, 10, 20, 0.8);
  border-bottom: 1px solid var(--border2);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.3px;
}

.brand:hover {
  opacity: 1;
}

.brandLogo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
}

.nav a:hover {
  color: var(--text);
  opacity: 1;
}

.navCta {
  padding: 10px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), #6366f1);
  color: white !important;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.navCta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.45);
  opacity: 1;
}

.langSwitch {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 700;
  font-size: 12px;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  overflow: hidden;
}

.heroBackground {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.heroBgGlow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
}

.heroBgGlow1 {
  width: 800px;
  height: 800px;
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
}

.heroBgGlow2 {
  width: 600px;
  height: 600px;
  top: 20%;
  right: -100px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.3) 0%, transparent 70%);
}

.heroBgGlow3 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: 30%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.25) 0%, transparent 70%);
}

.heroContent {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.heroText {
  max-width: 560px;
}

.heroBadge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 24px;
}

.heroBadgeDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

.heroTitle {
  margin: 0 0 20px;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.heroTitleGradient {
  display: block;
  background: linear-gradient(135deg, var(--primary-light), var(--cyan), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.heroSubtitle {
  margin: 0 0 32px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.heroStats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
}

.heroStat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.heroStatValue {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}

.heroStatLabel {
  font-size: 13px;
  color: var(--muted2);
  font-weight: 600;
}

.heroCta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.heroCtaButton {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), #6366f1);
  color: white;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.heroCtaButton:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5);
  opacity: 1;
}

.heroCtaIcon {
  width: 22px;
  height: 22px;
}

.heroCtaSecondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s ease;
}

.heroCtaSecondary:hover {
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
}

.heroNote {
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
}

/* Screenshots flottants */
.heroScreenshots {
  position: relative;
  height: 580px;
  perspective: 1000px;
}

.heroScreenshot {
  position: absolute;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.4s ease, opacity 0.3s ease;
  background: #0a0a0f;
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.heroScreenshot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.heroScreenshot1 {
  width: 220px;
  height: 440px;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 80px rgba(139, 92, 246, 0.25);
  border-color: rgba(139, 92, 246, 0.3);
}

.heroScreenshot2 {
  width: 180px;
  height: 360px;
  top: 100px;
  left: 5%;
  transform: rotateY(12deg) rotateZ(-2deg);
  z-index: 2;
  opacity: 0.75;
}

.heroScreenshot3 {
  width: 180px;
  height: 360px;
  top: 100px;
  right: 5%;
  transform: rotateY(-12deg) rotateZ(2deg);
  z-index: 1;
  opacity: 0.75;
}

.heroScreenshot:hover {
  transform: translateY(-8px) scale(1.03);
  z-index: 10;
  opacity: 1;
  border-color: rgba(139, 92, 246, 0.5);
}

.heroScreenshot1:hover {
  transform: translateX(-50%) translateY(-8px) scale(1.03);
}

/* Games bar */
.heroGames {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border2);
}

.heroGamesInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.heroGamesLabel {
  font-size: 13px;
  color: var(--muted2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.heroGamesLogos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.gameTag {
  padding: 10px 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border2);
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  transition: all 0.2s ease;
}

.gameTag:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
  color: var(--text);
}

/* ========== SECTIONS ========== */
.section {
  padding: 100px 0;
}

.sectionAlt {
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg0) 100%);
}

.sectionHeader {
  margin-bottom: 48px;
}

.sectionHeaderCenter {
  text-align: center;
}

.sectionHeaderCenter .sectionHeaderContent {
  max-width: 600px;
  margin: 0 auto;
}

.sectionHeader h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.sectionHeader p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

/* ========== FEATURES ========== */
.featuresGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.featureCard {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border2);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.featureCard:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.3);
}

.featureCardLarge {
  grid-column: span 2;
}

.featureIcon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.featureIconPurple {
  background: rgba(139, 92, 246, 0.15);
  color: var(--primary-light);
}

.featureIconCyan {
  background: rgba(56, 189, 248, 0.15);
  color: var(--cyan);
}

.featureIconGreen {
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
}

.featureIconOrange {
  background: rgba(249, 115, 22, 0.15);
  color: var(--orange);
}

.featureIconPink {
  background: rgba(236, 72, 153, 0.15);
  color: var(--pink);
}

.featureCard h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
}

.featureCard p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ========== STEPS ========== */
.stepsContainer {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}

.stepCard {
  flex: 1;
  max-width: 320px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border2);
  text-align: center;
}

.stepNumber {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 800;
  color: white;
}

.stepCard h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
}

.stepCard p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.stepConnector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  margin-top: 56px;
  opacity: 0.4;
}

/* ========== SCREENSHOTS GALLERY ========== */
.screenshotsGallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.screenshotItem {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #0a0a0f;
  border: 2px solid var(--border2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  aspect-ratio: 9 / 18;
}

.screenshotItem:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.4);
}

.screenshotItem img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.screenshotLabel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 12px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

/* ========== FAQ ========== */
.faqGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.faqCard {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border2);
}

.faqCard h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
}

.faqCard p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.faqCard a {
  color: var(--primary-light);
  text-decoration: underline;
}

/* ========== PRESSE ========== */
.pressGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.pressCard {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border2);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.pressCard:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 30px rgba(139, 92, 246, 0.1);
  opacity: 1;
}

.pressLogo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pressLogoYt {
  gap: 12px;
}

.pressLogoImg {
  height: 36px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.pressLogoImgColor {
  filter: none;
  opacity: 1;
  height: 48px;
  border-radius: 8px;
}

.pressLogoText {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
}

.pressQuote {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  font-style: italic;
  flex: 1;
}

.pressLink {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-light);
}

@media (max-width: 600px) {
  .pressGrid {
    grid-template-columns: 1fr;
  }
}

/* ========== CTA SECTION ========== */
.ctaSection {
  padding: 60px 0 100px;
}

.ctaCard {
  position: relative;
  padding: 60px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(56, 189, 248, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.25);
  text-align: center;
  overflow: hidden;
}

.ctaCardContent {
  position: relative;
  z-index: 1;
}

.ctaCard h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
}

.ctaCard p {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 16px;
}

.ctaCardButton {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), #6366f1);
  color: white;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ctaCardButton:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5);
  opacity: 1;
}

.ctaCardGlow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
  filter: blur(60px);
}

/* ========== CONTACT ========== */
.contactGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contactCard {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border2);
  text-align: center;
}

.contactCard h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
}

.contactCard p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contactCard a {
  color: var(--primary-light);
}

/* ========== FOOTER ========== */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border2);
  background: var(--bg0);
}

.footerContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footerBrand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
}

.footerBrand img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.footerLinks {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--muted);
}

.footerLinks a:hover {
  color: var(--text);
}

.footerCopy {
  font-size: 13px;
  color: var(--muted2);
}

/* ========== BUTTONS ========== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.button:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
  opacity: 1;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--primary), #6366f1);
  border: none;
  color: white;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.button.primary:hover {
  box-shadow: 0 6px 24px rgba(139, 92, 246, 0.45);
  transform: translateY(-2px);
}

.button.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--muted);
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ========== CARD (shared) ========== */
.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.cardInner {
  padding: 32px;
}

/* ========== LEGAL PAGES ========== */
.legalPage .content {
  max-width: 860px;
}

.legalCard {
  margin-top: 14px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border2);
  background: rgba(255, 255, 255, 0.03);
}

.legalCard h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

.legalCard p,
.legalCard ul {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.legalCard ul {
  margin-top: 12px;
  padding-left: 20px;
}

.legalCard li {
  margin: 8px 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .heroContent {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .heroText {
    max-width: 100%;
  }

  .heroStats {
    justify-content: center;
  }

  .heroCta {
    justify-content: center;
    flex-wrap: wrap;
  }

  .heroScreenshots {
    height: 480px;
    max-width: 550px;
    margin: 0 auto;
  }

  .heroScreenshot1 {
    width: 180px;
    height: 360px;
    top: 50px;
  }

  .heroScreenshot2,
  .heroScreenshot3 {
    width: 140px;
    height: 280px;
    top: 90px;
  }

  .heroScreenshot2 {
    left: 0;
  }

  .heroScreenshot3 {
    right: 0;
  }

  .featuresGrid {
    grid-template-columns: 1fr 1fr;
  }

  .featureCardLarge {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .heroScreenshots {
    height: 400px;
  }

  .heroScreenshot1 {
    width: 160px;
    height: 320px;
    top: 40px;
  }

  .heroScreenshot2 {
    width: 120px;
    height: 240px;
    left: 0;
    top: 80px;
  }

  .heroScreenshot3 {
    width: 120px;
    height: 240px;
    right: 0;
    top: 80px;
  }

  .featuresGrid {
    grid-template-columns: 1fr;
  }

  .featureCardLarge {
    grid-column: span 1;
  }

  .stepsContainer {
    flex-direction: column;
    align-items: center;
  }

  .stepConnector {
    width: 2px;
    height: 40px;
    margin: 0;
  }

  .screenshotsGallery {
    grid-template-columns: repeat(2, 1fr);
    max-width: 400px;
    gap: 16px;
  }

  .faqGrid {
    grid-template-columns: 1fr;
  }

  .contactGrid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 32px);
  }

  .heroTitle {
    font-size: 36px;
  }

  .heroSubtitle {
    font-size: 16px;
  }

  .heroStats {
    gap: 20px;
  }

  .heroStatValue {
    font-size: 22px;
  }

  .heroCta {
    flex-direction: column;
  }

  .heroCtaButton,
  .heroCtaSecondary {
    width: 100%;
    justify-content: center;
  }

  .heroScreenshots {
    height: 360px;
  }

  .heroScreenshot1 {
    width: 160px;
    height: 320px;
  }

  .heroScreenshot2,
  .heroScreenshot3 {
    display: none;
  }

  .heroGamesLogos {
    gap: 8px;
  }

  .gameTag {
    padding: 8px 12px;
    font-size: 12px;
  }

  .ctaCard {
    padding: 40px 24px;
  }
}
