/* ============================================================
   APKVault – Main Stylesheet
   Font: Syne (headings) + DM Sans (body)
   Theme: Deep teal/emerald with warm accents
   ============================================================ */

:root {
  --primary: #0d9488;
  --primary-dark: #0f766e;
  --primary-light: #ccfbf1;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --bg: #f8fafc;
  --bg-card: #ffffff;
  --bg-dark: #0f172a;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --border-focus: #0d9488;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12);
  --shadow-card: 0 2px 12px rgba(13,148,136,.08);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-pill: 50px;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
  --header-h: 64px;
}

/* ============================================================ RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* ============================================================ UTILITY */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ============================================================ ADS */
.ads-header, .ads-footer { text-align: center; padding: 8px 0; }

/* ============================================================ HEADER */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg-dark);
  height: var(--header-h);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 800; font-size: 1.4rem;
  color: #fff; text-decoration: none; letter-spacing: -0.02em;
}
.logo-icon { font-size: 1.6rem; line-height: 1; }
.logo-text { color: #fff; }
.logo-text span { color: var(--accent); }

.main-nav ul { display: flex; gap: 4px; align-items: center; }
.main-nav a {
  padding: 6px 14px; border-radius: var(--radius-pill);
  color: rgba(255,255,255,.8); font-size: .875rem; font-weight: 500;
  transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  background: var(--primary); color: #fff;
}

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================ HERO BANNER */
.hero-banner {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #134e4a 50%, #0f172a 100%);
  padding: 56px 0 48px;
  position: relative; overflow: hidden;
}
.hero-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230d9488' fill-opacity='0.08'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  position: relative; text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245,158,11,.15); border: 1px solid rgba(245,158,11,.3);
  color: var(--accent); padding: 6px 16px; border-radius: var(--radius-pill);
  font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff; line-height: 1.15; margin-bottom: 16px;
}
.hero-title span { color: var(--accent); }
.hero-desc {
  color: rgba(255,255,255,.7); font-size: 1.05rem;
  max-width: 560px; margin: 0 auto 28px; line-height: 1.7;
}
.hero-stats {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: var(--font-head); font-weight: 800; font-size: 1.6rem;
  color: var(--accent); display: block;
}
.hero-stat .lbl { font-size: .8rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .05em; }

/* ============================================================ SEARCH BAR */
.search-section {
  padding: 24px 0 0;
}
.search-box {
  display: flex; align-items: center;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
  max-width: 640px; margin: 0 auto;
}
.search-box:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(13,148,136,.12);
}
.search-box .search-icon {
  padding: 0 14px 0 16px; color: var(--text-muted); flex-shrink: 0;
  display: flex; align-items: center;
}
.search-box input {
  flex: 1; border: none; outline: none; background: transparent;
  padding: 13px 8px; font-size: .95rem; color: var(--text);
  font-family: var(--font-body);
}
.search-box input::placeholder { color: var(--text-light); }
.search-box .search-clear {
  padding: 0 10px; color: var(--text-muted); cursor: pointer;
  font-size: 1.1rem; display: none; background: none; border: none;
  line-height: 1; transition: color var(--transition);
}
.search-box .search-clear:hover { color: var(--primary); }
.search-box .search-clear.visible { display: flex; align-items: center; }
.search-box .search-btn {
  background: var(--primary); color: #fff;
  padding: 13px 20px; font-weight: 600; font-size: .875rem;
  border: none; cursor: pointer; font-family: var(--font-body);
  transition: background var(--transition);
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
}
.search-box .search-btn:hover { background: var(--primary-dark); }

/* Live suggestions dropdown */
.search-suggestions {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 200;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  max-height: 340px; overflow-y: auto;
  display: none;
}
.search-suggestions.open { display: block; }
.search-wrap { position: relative; max-width: 640px; margin: 0 auto; }

