/* =============================================
   Money Coming — Play Store Style PWA
   style.css — Fully Responsive
   ============================================= */

:root {
  --green: #01875f;
  --green-light: #e6f4f1;
  --green-dark: #005c41;
  --text: #202124;
  --text-secondary: #5f6368;
  --text-muted: #9aa0a6;
  --border: #e8eaed;
  --bg: #ffffff;
  --bg-secondary: #f8f9fa;
  --star: #fbbc04;
  --danger: #ea4335;
  --success: #34a853;
  --dark-toast: #1a1a2e;
  --sidebar-w: 280px;
  --content-max: 1100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-secondary);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* =============================================
   TOP BAR
   ============================================= */
#top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
#top-bar.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 18px;
  transition: background 0.15s;
}
.icon-btn:hover { background: var(--bg-secondary); }
#top-bar .right-btns { display: flex; gap: 4px; }

/* =============================================
   PAGE LAYOUT — DESKTOP TWO-COLUMN
   ============================================= */
.page-container {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* mobile: stack vertically */
  align-items: stretch;
  gap: 0;
  background: var(--bg);
  min-height: calc(100vh - 61px);
}

/* LEFT SIDEBAR — full width on mobile */
.sidebar {
  width: 100%;
  background: var(--bg);
}

/* RIGHT CONTENT — full width on mobile */
.main-content {
  width: 100%;
  background: var(--bg);
  min-width: 0;
}

/* =============================================
   APP INFO
   ============================================= */
.app-info-row {
  display: flex;
  padding: 20px 16px 14px;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg);
}
.app-icon-wrap {
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}
.app-icon-wrap img {
  width: 84px; height: 84px;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}
.app-meta { flex: 1; }
.app-title { font-size: 20px; font-weight: 700; color: var(--text); line-height: 1.3; }
.app-subtitle { font-size: 13px; color: var(--green); font-weight: 500; margin-top: 3px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.tag-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--green-light); color: var(--green);
  font-size: 11px; font-weight: 600;
  padding: 3px 8px; border-radius: 4px;
}
.tag-badge i { font-size: 10px; }

/* =============================================
   INSTALL SECTION
   ============================================= */
