/* ═══════════════════════════════════════
   DOWNLOAD PAGE — download.css
═══════════════════════════════════════ */

/* ─── LEAD TEXT (shared with game page) ─── */
.gp-lead {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 860px;
}

/* ═══════════════════════════════════════
   1. HERO BANNER
═══════════════════════════════════════ */
#dl-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 70px; /* header offset */
}

.dl-hero-wrap {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.dl-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.dl-hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 50%, rgba(0,0,0,0.3) 100%);
  padding: 80px 220px;
}

.dl-hero-content {
  max-width: 620px;
}

.dl-hero-label {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.dl-hero-content h1 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 18px;
}

.dl-hero-content h1 span { color: var(--yellow); }

.dl-hero-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 12px;
}

.btn-dl-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 14px 36px;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-dl-hero:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-dl-hero--wa {
  background: #25D366;
  color: #fff;
}

.dl-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.dl-hero-btns .btn-dl-hero { margin-top: 0; }

/* ═══════════════════════════════════════
   2. APK SPECS TABLE
═══════════════════════════════════════ */
#apk-specs { background: #0a0a0a; }

.specs-table {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
}

.specs-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.specs-row:last-child { border-bottom: none; }

.specs-row.header-row {
  background: rgba(243,198,0,0.1);
  border-bottom: 1px solid rgba(243,198,0,0.2);
}

.specs-cell {
  padding: 14px 20px;
  font-size: 14px;
  line-height: 1.55;
}

.specs-row.header-row .specs-cell {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
}

.specs-cell.label {
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.03);
  border-right: 1px solid rgba(255,255,255,0.06);
}

.specs-cell.value {
  color: rgba(255,255,255,0.6);
  background: transparent;
}

.specs-cell.value.warn {
  color: #ff9f43;
}

.specs-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 4px;
  margin-right: 6px;
  vertical-align: middle;
}

/* ═══════════════════════════════════════
   3. WHICH METHOD
═══════════════════════════════════════ */
#which-method {
  background: #050505;
  padding: 80px 220px;
}

.method-inner { }

#which-method h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}
#which-method h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin-top: 10px;
}
#which-method h2 span { color: var(--yellow); }

.method-lead {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 860px;
  margin-bottom: 44px;
}

.method-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.method-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 28px 20px 24px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
.method-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}

.method-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.method-card-icon svg { width: 24px; height: 24px; }
.method-card-icon.android { background: rgba(164,235,0,0.12); color: #a4eb00; }
.method-card-icon.ios     { background: rgba(90,200,250,0.12); color: #5ac8fa; }
.method-card-icon.pc      { background: rgba(100,180,255,0.12); color: #64b4ff; }
.method-card-icon.web     { background: rgba(243,198,0,0.12); color: var(--yellow); }
.method-card-icon.update  { background: rgba(162,155,254,0.12); color: #a29bfe; }

.method-check {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(243,198,0,0.15);
  border: 1px solid rgba(243,198,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
}

.method-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.method-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(243,198,0,0.12);
  color: var(--yellow);
  border: 1px solid rgba(243,198,0,0.25);
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 12px;
}

.method-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   4. APK DOWNLOAD FOR ANDROID
═══════════════════════════════════════ */
#apk-download { background: #0a0a0a; }

.apk-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.apk-h3-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 28px;
}

.apk-h3-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 12px;
}

.apk-h3-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 14px;
}

.apk-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.apk-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  padding-left: 22px;
  position: relative;
}
.apk-check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

/* Warning box */
.apk-warning-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255,159,67,0.07);
  border: 1px solid rgba(255,159,67,0.25);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 32px;
}

.apk-warning-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,159,67,0.15);
  color: #ff9f43;
  display: flex;
  align-items: center;
  justify-content: center;
}
.apk-warning-icon svg { width: 22px; height: 22px; }

.apk-warning-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ff9f43;
  margin-bottom: 8px;
}

.apk-warning-body p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

.apk-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.apk-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.apk-check-item svg { color: var(--yellow); flex-shrink: 0; }

/* Install steps */
.apk-steps-section {
  margin-bottom: 32px;
}

.apk-steps-section h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.apk-steps-section > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.apk-steps {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}

.apk-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.apk-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.apk-step-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-align: center;
  line-height: 1.5;
}

.apk-step-line {
  flex: 0 0 40px;
  height: 2px;
  background: rgba(243,198,0,0.25);
  margin-bottom: 28px; /* align with label */
}