.suggestion-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; cursor: pointer;
  transition: background var(--transition);
  text-decoration: none; color: var(--text);
}
.suggestion-item:hover, .suggestion-item.focused {
  background: var(--primary-light);
}
.suggestion-item img {
  width: 36px; height: 36px; border-radius: 8px; object-fit: cover; flex-shrink: 0;
}
.suggestion-item .sug-info { flex: 1; min-width: 0; }
.suggestion-item .sug-name {
  font-weight: 600; font-size: .875rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.suggestion-item .sug-meta {
  font-size: .75rem; color: var(--text-muted);
}
.suggestion-item .sug-bonus {
  font-size: .78rem; font-weight: 700; color: #16a34a; flex-shrink: 0;
}
.suggestion-empty {
  padding: 16px; text-align: center;
  font-size: .875rem; color: var(--text-muted);
}
.suggestion-footer {
  padding: 10px 16px; border-top: 1px solid var(--border);
  font-size: .8rem; color: var(--primary); font-weight: 600;
  cursor: pointer; text-align: center;
  transition: background var(--transition);
}
.suggestion-footer:hover { background: var(--primary-light); }

/* Search results banner */
.search-result-bar {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--primary-light); border: 1.5px solid var(--primary);
  border-radius: var(--radius-sm); padding: 10px 16px;
  margin-bottom: 16px; font-size: .875rem; color: var(--primary);
  flex-wrap: wrap; gap: 8px;
}
.search-result-bar strong { color: var(--text); }
.search-result-bar a {
  color: var(--primary); font-weight: 600; font-size: .8rem;
  text-decoration: underline;
}

/* ============================================================ TABS */
.tabs-section { padding: 10px 0 0; }

/* Scrollable tab wrapper */
.tabs-bar-wrap {
  position: relative;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--border);
}
/* Fade-out hint on right edge */
.tabs-bar-wrap::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 2px; width: 48px;
  background: linear-gradient(to right, transparent, var(--bg));
  pointer-events: none;
}

.tabs-bar {
  display: flex; flex-wrap: nowrap; gap: 0;
  overflow-x: auto; overflow-y: hidden;
  border-bottom: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.tabs-bar::-webkit-scrollbar { display: none; }

.tab-btn {
  flex: 0 0 auto;
  padding: 10px 20px;
  border-radius: var(--radius-pill) var(--radius-pill) 0 0;
  font-size: .875rem; font-weight: 600; color: var(--text-muted);
  background: none; border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all var(--transition); cursor: pointer;
}
.tab-btn small { font-weight: 400; font-size: .75rem; opacity: .7; margin-left: 3px; }
.tab-btn:hover { color: var(--primary); background: var(--primary-light); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }

/* Category Filter – hidden (all apps in gaming) */
.filter-row { display: none !important; }
.filter-pill { display: none !important; }

/* ============================================================ APP GRID */
.apps-section { padding: 0 0 48px; }
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-head); font-weight: 700; font-size: 1.4rem;
  color: var(--text);
}
.section-title::before {
  content: ''; display: inline-block;
  width: 4px; height: 1.1em; background: var(--primary);
  border-radius: 2px; margin-right: 12px; vertical-align: middle;
}
.view-all { font-size: .875rem; color: var(--primary); font-weight: 500; }

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