.install-section {
  padding: 4px 16px 14px;
  background: var(--bg);
}
#top-progress-bar-wrap {
  height: 3px; background: var(--border); border-radius: 2px;
  overflow: hidden; margin-bottom: 10px; display: none;
}
#top-progress-bar-fill {
  height: 100%; width: 0%; background: var(--green);
  border-radius: 2px; transition: width 0.4s linear;
}
.install-btn-main {
  width: 100%;
  background: var(--green); color: #fff;
  border: none; border-radius: 50px;
  height: 50px; font-size: 15px; font-weight: 600;
  cursor: pointer; font-family: inherit; letter-spacing: 0.3px;
  transition: background 0.15s;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.install-btn-main:hover { background: #01735a; }
.install-btn-main:active { background: #015e4a; }
.install-btn-main.downloading { background: var(--border); color: var(--text-secondary); cursor: default; }
.install-btn-main.installed { background: var(--green-light); color: var(--green); }
.install-btn-main .ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transform: scale(0); animation: ripple-anim 0.55s linear; pointer-events: none;
}
.install-meta {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-top: 8px; font-size: 11.5px; color: var(--text-muted);
}
.install-meta i { font-size: 11px; }
.install-meta-dot { opacity: 0.4; }

/* =============================================
   STATS ROW
   ============================================= */
.stats-row {
  display: flex; align-items: center;
  padding: 10px 12px 14px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.stat-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 3px;
}
.stat-value { font-size: 14px; font-weight: 700; color: var(--text); }
.stat-label { font-size: 11px; color: var(--text-muted); }
.stars-row { display: flex; gap: 1px; }
.stars-row i { font-size: 13px; color: var(--star); }
.stat-divider { width: 1px; height: 34px; background: var(--border); flex-shrink: 0; }
.age-badge {
  border: 1.5px solid var(--text-secondary); border-radius: 4px;
  padding: 1px 6px; font-size: 12px; font-weight: 700; color: var(--text-secondary);
}

/* =============================================
   ACTIONS ROW — Share & Wishlist (Play Store exact)
   ============================================= */
.actions-row {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 16px 16px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  gap: 32px;
}
.action-btn {
  display: flex; flex-direction: column; align-items: center;
  gap: 7px; cursor: pointer; background: none; border: none;
  flex: 1; max-width: 100px;
}
.action-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--green);
  transition: transform 0.15s, background 0.15s;
}
.action-circle:hover { transform: scale(1.08); background: #c8ede6; }
.action-circle.active { background: var(--danger); color: #fff; }
.action-label { font-size: 12px; font-weight: 500; color: var(--text-secondary); }
.action-label.wishlisted { color: var(--danger); }

/* =============================================
   DIVIDER
   ============================================= */
.section-divider { height: 8px; background: var(--bg-secondary); }

/* =============================================
   SCREENSHOT GALLERY
   ============================================= */
.gallery-section { padding: 20px 0 16px; background: var(--bg); }
.section-title {
  font-size: 15px; font-weight: 700; color: var(--text);
  margin-bottom: 14px; padding: 0 16px;
}
.banner-scroll {
  display: flex; gap: 12px; overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 16px 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.banner-scroll::-webkit-scrollbar { height: 4px; }
.banner-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.banner-card {
  flex-shrink: 0; width: 54vw; max-width: 220px;
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
  scroll-snap-align: start; background: #0d1117;
  transition: transform 0.18s; cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.1);
}
.banner-card:hover { transform: scale(0.97); }
/* The picture/image fills a true portrait 9:16 phone-screen rectangle */
.banner-card picture {
  display: block;
  aspect-ratio: 9 / 16;
  width: 100%;
  overflow: hidden;
}
.banner-card img {
  width: 100%; height: 100%;
  object-fit: fill;   /* full screenshot — zero cropping */
  display: block;
}
.banner-caption {
  padding: 10px 12px; font-size: 12.5px; font-weight: 500; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  background: #fff;
}

/* =============================================
   ABOUT
   ============================================= */
.about-section { padding: 20px 16px; background: var(--bg); }
.about-text { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; }
.about-text strong { color: var(--text); font-weight: 600; }
.feature-list { list-style: none; margin: 12px 0; display: flex; flex-direction: column; gap: 9px; }
.feature-list li {
  display: flex; align-items: flex-start;
  gap: 9px; font-size: 13.5px; color: var(--text-secondary); line-height: 1.5;
}
.feature-list li i { color: var(--green); font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.read-more-btn {
  font-size: 13px; font-weight: 600; color: var(--green);
  cursor: pointer; margin-top: 10px;
  background: none; border: none; padding: 0;
}

/* =============================================
   RATINGS & REVIEWS
   ============================================= */
.ratings-section { padding: 20px 16px; background: var(--bg); }
.rating-overview { display: flex; gap: 20px; align-items: center; margin-bottom: 20px; }
.rating-score { display: flex; flex-direction: column; align-items: center; gap: 4px; min-width: 80px; }
.rating-big { font-size: 56px; font-weight: 800; color: var(--text); line-height: 1; }
.rating-count { font-size: 11px; color: var(--text-muted); margin-top: 3px; text-align: center; }
.rating-bars { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.bar-row { display: flex; align-items: center; gap: 8px; }
.bar-label { font-size: 11px; font-weight: 500; color: var(--text-secondary); width: 10px; text-align: right; }
.bar-track { flex: 1; height: 8px; border-radius: 4px; background: var(--border); overflow: hidden; }
.bar-fill { height: 100%; border-radius: 4px; background: var(--green); transition: width 1s ease; }
.review-card { padding: 16px 0; border-top: 1px solid var(--border); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; color: var(--green); flex-shrink: 0;
}
.review-name { font-size: 13.5px; font-weight: 600; color: var(--text); }
.review-meta { display: flex; align-items: center; gap: 8px; margin-top: 2px; }
.review-date { font-size: 11.5px; color: var(--text-muted); }
.review-text { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; }
.review-like {
  margin-left: auto; font-size: 15px; color: var(--text-muted);
  cursor: pointer; background: none; border: none; transition: color 0.15s;
}
.review-like:hover { color: var(--green); }

/* =============================================
   APP INFO TABLE
   ============================================= */
.info-section { padding: 20px 16px 32px; background: var(--bg); }
.info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 13.5px;
}
.info-row:last-child { border-bottom: none; }
.info-label { color: var(--text-secondary); }
.info-value { font-weight: 500; color: var(--text); }

/* =============================================
   STICKY FOOTER
   ============================================= */
#sticky-footer {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  /* safe area for iOS home bar + Android nav bar */
  padding: 10px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 200;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.07);
}
.footer-inner-wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
#progress-bar-wrap {
  height: 3px; background: var(--border); border-radius: 2px;
  overflow: hidden; margin-bottom: 10px; display: none;
}
#progress-bar-fill {
  height: 100%; width: 0%; background: var(--green);
  border-radius: 2px; transition: width 0.4s linear;
}
/* Meta text — hidden on mobile, visible on desktop */
.footer-meta {
  display: none;
  font-size: 12px; color: var(--text-muted);
  align-items: center; gap: 6px;
}
/* Install button — full width pill on mobile */
#install-btn {
  background: var(--green); color: #fff;
  border: none; border-radius: 50px;
  height: 50px; width: 100%;
  font-size: 15px; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; letter-spacing: 0.3px;
  transition: background 0.15s;
  position: relative; overflow: hidden;
}
#install-btn:hover { background: #01735a; }
#install-btn:active { background: #015e4a; }
#install-btn.downloading { background: var(--border); color: var(--text-secondary); pointer-events: none; }
#install-btn.installed { background: var(--green-light); color: var(--green); }
#install-btn .ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transform: scale(0); animation: ripple-anim 0.5s linear; pointer-events: none;
}

