/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark: #0d0d2b;
  --dark-2: #111135;
  --dark-3: #111130;
  --light: #f5f5f7;
  --light-2: #e3e7ef;
  --accent: #0a84ff;
  --accent-hover: #0a78e8;
  --green: #34c759;
  --red: #ff3b30;
  --yellow: #ffcc00;
  --orange: #ff9500;
  --text-dark: #1a1a2e;
  --text-light: #ffffff;
  --text-muted: #6b7280;
  --text-muted-light: #8b9fd4;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --max-w: 1440px;
  --radius: 12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--dark);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 120px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 800px;
}

.section-note {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 32px;
  line-height: 1.6;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.btn--sm  { font-size: 14px; padding: 8px 18px; }
.btn--md  { font-size: 15px; padding: 12px 24px; }
.btn--lg  { font-size: 17px; padding: 16px 32px; border-radius: 10px; }

.btn--accent {
  background: var(--accent);
  color: #fff;
}
.btn--accent:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(61,127,255,0.4);
}

.link {
  color: var(--accent);
  font-weight: 600;
  transition: opacity 0.2s;
}
.link:hover { opacity: 0.8; }

.green { color: var(--green); }
.red   { color: var(--red); }

/* ============================================
   BADGES
   ============================================ */
.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}
.badge--green  { background: rgba(52,199,89,0.15); color: var(--green); }
.badge--yellow { background: rgba(255,204,0,0.15);  color: #c49c00; }
.badge--red    { background: rgba(255,59,48,0.15);   color: var(--red); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #080815;
}

.nav .container {
  max-width: 1440px;
  padding: 0 60px;
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
  position: relative;
  justify-content: space-between;
}

.nav__logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo span { color: #fff; }

.nav__logo-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #0a84ff 0%, #5e5ce6 100%);
  border-radius: 6px;
  flex-shrink: 0;
}

.nav__menu {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav__menu a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #7878a8;
  transition: color 0.2s;
}
.nav__menu a:hover { color: #fff; }
.nav__menu a.is-active {
  color: #fff;
  font-weight: 600;
}

.nav__cta {
  flex-shrink: 0;
  padding: 10px 22px;
  border-radius: 8px;
  background: #0a84ff;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
}

.nav__menu + .nav__cta { margin-left: auto; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  align-items: flex-end;
}
.nav__burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #f5f5f7;
  border-radius: 1px;
  transition: all 0.3s;
}
.nav__burger-line--mid { width: 18px; }
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(160deg, #0d0d2b 0%, #111135 50%, #0a1628 100%);
  overflow: hidden;
  padding: 0;
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(61,127,255,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(100,60,200,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  min-height: 860px;
}

.hero__content { width: 580px; max-width: 100%; min-width: 0; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #8b9fd4;
  background: #1a1a4a;
  border: 1px solid rgba(10,132,255,0.2);
  border-radius: 20px;
  padding: 8px 16px;
  margin-bottom: 24px;
}
.hero__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0a84ff;
  flex-shrink: 0;
}

.hero__h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0;
  max-width: 580px;
}

.hero__sub {
  font-size: 18px;
  color: #8b9fd4;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 560px;
}

.hero__amp {
  font-size: 18px;
  color: #8b9fd4;
  line-height: 1.6;
  margin-bottom: 28px;
}

.hero__actions { margin-top: 28px; margin-bottom: 0; }

.hero__meta {
  font-size: 14px;
  font-weight: 500;
  color: #5a6a8a;
  margin-top: 12px;
}

.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 28px;
}

.hero__stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}
.hero__stat-lbl {
  font-size: 13px;
  color: #5a6a8a;
}

.hero__visual {
  position: relative;
  flex-shrink: 0;
  width: 480px;
  height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__glow {
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(10,132,255,0.14) 0%, rgba(10,132,255,0) 100%);
  border-radius: 50%;
  left: 60px;
  top: 170px;
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite;
}

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

.hero__phone {
  position: relative;
  width: 280px;
  height: 560px;
  background: #1a1a3e;
  border-radius: 40px;
  border: 2px solid #2a2a5a;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
  padding: 30px 10px 30px;
}