/* ============================================================ APP CARD */
.app-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 20px;
  position: relative;
  transition: all var(--transition);
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-sm);
}
.app-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-card), 0 0 0 1px var(--primary);
  transform: translateY(-3px);
}
.badge {
  position: absolute; top: 12px; right: 12px;
  padding: 3px 10px; border-radius: var(--radius-pill);
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
}
.badge-new { background: #dcfce7; color: #16a34a; }
.badge-trending { background: #fef3c7; color: #d97706; }
.badge-top { background: #ede9fe; color: #7c3aed; }
.badge-featured { background: #dbeafe; color: #2563eb; }

.card-link { display: flex; gap: 14px; align-items: flex-start; text-decoration: none; }
.card-icon img {
  width: 64px; height: 64px; border-radius: var(--radius-sm);
  object-fit: cover; box-shadow: var(--shadow-sm);
}
.card-info { flex: 1; min-width: 0; }
.card-title {
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  color: var(--text); margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.card-desc {
  font-size: .8rem; color: var(--text-muted); line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 8px;
}
.card-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
.meta-item {
  display: flex; align-items: center; gap: 4px;
  font-size: .75rem; color: var(--text-muted);
}
.meta-item.bonus strong { color: #16a34a; }
.meta-item.withdraw strong { color: var(--primary); }
.card-rating { display: flex; align-items: center; gap: 6px; }
.star { font-style: normal; font-size: .85rem; }
.star.full, .star.half { color: var(--accent); }
.star.empty { color: var(--border); }
.rating-val { font-size: .78rem; font-weight: 600; color: var(--text-muted); }

.btn-download {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; padding: 10px 16px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .875rem; text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 3px 12px rgba(13,148,136,.25);
}
.btn-download:hover {
  background: linear-gradient(135deg, var(--primary-dark), #065f46);
  transform: translateY(-1px); color: #fff;
  box-shadow: 0 6px 20px rgba(13,148,136,.35);
}

/* ============================================================ PAGINATION */
.pagination {
  display: flex; gap: 6px; justify-content: center;
  padding: 32px 0 16px; flex-wrap: wrap;
}
.page-btn {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); border: 1.5px solid var(--border);
  font-size: .875rem; font-weight: 500; color: var(--text-muted);
  background: var(--bg-card); transition: all var(--transition); text-decoration: none;
}
.page-btn:hover, .page-btn.active {
  border-color: var(--primary); color: var(--primary);
  background: var(--primary-light);
}
.page-btn.active { font-weight: 700; pointer-events: none; }

/* ============================================================ APP DETAIL PAGE */
.app-detail { padding: 32px 0 48px; }
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: .8rem; color: var(--text-muted); margin-bottom: 24px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb-sep { color: var(--text-light); }

.app-hero {
  background: var(--bg-card); border-radius: var(--radius);
  border: 1.5px solid var(--border); padding: 32px;
  display: flex; gap: 28px; align-items: flex-start;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}
.app-hero-icon img {
  width: 100px; height: 100px; border-radius: 22px;
  box-shadow: var(--shadow);
}
.app-hero-info { flex: 1; }
.app-hero-name {
  font-family: var(--font-head); font-weight: 800; font-size: 1.8rem;
  color: var(--text); margin-bottom: 6px;
}
.app-hero-desc { color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.app-hero-meta {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px;
}
.hero-meta-chip {
  display: flex; flex-direction: column; align-items: center;
  background: var(--bg); border: 1.5px solid var(--border);
  padding: 10px 18px; border-radius: var(--radius-sm); min-width: 80px;
}
.hero-meta-chip .val {
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  color: var(--primary);
}
.hero-meta-chip .lbl { font-size: .7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; }
.hero-meta-chip.bonus .val { color: #16a34a; }
.hero-meta-chip.rating .val { color: var(--accent); }

.btn-dl-big {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; padding: 14px 32px; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(13,148,136,.35);
  transition: all var(--transition);
}
.btn-dl-big:hover {
  transform: translateY(-2px); color: #fff;
  box-shadow: 0 8px 30px rgba(13,148,136,.45);
}

.app-info-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-bottom: 28px;
}
.info-card {
  background: var(--bg-card); border-radius: var(--radius);
  border: 1.5px solid var(--border); padding: 24px;
}
.info-card h2, .info-card h3 {
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  color: var(--text); margin-bottom: 14px;
}
.info-table { width: 100%; }
.info-table tr td {
  padding: 8px 0; font-size: .875rem;
  border-bottom: 1px solid var(--border);
}
.info-table tr:last-child td { border-bottom: none; }
.info-table td:first-child { color: var(--text-muted); width: 45%; font-weight: 500; }
.info-table td:last-child { color: var(--text); font-weight: 600; }
.app-description { line-height: 1.8; color: var(--text); }
.app-description h2, .app-description h3 { font-family: var(--font-head); margin: 20px 0 10px; }
.app-description ul { margin-left: 20px; list-style: disc; }
.app-description ul li { margin-bottom: 6px; }

/* ============================================================ FAQ */
.faq-section { padding: 40px 0; }
.faq-section .section-title { margin-bottom: 24px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
}
.faq-question {
  padding: 16px 20px; font-weight: 600; font-size: .925rem;
  color: var(--text); cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  user-select: none; transition: background var(--transition);
}
.faq-question:hover { background: var(--bg); }
.faq-question.open { color: var(--primary); }
.faq-arrow {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 1.5px solid currentColor; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; transition: transform var(--transition);
}
.faq-question.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .2s ease;
  padding: 0 20px; font-size: .875rem; color: var(--text-muted); line-height: 1.7;
}
.faq-answer.open { max-height: 400px; padding: 0 20px 16px; }

/* ============================================================ RELATED APPS */
.related-section { padding: 40px 0; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

/* ============================================================ STATIC PAGES */
.static-page { padding: 40px 0 60px; }
.page-hero {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 40px; margin-bottom: 28px;
  border: 1.5px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font-head); font-weight: 800; font-size: 2rem;
  color: var(--text); margin-bottom: 10px;
}
.page-content {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 40px; border: 1.5px solid var(--border); line-height: 1.8;
}
.page-content h2, .page-content h3 {
  font-family: var(--font-head); font-weight: 700;
  color: var(--text); margin: 28px 0 12px;
}
.page-content h2 { font-size: 1.4rem; }
.page-content h3 { font-size: 1.1rem; }
.page-content p { margin-bottom: 16px; color: var(--text); }
.page-content ul, .page-content ol { margin: 12px 0 16px 24px; }
.page-content li { margin-bottom: 8px; }
.page-content strong { color: var(--text); }

/* ============================================================ FOOTER */
.site-footer {
  background: var(--bg-dark); color: rgba(255,255,255,.7);
  padding: 56px 0 0; margin-top: 60px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-logo .logo-text { color: #fff; }
.footer-brand p { font-size: .875rem; line-height: 1.6; margin-bottom: 8px; }
.footer-disclaimer { font-size: .78rem; color: rgba(255,255,255,.4); }
.footer-links h3 {
  font-family: var(--font-head); font-weight: 700; font-size: .9rem;
  color: #fff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .06em;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0;
  display: flex; flex-direction: column; gap: 6px; text-align: center;
  font-size: .8rem; color: rgba(255,255,255,.4);
}

/* ============================================================ NOT FOUND / ERROR */
.error-page { padding: 80px 20px; text-align: center; }
.error-page h1 { font-family: var(--font-head); font-size: 5rem; color: var(--primary); margin-bottom: 10px; }
.error-page p { color: var(--text-muted); margin-bottom: 24px; }
.btn-home {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff; padding: 12px 28px;
  border-radius: var(--radius); font-weight: 600; text-decoration: none;
  transition: all var(--transition);
}
.btn-home:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); }

/* ============================================================ EMPTY STATE */
.empty-state {
  text-align: center; padding: 60px 20px;
  color: var(--text-muted);
}
.empty-state .icon { font-size: 3rem; margin-bottom: 12px; }
.empty-state h3 { font-family: var(--font-head); margin-bottom: 8px; color: var(--text); }

/* ============================================================ LOADING */
.skeleton {
  background: linear-gradient(90deg, var(--border) 25%, var(--bg) 50%, var(--border) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ============================================================ RESPONSIVE */
@media (max-width: 900px) {
  .app-hero { flex-direction: column; }
  .app-info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none; position: absolute; top: var(--header-h); left: 0; right: 0;
    background: var(--bg-dark); padding: 12px 20px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav a { display: block; }
  .hero-banner { padding: 36px 0 32px; }
  .hero-stats { gap: 24px; }
  .apps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .app-hero { padding: 20px; }
  .app-hero-name { font-size: 1.4rem; }
}

/* ============================================================ PRINT */
@media print {
  .site-header, .site-footer, .btn-download, .btn-dl-big { display: none !important; }
}