/* =============================================
   WIN TOAST
   ============================================= */
#win-toast {
  position: fixed; top: 70px; left: 50%;
  transform: translateX(-50%) translateY(-130px);
  width: calc(100% - 32px); max-width: 480px;
  background: var(--dark-toast); border-radius: 14px;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; z-index: 500;
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
  opacity: 0; pointer-events: none;
}
#win-toast.visible { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: auto; }
.toast-icon {
  width: 38px; height: 38px; border-radius: 50%; background: #2d2d4e;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--star); flex-shrink: 0;
}
.toast-body { flex: 1; }
.toast-name { font-size: 12px; color: rgba(255,255,255,0.65); }
.toast-amount { font-size: 15px; font-weight: 800; color: var(--star); line-height: 1.3; }
.toast-game { font-size: 11.5px; color: rgba(255,255,255,0.5); }
#toast-close {
  color: rgba(255,255,255,0.5); font-size: 16px;
  cursor: pointer; background: none; border: none; padding: 4px; flex-shrink: 0;
}

/* =============================================
   PWA INSTALL PROMPT
   ============================================= */
#pwa-prompt {
  display: none; position: fixed; bottom: 90px; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px); max-width: 480px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 14px 16px; z-index: 300;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  flex-direction: row; align-items: center; gap: 12px;
  animation: slideUp 0.4s ease;
}
#pwa-prompt.show { display: flex; }
#pwa-prompt img { width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; }
.pwa-prompt-text { flex: 1; }
.pwa-prompt-title { font-size: 13.5px; font-weight: 700; color: var(--text); }
.pwa-prompt-sub { font-size: 12px; color: var(--text-muted); }
.pwa-add-btn {
  background: var(--green); color: #fff; border: none;
  border-radius: 8px; padding: 8px 14px; font-size: 13px;
  font-weight: 700; cursor: pointer; font-family: inherit; flex-shrink: 0;
}
.pwa-dismiss-btn {
  background: none; border: none; color: var(--text-muted);
  font-size: 18px; cursor: pointer; padding: 4px; flex-shrink: 0;
}