/* ═══════════════════════════════════════
   5. iOS ACCESS
═══════════════════════════════════════ */
#ios-access {
  background: #050505;
  padding: 80px 220px;
}

.access-alt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.access-alt-text h2 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}
.access-alt-text h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin-top: 10px;
}
.access-alt-text h2 span { color: var(--yellow); }

.access-alt-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 14px;
}

.access-alt-points {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 28px;
}

.access-alt-points h3 {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  margin-bottom: 18px;
}

.alt-point-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.alt-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 8px;
}
.alt-point svg { flex-shrink: 0; }
.alt-point.warn {
  background: rgba(255,99,72,0.08);
  border: 1px solid rgba(255,99,72,0.2);
  color: #ff6348;
}
.alt-point.warn svg { color: #ff6348; }
.alt-point.ok {
  background: rgba(76,175,80,0.08);
  border: 1px solid rgba(76,175,80,0.2);
  color: #4caf50;
}
.alt-point.ok svg { color: #4caf50; }

/* ═══════════════════════════════════════
   6. PC / DESKTOP ACCESS
═══════════════════════════════════════ */
#pc-access { background: #0a0a0a; }

.pc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.pc-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 12px;
}

.pc-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

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

.pc-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 18px 20px;
  transition: border-color 0.2s;
}
.pc-point:hover { border-color: rgba(243,198,0,0.3); }

.pc-point-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(243,198,0,0.1);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-point-icon svg { width: 20px; height: 20px; }

.pc-point strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.pc-point p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ═══════════════════════════════════════
   7. WHY APK / iOS / WEB VERSIONS
═══════════════════════════════════════ */
#why-versions {
  background: #050505;
  padding: 80px 220px;
}

.versions-inner { }

#why-versions h2 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
}
#why-versions h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin-top: 10px;
}
#why-versions h2 span { color: var(--yellow); }

.versions-lead {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 44px;
}

.versions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.versions-col h3 {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

/* Device access list */
.device-access-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.device-access-item {
  display: grid;
  grid-template-columns: 140px 32px 1fr;
  align-items: center;
  gap: 8px;
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 13px 16px;
}

.device-access-device {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.device-access-arrow {
  font-size: 16px;
  color: var(--yellow);
  text-align: center;
}

.device-access-method {
  font-size: 13px;
  color: var(--text-muted);
}

/* Unify cards */
.versions-note {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  font-style: italic;
}

.unify-cards {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.unify-card {
  flex: 1;
  background: var(--card-bg);
  border: 1px solid rgba(243,198,0,0.2);
  border-radius: 12px;
  padding: 20px 14px;
  text-align: center;
}

.unify-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}

.unify-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

.versions-footnote {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   8. QUICK START — 2 MINUTES
═══════════════════════════════════════ */
#quick-start { background: #0a0a0a; }

.qs-steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.qs-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.qs-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qs-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  max-width: 160px;
}

.qs-line {
  flex: 0 0 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(243,198,0,0.4), rgba(243,198,0,0.15));
  margin-bottom: 42px;
}

/* ═══════════════════════════════════════
   9. LOGIN FLOW
═══════════════════════════════════════ */
#login-flow {
  background: #050505;
  padding: 80px 220px;
}

.login-inner { }

#login-flow h2 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
}
#login-flow h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin-top: 10px;
}
#login-flow h2 span { color: var(--yellow); }

#login-flow > .login-inner > p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.login-h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.login-flow-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.login-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color 0.25s, transform 0.25s;
}
.login-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}

.login-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.login-card-icon svg { width: 24px; height: 24px; }
.login-card-icon.apk-icon { background: rgba(164,235,0,0.12); color: #a4eb00; }
.login-card-icon.web-icon { background: rgba(243,198,0,0.12); color: var(--yellow); }
.login-card-icon.new-icon { background: rgba(100,180,255,0.12); color: #64b4ff; }

.login-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.login-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   10. SAFE DOWNLOAD
═══════════════════════════════════════ */
#safe-download { background: #0a0a0a; }

.safe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.safe-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s;
}
.safe-card:hover { border-color: rgba(243,198,0,0.35); }

.safe-card-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), transparent);
}

.safe-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(243,198,0,0.1);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.safe-icon svg { width: 26px; height: 26px; }

.safe-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.safe-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 10px;
}

.safe-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.safe-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.safe-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}

/* ═══════════════════════════════════════
   11. FAQ ACCORDION
═══════════════════════════════════════ */
#faq {
  background: #050505;
  padding: 80px 220px;
}

.faq-inner { }