.hero__phone-notch {
  width: 80px;
  height: 24px;
  background: #0d0d2b;
  border-radius: 12px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}

.hero__phone-screen {
  border-radius: 30px;
  overflow: hidden;
  width: 260px;
  height: 500px;
}

.hero__phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   BLOCK 2: HOW IT WORKS
   ============================================ */
.how {
  background: var(--light);
  padding: 100px 0;
  color: var(--text-dark);
}

.how .section-title { color: var(--text-dark); }
.how .section-title,
.how .section-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.how .section-text { max-width: 700px; }

.steps {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin-top: 48px;
  gap: 0;
}

.step {
  flex: 1;
  text-align: center;
  padding: 32px 24px;
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  margin: 0 auto 16px;
}

.step__icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 12px;
  color: var(--accent);
}

.step__title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.step__desc {
  width: 220px;
  max-width: 100%;
  margin: 0 auto;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

.how__note {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  padding: 16px 24px;
}
.how__note-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}
.how__note p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ============================================
   BLOCK 3: GAMES
   ============================================ */
.games {
  background: #0d0d2b;
  padding: 100px 0;
  color: #fff;
}

.games .section-title { color: #fff; }
.games .section-title,
.games .section-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.games .section-text  { color: #7878a8; max-width: 760px; }

.games__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.games__cat {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.games__cat-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.games__cat-sub {
  font-size: 13px;
  color: #5a6a8a;
  margin: 6px 0 16px;
}

.games__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.games__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #171738;
  border: 1px solid #252550;
  border-radius: 10px;
  gap: 8px;
}

.game__name {
  font-weight: 600;
  font-size: 15px;
  color: #fff;
}

.games .badge--green {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  background: #0a3a1a;
  color: #34c759;
}
.games .badge--yellow {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  background: #2a1a00;
  color: #ffcc00;
}

.games__footer {
  margin-top: 56px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  border-radius: 12px;
  background: #171738;
  border: 1px solid #252550;
}
.games__footer-icon {
  width: 20px;
  height: 20px;
  color: #0a84ff;
  flex-shrink: 0;
}
.games__footer p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #8b9fd4;
}

/* ============================================
   BLOCK 3.5: SCREENSHOTS
   ============================================ */
.shots {
  background: linear-gradient(180deg, #080818 0%, #0d0d25 100%);
  padding: 100px 0;
  color: #fff;
}

.shots .section-title { color: #fff; text-align: center; }
.shots .section-text { color: #7878a8; max-width: 700px; text-align: center; margin-left: auto; margin-right: auto; }

.shots__rows {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.shots__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.shot {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.shot img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
}

.shot figcaption {
  font-size: 13px;
  color: #7878a8;
  text-align: center;
}

.shot:last-child figcaption { color: #ffcc00; }

/* ============================================
   BLOCK 4: SYSTEM REQUIREMENTS
   ============================================ */
.sysreq {
  background: var(--light);
  padding: 100px 0;
  color: var(--text-dark);
}

.sysreq .section-title { color: var(--text-dark); }
.sysreq .section-title,
.sysreq .section-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.sysreq .section-text { max-width: 760px; }

.cpu-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0 40px;
}

.cpu-card {
  border-radius: 16px;
  padding: 24px;
  border: 2px solid transparent;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cpu-card__top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cpu-card__title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.cpu-card__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
}

.cpu-card__line {
  width: 100%;
  height: 3px;
  border-radius: 4px;
}

.cpu-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.cpu-card--green { border-color: #34c75920; }
.cpu-card--green .cpu-card__badge { background: #e8faf0; color: #1a7a3a; }
.cpu-card--green .cpu-card__line { background: #34c759; }

.cpu-card--yellow { border-color: #ffcc0020; }
.cpu-card--yellow .cpu-card__badge { background: #fffaeb; color: #a06000; }
.cpu-card--yellow .cpu-card__line { background: #ffcc00; }

.cpu-card--orange { border-color: #ff6b0020; }
.cpu-card--orange .cpu-card__badge { background: #fff0eb; color: #cc4400; }
.cpu-card--orange .cpu-card__line { background: #ff6b35; }

.cpu-card--red { border-color: #ff3b3020; }
.cpu-card--red .cpu-card__badge { background: #ffebeb; color: #cc1a00; }
.cpu-card--red .cpu-card__line { background: #ff3b30; }

.req-table {
  width: 760px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #fff;
}

.req-table__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid #e5e7eb;
  gap: 0;
}
.req-table__row:last-child { border-bottom: none; }
.req-table__row--alt { background: #fafafa; }

.req-table__param {
  font-weight: 500;
  min-width: 140px;
  color: #6b7280;
  font-size: 14px;
}

.req-table__val {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  text-align: right;
}

/* ============================================
   BLOCK 5: COMPARISON
   ============================================ */
.compare {
  background: #eaeaef;
  padding: 100px 0;
  color: var(--text-dark);
}

.compare .section-title { color: var(--text-dark); }

.compare__wrap {
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--light-2);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: #fff;
}

.compare__table th,
.compare__table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--light-2);
}

.compare__table th {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--light);
  letter-spacing: 0.02em;
}

.compare__table tr:last-child td { border-bottom: none; }

.compare__col--crit {
  color: var(--text-dark);
  font-weight: 500;
}

.compare__col--accent {
  background: rgba(61,127,255,0.05) !important;
  border-left: 2px solid var(--accent) !important;
  border-right: 2px solid var(--accent) !important;
  color: var(--text-dark) !important;
  font-weight: 600;
}
.compare__table thead th.compare__col--accent {
  background: rgba(61,127,255,0.1) !important;
  color: var(--accent) !important;
  font-size: 15px;
}

.compare__our {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  text-transform: none;
  letter-spacing: 0;
  margin-top: 2px;
}

.compare__col--other {
  color: var(--text-muted);
}

.compare__note-box {
  margin-top: 20px;
  background: var(--light-2);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.compare__note-box svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.compare__note-box p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.compare .section-note { color: var(--text-muted); }

/* ============================================
   BLOCK 6: FREE
   ============================================ */
.free {
  background: linear-gradient(135deg, #0a2050 0%, #0d1a3a 50%, #060d28 100%);
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.free::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(61,127,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.free .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.free__title {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  width: min(700px, 100%);
  text-align: center;
  margin: 0;
}

.free__big {
  font-family: var(--font-head);
  font-size: clamp(40px, 7vw, 56px);
  font-weight: 800;
  color: #0a84ff;
  line-height: 1.05;
  text-align: center;
  margin: 0;
}

.free__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: min(700px, 100%);
  margin: 0;
  padding: 0;
  list-style: none;
}

.free__list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 18px;
  color: #c5d0e8;
  line-height: 1.5;
}

.free__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  flex-shrink: 0;
  margin-top: -2px;
}
.free__icon svg { width: 18px; height: 18px; }

.free__icon--no  { background: #1a2a5a; color: #0a84ff; }
.free__icon--yes { background: #1a2a5a; color: #0a84ff; }

/* ============================================
   BLOCK 7: INSTALLATION
   ============================================ */
.install {
  background: #f5f5f7;
  padding: 100px 0;
  color: var(--text-dark);
}

.install .container {
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

.install__intro {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.install__title {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin: 0;
}

.install__text {
  max-width: 380px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.install__download {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 12px;
  background: linear-gradient(90deg, #0a84ff 0%, #0060cc 100%);
}

.install__download.btn--accent:hover {
  background: linear-gradient(90deg, #0a84ff 0%, #0060cc 100%);
}

.install__steps {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.install__step {
  display: flex;
  gap: 24px;
  position: relative;
  width: 100%;
  padding-bottom: 32px;
}

.install__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.install__line {
  position: absolute;
  left: 19px;
  top: 40px;
  width: 2px;
  height: 50px;
  background: linear-gradient(180deg, #0a84ff 0%, rgba(10,132,255,0.25) 100%);
}

.install__step:last-child .install__line { display: none; }
.install__step:last-child { padding-bottom: 0; }

.install__content {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.install__content h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.install__content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 540px;
  margin: 0;
}

.install__step:last-child .install__num { background: #34c759; }
.install__step:last-child .install__content h3 { color: #34c759; }

/* ============================================
   BLOCK 8: VERSIONS
   ============================================ */
.versions {
  background: #eaeaef;
  padding: 100px 0;
  color: var(--text-dark);
}

.versions .container {
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
}

.versions .section-title {
  color: var(--text-dark);
  width: min(800px, 100%);
  text-align: center;
  margin: 0;
}

.versions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.version-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.version-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.version-card--featured {
  border: 2px solid rgba(10,132,255,0.25);
}

.version-card__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #0a84ff;
  background: #eff6ff;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.version-card__title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.version-card__for {
  width: fit-content;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  margin: 0;
}

.version-card__for--blue {
  color: #0a84ff;
  background: #f0f4ff;
}

.version-card__for--gray {
  color: #6b7280;
  background: #f3f4f6;
}

.version-card__for--orange {
  color: #cc8800;
  background: #fff7e6;
}

.version-card__for--green {
  color: #1a7a3a;
  background: #f0fff4;
}

.version-card__desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 280px;
  margin: 0;
}

/* ============================================
   BLOCK 9: SETTINGS / TABS
   ============================================ */
.settings {
  background: #0d0d2b;
  padding: 100px 0;
  color: #fff;
}

.settings .section-title { color: #fff; }

.settings .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.settings .section-title {
  width: min(800px, 100%);
  text-align: center;
  margin: 0;
}

.tabs {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tabs__nav {
  display: flex;
  gap: 8px;
  padding: 6px;
  border-radius: 12px;
  background: #171738;
  width: fit-content;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs__nav::-webkit-scrollbar { display: none; }

.tabs__btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #7878a8;
  background: none;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, background-color 0.2s;
}
.tabs__btn:hover { color: #fff; }
.tabs__btn.active {
  color: #fff;
  font-weight: 700;
  background: #0a84ff;
}

.tab { display: none; }
.tab.active { display: block; }

.tab-panel--main {
  background: #171738;
  border: 1px solid #252550;
  border-radius: 20px;
  padding: 48px;
}

.tab-panel--alt {
  background: #1a1a45;
  border-radius: 12px;
  padding: 24px;
}

/* Driver cards */
.driver-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.driver-card {
  border-radius: 12px;
  padding: 20px;
  background: #1f1f50;
}

.driver-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.driver-card h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.driver-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #8b9fd4;
  max-width: 340px;
  margin: 0;
}

.driver-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.driver-card__badge--green { color: #34c759; background: #0a3a1a; }
.driver-card__badge--yellow { color: #ffcc00; background: #2a1a00; }
.driver-card__badge--red { color: #ff6b6b; background: #2a0000; }

.tab__label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.tab__label-line {
  width: 3px;
  height: 20px;
  border-radius: 2px;
  background: #0a84ff;
  flex-shrink: 0;
}

.tab__label h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.tab__label p {
  font-size: 14px;
  color: #7878a8;
  margin: 0;
}

/* Resolution cards */
.res-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.res-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 12px;
  background: #1f1f50;
}

.res-card--best {
  border: 2px solid rgba(10,132,255,0.38);
}

.res-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.res-card__badge {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.res-card__val {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.res-card__badge--yellow { color: #ffcc00; background: #2a1a00; }
.res-card__badge--green { color: #34c759; background: #0a3a1a; font-weight: 700; }
.res-card__badge--blue { color: #8b9fd4; background: #1a1a4a; }

.res-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #8b9fd4;
  margin: 0;
}

/* Preset cards */
.preset-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.preset-card {
  border-radius: 10px;
  padding: 20px;
  background: #1f1f50;
}

.preset-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.preset-card h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #f5f5f7;
  margin: 0;
}

.preset-card__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
}

.preset-card p {
  font-size: 14px;
  color: #a0a0c8;
  line-height: 1.6;
  margin: 0;
}

.preset-card__badge--orange { background: #ff9500; }
.preset-card__badge--green { background: #34c759; }
.preset-card__badge--blue { background: #0a84ff; }

/* DX cards */
.dx-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dx-card {
  border-radius: 10px;
  padding: 20px;
  background: #1f1f50;
}

.dx-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.dx-card h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #f5f5f7;
  margin: 0;
}

.dx-card p {
  font-size: 14px;
  color: #a0a0c8;
  line-height: 1.6;
  margin: 0;
}

.dx-card__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
}
.dx-card__badge--gray  { background: #636366; }
.dx-card__badge--green { background: #34c759; }
.dx-card__badge--red   { background: #ff3b30; }

/* ============================================
   ACCORDION (Blocks 10 & 11)
   ============================================ */
.problems {
  background: var(--light);
  padding: 100px 0;
  color: var(--text-dark);
}

.problems .section-title { color: var(--text-dark); }

.faq {
  background: #111130;
  padding: 100px 0;
  color: #fff;
}

.faq .section-title { color: #fff; }

.accordion {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accordion__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}

.faq .accordion__item {
  border-color: rgba(255,255,255,0.08);
}

.accordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  transition: background 0.2s;
}

.faq .accordion__btn {
  background: rgba(255,255,255,0.04);
  color: #fff;
}

.accordion__btn:hover { background: rgba(0,0,0,0.03); }
.faq .accordion__btn:hover { background: rgba(255,255,255,0.07); }

.accordion__item.open .accordion__btn { background: rgba(61,127,255,0.06); }
.faq .accordion__item.open .accordion__btn { background: rgba(61,127,255,0.1); }

.accordion__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--text-muted);
}
.faq .accordion__icon { color: var(--text-muted-light); }
.accordion__item.open .accordion__icon { transform: rotate(180deg); }

.accordion__body {
  display: none;
  padding: 4px 20px 18px;
  background: #fff;
}
.faq .accordion__body {
  background: rgba(255,255,255,0.04);
}
.accordion__item.open .accordion__body { display: block; }

.accordion__body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}
.faq .accordion__body p { color: var(--text-muted-light); }

.accordion__body code {
  background: rgba(0,0,0,0.07);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
  font-family: monospace;
}
.faq .accordion__body code {
  background: rgba(255,255,255,0.08);
  color: #e8e8f0;
}

/* ============================================
   BLOCK 12: CTA
   ============================================ */
.cta {
  background: linear-gradient(135deg, #0d0d2b 0%, #0a1628 100%);
  padding: 120px 0;
  color: #fff;
  text-align: center;
}

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

.cta__title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  width: min(900px, 100%);
  margin: 0;
}

.cta__sub {
  font-size: 18px;
  color: #7878a8;
  width: min(700px, 100%);
  margin: 0;
  line-height: 1.7;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(90deg, #0a84ff 0%, #0060cc 100%);
}

.cta__btn.btn--accent:hover {
  background: linear-gradient(90deg, #0a84ff 0%, #0060cc 100%);
}

.cta__meta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
  color: #5a6a8a;
}

.cta__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #2a3a5a;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #050510;
  color: #3a4a6a;
  padding: 56px 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 340px 200px 220px;
  justify-content: space-between;
  gap: 60px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.footer__logo-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, #0a84ff 0%, #5e5ce6 100%);
  flex-shrink: 0;
}

.footer__about {
  font-size: 14px;
  line-height: 1.6;
  max-width: 300px;
}

.footer__heading {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__nav a {
  font-size: 14px;
  color: #3a4a6a;
  transition: color 0.2s;
}
.footer__nav a:hover { color: #fff; }

.footer__bottom {
  margin-top: 56px;
  background: #03030d;
  border-top: 1px solid #0a0a20;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer__bottom-inner p {
  margin: 0;
  font-size: 13px;
  color: #1e2a45;
}

/* ============================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================ */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .nav__menu { display: none; }
  .nav__burger { display: flex; }
  .nav__logo { flex: 1; }
  .nav__inner { gap: 12px; }
  .nav .container { padding: 0 20px; }
  .hero .container { padding: 0 20px; }

  .nav__menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #080815;
    padding: 20px 20px 28px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav__menu.open a {
    font-size: 16px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: #7878a8;
  }
  .nav__menu.open a.is-active { color: #fff; }

  .hero { padding: 60px 0 48px; }
  .hero__inner { flex-direction: column; gap: 0; min-height: auto; align-items: stretch; }
  .hero__content { width: 100%; padding: 40px 0 20px; }
  .hero__badge { width: 350px; max-width: 100%; }
  .hero__h1 { font-size: 30px; max-width: 100%; }
  .hero__sub { font-size: 14px; max-width: 100%; }
  .hero__actions { margin-top: 20px; }
  .hero__stats { width: 100%; justify-content: space-between; gap: 16px; }
  .hero__visual { width: 100%; height: 560px; padding: 20px 0; }
  .hero__glow { width: 320px; height: 200px; left: calc(50% - 160px); top: 190px; }
  .hero__phone { width: 280px; height: 540px; }
  .hero__phone-screen { width: 260px; height: 500px; }

  .steps { flex-wrap: wrap; gap: 24px; }
  .step  { flex: 0 0 calc(50% - 24px); }
  .step__arrow { display: none; }

  .games__grid    { grid-template-columns: 1fr; }
  .shots__row     { grid-template-columns: 1fr 1fr; }
  .install .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .install__text { max-width: 100%; }
  .tab-panel--main { padding: 32px; }
  .tab-panel--alt { padding: 20px; }
  .tab__label { flex-wrap: wrap; }
  .cpu-cards      { grid-template-columns: repeat(2, 1fr); }
  .versions__grid { grid-template-columns: repeat(2, 1fr); }
  .res-cards      { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__inner > .footer__col--main { grid-column: 1 / -1; }
  .footer__bottom-inner { flex-wrap: wrap; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================ */
@media (max-width: 600px) {
  .how, .sysreq, .install, .problems    { padding: 64px 0; }
  .games, .compare, .free, .versions    { padding: 64px 0; }
  .settings, .faq                       { padding: 64px 0; }
  .cta                                  { padding: 80px 0; }

  .hero { padding: 48px 0 40px; }
  .hero__stats { flex-direction: row; gap: 12px; }
  .hero__stat-num { font-size: 24px; }
  .hero__visual { height: 520px; }
  .hero__phone { width: 250px; height: 500px; padding: 28px 10px 22px; }
  .hero__phone-screen { width: 230px; height: 450px; }
  .hero__phone-notch { width: 72px; height: 22px; }
  .hero__glow { width: 280px; height: 180px; left: calc(50% - 140px); top: 170px; }

  .steps { flex-direction: column; }
  .step  { flex: none; width: 100%; padding: 0; }
  .shots__row { grid-template-columns: 1fr; }
  .shot img { height: 220px; }
  .install__download { width: 100%; justify-content: center; }
  .install__step { gap: 18px; }
  .install__content p { max-width: 100%; }
  .tabs { gap: 16px; }
  .tabs__nav { width: 100%; }
  .tab-panel--main { padding: 20px; border-radius: 14px; }
  .tab-panel--alt { padding: 16px; }
  .tab__label p { font-size: 13px; }
  .res-card__top { flex-wrap: wrap; }

  .cpu-cards      { grid-template-columns: 1fr; }
  .versions__grid { grid-template-columns: 1fr; }

  .compare__table th,
  .compare__table td { padding: 10px 14px; font-size: 14px; }

  .free__big { font-size: clamp(32px, 11vw, 60px); }

  .tabs__btn { padding: 10px 14px; font-size: 13px; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__inner > .footer__col--main { grid-column: auto; }
  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .cta__btn { width: 100%; justify-content: center; padding: 16px 20px; font-size: 16px; }
  .cta__meta-row { gap: 12px; }

  .btn--lg { font-size: 15px; padding: 14px 22px; }
}