/* =============================================
   SPACER & ANIMATIONS
   ============================================= */
/* Enough room so content isn't hidden behind sticky footer + phone nav bar */
.footer-spacer { height: calc(90px + env(safe-area-inset-bottom, 16px)); }

@keyframes ripple-anim { to { transform: scale(4); opacity: 0; } }
@keyframes slideUp {
  from { transform: translateX(-50%) translateY(30px); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0); opacity: 1; }
}
@keyframes countUp {
  from { opacity: 0.5; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.count-updated { animation: countUp 0.4s ease; }

/* =============================================
   RESPONSIVE — TABLET (≥ 640px)
   ============================================= */
@media (min-width: 640px) {
  body { background: var(--bg-secondary); }

  .page-container {
    margin: 16px auto;
    border-radius: 12px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.08);
    overflow: hidden;
  }

  .app-icon-wrap img { width: 100px; height: 100px; }
  .app-title { font-size: 22px; }

  .banner-card { width: 280px; max-width: 280px; }

  .actions-row { padding: 18px 32px; }
  .action-circle { width: 56px; height: 56px; font-size: 22px; }

  #sticky-footer { padding: 12px 24px calc(14px + env(safe-area-inset-bottom, 0px)); }
}

/* =============================================
   RESPONSIVE — DESKTOP (≥ 900px)
   ============================================= */
@media (min-width: 900px) {
  body { background: #f1f3f4; }

  #top-bar { padding: 12px 32px; }

  .page-container {
    margin: 24px auto;
    flex-direction: row; /* side-by-side on desktop */
    align-items: flex-start;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.09);
  }

  .main-content { flex: 1; width: auto; }

  /* SIDEBAR — fixed left column */
  .sidebar {
    width: var(--sidebar-w);
    min-width: var(--sidebar-w);
    flex-shrink: 0;
    border-right: 1px solid var(--border);
    position: sticky;
    top: 61px;
    max-height: calc(100vh - 61px);
    overflow-y: auto;
    scrollbar-width: none;
  }
  .sidebar::-webkit-scrollbar { display: none; }

  /* CONTENT — scrollable right column */
  .main-content { flex: 1; min-width: 0; }

  /* App icon bigger on desktop */
  .app-icon-wrap img { width: 120px; height: 120px; }
  .app-info-row { padding: 24px 20px 16px; flex-direction: column; gap: 14px; align-items: flex-start; }
  .app-title { font-size: 20px; }
  .app-subtitle { font-size: 13px; }

  /* Install section */
  .install-section { padding: 8px 20px 16px; }
  .install-btn-main { height: 46px; font-size: 14px; }

  /* Stats row — vertical in sidebar */
  .stats-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
  }
  .stat-item { flex-direction: row; align-items: center; gap: 10px; }
  .stat-value { font-size: 14px; }
  .stat-divider { width: 100%; height: 1px; }

  /* Actions row — vertical in sidebar */
  .actions-row {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 16px 20px;
    gap: 12px;
  }
  .action-btn { flex-direction: row; gap: 14px; max-width: 100%; width: 100%; }
  .action-circle { width: 44px; height: 44px; font-size: 18px; flex-shrink: 0; }
  .action-label { font-size: 13px; }

  /* Section dividers invisible in sidebar */
  .sidebar .section-divider { height: 0; border-top: 1px solid var(--border); margin: 0; }

  /* Gallery portrait cards */
  .banner-card { width: 175px; max-width: 175px; }

  /* Section titles bigger */
  .section-title { font-size: 16px; }

  /* Sticky footer — show meta text, shrink button on desktop */
  #sticky-footer { padding: 12px 32px 16px; }
  .footer-meta { display: flex; flex: 1; }
  #install-btn { width: auto; min-width: 140px; padding: 0 36px; }

  /* Reviews in grid on desktop */
  .reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
  }
  .review-card { padding: 14px 0; }
}