#faq h2 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 36px;
  position: relative;
}
#faq h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin-top: 10px;
}
#faq h2 span { color: var(--yellow); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open,
.faq-item:hover {
  border-color: rgba(243,198,0,0.3);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}
.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--yellow);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-item.open .faq-question { color: var(--yellow); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 22px 18px;
}

.faq-answer p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

/* ═══════════════════════════════════════
   12. FINAL CTA
═══════════════════════════════════════ */
#dl-cta {
  background: linear-gradient(135deg, #1a1200 0%, #0d0d0d 40%, #000 100%);
  border-top: 1px solid rgba(243,198,0,0.15);
  padding: 80px 220px;
}

.dl-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.dl-cta-text { max-width: 580px; }

.dl-cta-text h2 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.dl-cta-text h2 span { color: var(--yellow); }

.dl-cta-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

.dl-cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-cta-apk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-cta-apk:hover { opacity: 0.88; transform: translateY(-2px); }

.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #25D366;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.btn-cta-whatsapp:hover { opacity: 0.88; }

/* ═══════════════════════════════════════
   RESPONSIVE — 1100px
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .method-cards { grid-template-columns: repeat(3, 1fr); }
  #which-method, #ios-access, #login-flow, #faq, #why-versions { padding: 70px 60px; }
  #dl-hero .dl-hero-overlay { padding: 60px 24px; }
  #dl-cta { padding: 70px 60px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — 768px
═══════════════════════════════════════ */
@media (max-width: 768px) {
  /* Hero */
  #dl-hero { padding-top: 60px; }
  .dl-hero-wrap { min-height: 420px; }
  .dl-hero-overlay { padding: 48px 24px; }
  .dl-hero-content h1 { font-size: 24px; }
  .dl-hero-content p { font-size: 13px; }

  /* APK Specs — keep 2-column layout on mobile */
  .specs-row { grid-template-columns: 1fr 1fr; }
  .specs-cell { padding: 10px 12px; font-size: 13px; }

  /* Which Method */
  #which-method { padding: 60px 24px; }
  .method-cards { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* APK Download */
  .apk-grid-2 { grid-template-columns: 1fr; }
  .apk-warning-box { flex-direction: column; gap: 14px; }
  .apk-steps { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .apk-step-line { display: none; }
  .apk-step { flex: 0 0 auto; min-width: 120px; }

  /* iOS Access */
  #ios-access { padding: 60px 24px; }
  .access-alt-inner { grid-template-columns: 1fr; gap: 28px; }

  /* PC Access */
  .pc-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Versions */
  #why-versions { padding: 60px 24px; }
  .versions-grid { grid-template-columns: 1fr; gap: 32px; }
  .unify-cards { }

  /* Quick Start */
  .qs-steps { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .qs-line { display: none; }
  .qs-step { flex: 0 0 auto; min-width: 120px; }

  /* Login Flow */
  #login-flow { padding: 60px 24px; }
  .login-flow-cards { grid-template-columns: 1fr; gap: 14px; }

  /* Safe Download */
  .safe-grid { grid-template-columns: 1fr; }

  /* FAQ */
  #faq { padding: 60px 24px; }

  /* CTA */
  #dl-cta { padding: 60px 24px; }
  .dl-cta-inner { flex-direction: column; gap: 28px; align-items: flex-start; }
  .dl-cta-text h2 { font-size: 24px; }
  .dl-cta-actions { width: 100%; }
  .btn-cta-apk, .btn-cta-whatsapp { flex: 1; justify-content: center; }

  /* Section title padding fix (mobile has no horiz padding on .section) */
  #apk-specs.section .section-title,
  #apk-download.section .section-title,
  #pc-access.section .section-title,
  #quick-start.section .section-title,
  #safe-download.section .section-title {
    padding-left: 24px;
    padding-right: 24px;
  }
  #apk-specs.section .gp-lead,
  #apk-download.section .gp-lead,
  #pc-access.section .gp-lead,
  #quick-start.section .gp-lead,
  #safe-download.section .gp-lead {
    padding-left: 24px;
    padding-right: 24px;
  }
  #apk-specs.section .specs-table { margin: 0 24px; }
  #apk-download.section .apk-grid-2 { padding: 0 24px; }
  #apk-download.section .apk-warning-box { margin: 0 24px 32px; }
  #apk-download.section .apk-steps-section { padding: 0 24px; }
  #pc-access.section .pc-grid { padding: 0 24px; }
  #quick-start.section .qs-steps { padding: 0 24px; }
  #safe-download.section .safe-grid { padding: 0 24px; }
}