/* =============================================
   WHAT'S NEW
   ============================================= */
.whatsnew-section { padding: 20px 16px; background: var(--bg); }
.whatsnew-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.whatsnew-version {
  font-size: 12px; color: var(--text-muted);
  background: var(--bg-secondary); padding: 3px 8px; border-radius: 4px;
}
.whatsnew-list {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.whatsnew-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--text-secondary); line-height: 1.5;
  padding-left: 4px;
}
.whatsnew-list li::before {
  content: '•'; color: var(--green); font-size: 16px; flex-shrink: 0;
  line-height: 1.3;
}

/* =============================================
   SIMILAR APPS
   ============================================= */
.similar-section { padding: 20px 0 24px; background: var(--bg); }
.similar-section .section-title { padding: 0 16px; }
.similar-scroll {
  display: flex; gap: 12px; overflow-x: auto;
  padding: 4px 16px 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.similar-scroll::-webkit-scrollbar { display: none; }
.similar-card {
  flex-shrink: 0; width: 100px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  scroll-snap-align: start; text-decoration: none; color: inherit;
  cursor: pointer;
}
.similar-icon {
  width: 72px; height: 72px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  flex-shrink: 0;
}
.similar-name {
  font-size: 12px; font-weight: 500; color: var(--text);
  text-align: center; line-height: 1.3;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; width: 100%;
}
.similar-rating { font-size: 11px; color: var(--text-secondary); }
.similar-tag {
  font-size: 11px; color: var(--green); font-weight: 600;
  background: var(--green-light); padding: 2px 8px; border-radius: 10px;
}

/* =============================================
   REVIEW LIKES
   ============================================= */
.review-like {
  margin-left: auto; display: flex; align-items: center; gap: 4px;
  font-size: 13px; color: var(--text-muted);
  cursor: pointer; background: none; border: none;
  transition: color 0.15s; flex-shrink: 0;
  padding: 4px 6px; border-radius: 8px;
}
.review-like:hover { color: var(--green); background: var(--green-light); }
.review-like.liked { color: var(--green); }
.review-like.liked i { font-weight: 900; }
.like-count { font-size: 11.5px; font-weight: 500; }

/* =============================================
   iOS INSTALL OVERLAY
   ============================================= */
#ios-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.55); z-index: 800;
  align-items: flex-end; justify-content: center;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
#ios-overlay.show { display: flex; }
.ios-sheet {
  background: #fff; border-radius: 24px 24px 0 0;
  padding: 28px 24px 32px;
  width: 100%; max-width: 480px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  animation: slideUpSheet 0.35s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
}
@keyframes slideUpSheet {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.ios-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-secondary); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); font-size: 14px;
}
.ios-app-icon {
  width: 72px; height: 72px; border-radius: 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.ios-title { font-size: 18px; font-weight: 700; color: var(--text); text-align: center; }
.ios-subtitle { font-size: 13px; color: var(--text-muted); text-align: center; }
.ios-steps {
  list-style: none; width: 100%;
  display: flex; flex-direction: column; gap: 14px; margin-top: 4px;
}
.ios-steps li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13.5px; color: var(--text-secondary); line-height: 1.5;
}
.ios-step-num {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.ios-open-btn {
  display: block; width: 100%; text-align: center;
  background: var(--green); color: #fff;
  border-radius: 50px; height: 48px; line-height: 48px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  margin-top: 8px;
}

/* =============================================
   RESPONSIVE — LARGE DESKTOP (≥ 1200px)
   ============================================= */
@media (min-width: 1200px) {
  :root { --sidebar-w: 320px; --content-max: 1200px; }
  .app-icon-wrap img { width: 128px; height: 128px; }
  .banner-card { width: 190px; max-width: 190px; }
}
