/* HSware — Frontend styles. All selectors are prefixed. */
.hssw-post {
  --hssw-acc:#1A6CFF;
  --hssw-acc-d:#1254CC;
  --hssw-hero-bg:linear-gradient(135deg,#0D1B2A,#1E3450);
  --hssw-navy:#0D1B2A;
  --hssw-surface:#FFFFFF;
  --hssw-bg:#F5F7FA;
  --hssw-border:#E3E8F0;
  --hssw-text:#1A2636;
  --hssw-text2:#4A5568;
  --hssw-text3:#8896A8;
  --hssw-red:#DC2626;
  --hssw-orange:#F97316;
  --hssw-img-max:560px;
  --hssw-img-max-height:420px;
  --hssw-img-radius:14px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.7;
  color: var(--hssw-text);
}
.hssw-post * { box-sizing: border-box; font-family: inherit; }
#hssw-rbar { position:fixed; top:0; left:0; height:3px; width:0%; background:linear-gradient(90deg,var(--hssw-acc),#00C2E0); z-index:99999; pointer-events:none; }

.hssw-post-header { border:1px solid var(--hssw-border); border-radius:14px; overflow:hidden; margin-bottom:20px; box-shadow:0 2px 10px rgba(0,0,0,.06); }
.hssw-post-hero { background:var(--hssw-hero-bg); padding:24px 22px 20px; display:flex; gap:16px; align-items:flex-start; }
.hssw-hero-icon { font-size:2.6rem; flex-shrink:0; margin-top:2px; filter:drop-shadow(0 4px 8px rgba(0,0,0,.35)); }
.hssw-hero-body { flex:1; min-width:0; }
.hssw-badges { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:10px; }
.hssw-badge { font-size:.65rem; font-weight:800; letter-spacing:.07em; text-transform:uppercase; padding:4px 9px; border-radius:6px; background:rgba(26,108,255,.28); color:#DBEAFE !important; text-decoration:none !important; line-height:1.2; }
.hssw-badge:hover { background:var(--hssw-acc); color:#fff !important; }
.hssw-title { font-size:clamp(1.4rem,3vw,2rem) !important; font-weight:850 !important; line-height:1.15 !important; letter-spacing:-.025em !important; color:#fff !important; margin:0 0 10px !important; padding:0 !important; border:none !important; }
.hssw-title-meta { display:flex; gap:8px; flex-wrap:wrap; font-size:.75rem; color:rgba(255,255,255,.6); }
.hssw-title-meta strong { color:rgba(255,255,255,.9); }
.hssw-sep { opacity:.35; }
.hssw-spec-strip { display:grid; grid-template-columns:repeat(4,1fr); background:#fff; border-top:1px solid var(--hssw-border); }
.hssw-spec-cell { padding:10px 14px; border-right:1px solid var(--hssw-border); display:flex; flex-direction:column; gap:2px; }
.hssw-spec-cell:last-child { border-right:none; }
.hssw-spec-k { font-size:.63rem; font-weight:800; text-transform:uppercase; letter-spacing:.07em; color:var(--hssw-text3); }
.hssw-spec-v { font-size:.82rem; font-weight:800; color:var(--hssw-navy); word-break:break-word; }

.hssw-body { display:grid; gap:20px; align-items:start; }
.hssw-with-sb { grid-template-columns:minmax(0,1fr) 280px; }
.hssw-no-sb { grid-template-columns:1fr; }
.hssw-main { min-width:0; display:flex; flex-direction:column; gap:16px; }
.hssw-card { background:var(--hssw-surface); border:1px solid var(--hssw-border); border-radius:12px; padding:20px 22px; box-shadow:0 1px 4px rgba(0,0,0,.04); }
.hssw-sh { display:flex !important; align-items:center !important; gap:8px !important; font-size:1.05rem !important; font-weight:850 !important; letter-spacing:-.018em !important; color:var(--hssw-navy) !important; margin:0 0 14px !important; padding:0 0 12px !important; border:none !important; border-bottom:2px solid var(--hssw-border) !important; }
.hssw-sh-ic { width:28px; height:28px; border-radius:7px; flex-shrink:0; display:inline-flex; align-items:center; justify-content:center; font-size:.85rem; background:#EEF4FF; }
.hssw-ic-c { background:#E6FAFE; } .hssw-ic-g { background:#ECFDF5; } .hssw-ic-o { background:#FFF7ED; }
.hssw-prose { font-size:.95rem; color:var(--hssw-text2); line-height:1.8; }
.hssw-prose p { margin:0 0 12px; }
.hssw-prose a, .hssw-guide-link a { color:var(--hssw-acc) !important; font-weight:700; text-decoration:none !important; }
.hssw-prose a:hover, .hssw-guide-link a:hover { text-decoration:underline !important; }
.hssw-also { font-size:.9rem; color:var(--hssw-text2); margin:10px 0 !important; }
.hssw-also a { color:var(--hssw-acc) !important; font-weight:700; }

.hssw-feat-img {
  width: fit-content;
  max-width: min(100%, var(--hssw-img-max));
  margin: 20px auto;
  border-radius: var(--hssw-img-radius);
  overflow: hidden;
  border: 1px solid var(--hssw-border);
  background: #fff;
}
.hssw-img-left { margin-left:0; margin-right:auto; }
.hssw-img-center { margin-left:auto; margin-right:auto; }
.hssw-img-right { margin-left:auto; margin-right:0; }
.hssw-feat-img img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: var(--hssw-img-max-height);
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}
.hssw-feat-img figcaption { padding:9px 12px; font-size:.82rem; color:var(--hssw-text2); border-top:1px solid var(--hssw-border); }
.hssw-image-text { text-align:center; color:var(--hssw-text2); font-size:.9rem; margin-top:-8px; }
.hssw-overview-list { list-style:none; padding:0; margin:14px 0 0; display:grid; gap:8px; }
.hssw-overview-list li { position:relative; padding:9px 11px 9px 38px; border:1px solid var(--hssw-border); background:var(--hssw-bg); border-radius:10px; color:var(--hssw-text2); font-size:.92rem; }
.hssw-overview-list li::before { content:'✓'; position:absolute; left:11px; top:10px; width:20px; height:20px; border-radius:50%; background:var(--hssw-acc); color:#fff; display:flex; align-items:center; justify-content:center; font-size:.68rem; font-weight:900; }
.hssw-guide-link { margin:14px 0 0; }

.hssw-dl-top,.hssw-dl-bottom { border-radius:12px; padding:16px 18px; display:flex; gap:14px; align-items:center; flex-wrap:wrap; }
.hssw-dl-top { background:linear-gradient(135deg,#EEF4FF,#F0FFFE); border:1px solid #C9DEFF; }
.hssw-dl-bottom { background:linear-gradient(135deg,#FEF2F2,#FFF8F0); border:1px solid #FCCACA; }
.hssw-dl-info { flex:1; min-width:170px; }
.hssw-dl-info strong { display:block; font-size:.95rem; font-weight:800; color:var(--hssw-navy); margin-bottom:3px; }
.hssw-dl-info span { font-size:.78rem; color:var(--hssw-text2); }
.hssw-dl-btns { display:flex; gap:8px; flex-wrap:wrap; }
.hssw-btn { display:inline-flex; align-items:center; justify-content:center; gap:6px; font-size:.88rem; font-weight:800; padding:9px 18px; border-radius:8px; border:none; cursor:pointer; text-decoration:none !important; white-space:nowrap; line-height:1.3; transition:transform .18s, box-shadow .18s, background .18s; }
.hssw-btn:hover { transform:translateY(-2px); text-decoration:none !important; }
.hssw-btn-acc { background:var(--hssw-acc); color:#fff !important; }
.hssw-btn-acc:hover { background:var(--hssw-acc-d); box-shadow:0 6px 16px rgba(26,108,255,.3); }
.hssw-btn-outline { background:#fff; color:var(--hssw-acc) !important; border:2px solid var(--hssw-acc); }
.hssw-btn-outline:hover { background:#EEF4FF; }
.hssw-btn-red { background:var(--hssw-red); color:#fff !important; }
.hssw-btn-red:hover { background:#B91C1C; box-shadow:0 6px 16px rgba(220,38,38,.3); }

.hssw-feat-list { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px; }
.hssw-feat-list li { display:flex; align-items:flex-start; gap:9px; font-size:.9rem; color:var(--hssw-text2); line-height:1.65; }
.hssw-feat-dot { min-width:20px; height:20px; border-radius:50%; background:var(--hssw-acc); color:#fff; display:inline-flex; align-items:center; justify-content:center; font-size:.6rem; font-weight:900; flex-shrink:0; margin-top:2px; }
.hssw-req-table { width:100%; border-collapse:collapse; font-size:.88rem; margin-top:6px; }
.hssw-req-table tr { border-bottom:1px solid var(--hssw-border); }
.hssw-req-table tr:last-child { border-bottom:none; }
.hssw-req-table td { padding:9px 6px; vertical-align:top; }
.hssw-req-table td:first-child { color:var(--hssw-text3); font-weight:800; font-size:.72rem; text-transform:uppercase; letter-spacing:.04em; width:34%; white-space:nowrap; }
.hssw-req-table td:last-child { color:var(--hssw-text); font-weight:600; }
.hssw-setup-grid { display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-top:4px; }
.hssw-setup-cell { background:var(--hssw-bg); border:1px solid var(--hssw-border); border-radius:8px; padding:9px 12px; }
.hssw-setup-k { font-size:.65rem; font-weight:800; text-transform:uppercase; letter-spacing:.06em; color:var(--hssw-text3); margin-bottom:3px; }
.hssw-setup-v { font-size:.82rem; font-weight:700; color:var(--hssw-navy); word-break:break-word; }
.hssw-steps { counter-reset:hssw-step; list-style:none; padding:0; margin:8px 0 12px; display:flex; flex-direction:column; gap:10px; }
.hssw-steps li { counter-increment:hssw-step; display:flex; align-items:flex-start; gap:10px; font-size:.9rem; color:var(--hssw-text2); line-height:1.65; }
.hssw-steps li::before { content:counter(hssw-step); min-width:26px; height:26px; border-radius:50%; background:var(--hssw-navy); color:#fff; font-size:.72rem; font-weight:900; display:inline-flex; align-items:center; justify-content:center; margin-top:1px; }
.hssw-note { background:#FFFBEB; border:1px solid #FDE68A; border-left:4px solid var(--hssw-orange); border-radius:0 8px 8px 0; padding:10px 14px; font-size:.84rem; color:#7C5A00; line-height:1.65; margin-top:8px; }

.hssw-related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.hssw-rel-card { border:1px solid var(--hssw-border); border-radius:10px; overflow:hidden; text-decoration:none !important; color:inherit; display:block; transition:border-color .18s, box-shadow .18s; }
.hssw-rel-card:hover { border-color:var(--hssw-acc); box-shadow:0 4px 14px rgba(26,108,255,.1); }
.hssw-rel-thumb { height:72px; background:var(--hssw-hero-bg); display:flex; align-items:center; justify-content:center; font-size:1.6rem; color:#fff; }
.hssw-rel-img img { width:100%; height:72px; object-fit:cover; display:block; }
.hssw-rel-body { padding:8px 10px; }
.hssw-rel-body p { font-size:.78rem; color:var(--hssw-text2); font-weight:700; line-height:1.4; margin:0 !important; }
.hssw-faq { border:1px solid var(--hssw-border); border-radius:10px; background:var(--hssw-bg); overflow:hidden; margin-bottom:10px; }
.hssw-faq summary { cursor:pointer; font-weight:850; color:var(--hssw-navy); padding:12px 14px; list-style:none; }
.hssw-faq summary::-webkit-details-marker { display:none; }
.hssw-faq summary::after { content:'+'; float:right; color:var(--hssw-acc); font-size:1.1rem; }
.hssw-faq[open] summary::after { content:'−'; }
.hssw-faq div { padding:0 14px 14px; color:var(--hssw-text2); }

.hssw-sidebar { display:flex; flex-direction:column; gap:14px; }
.hssw-side-card { background:#fff; border:1px solid var(--hssw-border); border-radius:12px; overflow:hidden; box-shadow:0 1px 4px rgba(0,0,0,.04); padding:14px; }
.hssw-side-card h3 { margin:0 0 10px !important; color:var(--hssw-navy) !important; font-size:.95rem !important; }
.hssw-side-card ul { list-style:none; padding:0; margin:0; }
.hssw-side-card li { display:flex; justify-content:space-between; gap:10px; padding:8px 0; border-bottom:1px solid var(--hssw-border); font-size:.82rem; }
.hssw-side-card li:last-child { border-bottom:none; }
.hssw-side-card li span { color:var(--hssw-text3); }
.hssw-side-card li strong { color:var(--hssw-navy); text-align:right; }
.hssw-side-card.center { text-align:center; }
.hssw-rating-big { font-size:2.4rem; font-weight:900; color:var(--hssw-navy); line-height:1; }
.hssw-stars { color:#FBBF24; font-size:1.1rem; margin:4px 0; }
.hssw-side-btn { width:100%; margin-bottom:8px; }
.hssw-theme-sidebar { margin-top:4px; }

@media (max-width: 900px) {
  .hssw-with-sb { grid-template-columns:1fr; }
  .hssw-spec-strip { grid-template-columns:1fr 1fr; }
  .hssw-spec-cell:nth-child(even) { border-right:none; }
  .hssw-setup-grid { grid-template-columns:1fr; }
  .hssw-post-hero { flex-direction:column; gap:10px; }
  .hssw-hero-icon { font-size:2rem; }
}
@media (max-width: 600px) {
  .hssw-related-grid { grid-template-columns:1fr; }
  .hssw-dl-top,.hssw-dl-bottom { flex-direction:column; align-items:flex-start; }
  .hssw-dl-btns,.hssw-btn { width:100%; }
  .hssw-card { padding:16px 14px; }
  .hssw-req-table td:first-child { white-space:normal; }
}
@media (prefers-reduced-motion: reduce) { .hssw-post * { transition:none !important; animation:none !important; } }

/* ── COMPARISON TABLE ── */
.hssw-comparison-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--hssw-border);
  border-radius: 12px;
  background: #fff;
}
.hssw-comparison-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: .92rem;
}
.hssw-comparison-table th,
.hssw-comparison-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--hssw-border);
  text-align: left;
  vertical-align: top;
}
.hssw-comparison-table th {
  background: var(--hssw-acc-l, #EEF4FF);
  color: var(--hssw-navy);
  font-weight: 800;
}
.hssw-comparison-table td:first-child {
  font-weight: 700;
  color: var(--hssw-navy);
}
.hssw-comparison-table tr:last-child td { border-bottom: none; }
.hssw-comparison-note { margin-top: 12px; }

/* v1.6 polished comparison table */
.hssw-comparison-card { overflow: hidden; }
.hssw-comparison-wrap {
  box-shadow: 0 8px 24px rgba(15,23,42,.06);
}
.hssw-comparison-table {
  background: #fff;
}
.hssw-comparison-table thead th {
  background: linear-gradient(180deg, var(--hssw-acc-l, #EEF4FF), #FFFFFF);
  border-bottom: 2px solid var(--hssw-border);
  color: var(--hssw-navy);
  white-space: nowrap;
}
.hssw-comparison-table tbody tr:nth-child(even) td {
  background: #F8FAFC;
}
.hssw-comparison-table tbody tr:hover td {
  background: var(--hssw-acc-l, #EEF4FF);
}
.hssw-comparison-table td:first-child {
  border-left: 4px solid var(--hssw-acc, #1A6CFF);
  background: #FBFDFF;
}
@media (max-width: 600px) {
  .hssw-comparison-table { min-width: 620px; }
  .hssw-comparison-table th, .hssw-comparison-table td { padding: 10px 12px; }
}

/* Inline download countdown state */
.hssw-btn-counting,
.hssw-btn-counting:hover {
  opacity: .78;
  cursor: wait;
  pointer-events: auto;
  transform: none !important;
}

/* v2.6 platform compatibility card */
.hssw-platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.hssw-platform-cell {
  background: #F8FAFC;
  border: 1px solid var(--hssw-border);
  border-radius: 10px;
  padding: 11px 12px;
}
.hssw-platform-k {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--hssw-text3);
  margin-bottom: 4px;
}
.hssw-platform-v {
  font-size: .9rem;
  font-weight: 700;
  color: var(--hssw-navy);
  line-height: 1.45;
}
.hssw-platform-card-android .hssw-platform-cell { border-left: 3px solid #16A34A; }
.hssw-platform-card-mac .hssw-platform-cell { border-left: 3px solid #64748B; }
.hssw-platform-card-windows .hssw-platform-cell { border-left: 3px solid var(--hssw-acc); }
@media (max-width: 600px) { .hssw-platform-grid { grid-template-columns: 1fr; } }
.hssw-btn.hssw-btn-ready{background:#16a34a!important;border-color:#16a34a!important;color:#fff!important;box-shadow:0 8px 18px rgba(22,163,74,.22)}
.hssw-btn.hssw-btn-downloading,.hssw-btn.hssw-btn-downloading:hover{opacity:.85;cursor:progress;transform:none!important}

/* HSware v3.9 VIP frontend layout */
.hssw-post{--hssw-soft-bg:#f5f7ff;--hssw-card:#fff;--hssw-purple:#5B35F5;--hssw-cyan:#26B9FF;--hssw-navy:#17204a;--hssw-muted:#7b86aa;font-family:'Poppins',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;background:var(--hssw-soft-bg);padding:18px;border-radius:28px;color:var(--hssw-navy)}
.hssw-post-header,.hssw-card,.hssw-dl-top,.hssw-dl-bottom,.hssw-side-card{background:var(--hssw-card)!important;border:1px solid #e7edf8!important;border-radius:24px!important;box-shadow:0 14px 35px rgba(28,39,89,.06)!important}
.hssw-post-hero{background:linear-gradient(135deg,#f8f6ff,#eef8ff)!important;border-radius:22px;padding:22px}
.hssw-title{color:var(--hssw-navy)!important;font-weight:800!important;letter-spacing:-.03em}
.hssw-title-meta,.hssw-prose,.hssw-side-card p,.hssw-rel-excerpt{color:var(--hssw-muted)!important}
.hssw-badge,.hssw-rel-badge{background:#f1edff!important;color:var(--hssw-purple)!important;border-color:#e3dafe!important;border-radius:999px!important}
.hssw-hero-icon,.hssw-sh-ic{background:linear-gradient(135deg,var(--hssw-purple),var(--hssw-cyan))!important;color:#fff!important;box-shadow:0 12px 26px rgba(91,53,245,.2)}
.hssw-card{padding:26px!important;margin-bottom:18px!important}
.hssw-sh{font-size:1.35rem!important;color:var(--hssw-navy)!important;letter-spacing:-.02em}
.hssw-body.hssw-with-sb{gap:24px;align-items:start}
.hssw-sidebar.is-sticky{position:sticky;top:90px;align-self:start}
.hssw-side-soft{padding:18px!important}
.hssw-side-card h3{font-size:1.05rem!important;font-weight:800!important;color:var(--hssw-navy)!important}
.hssw-side-post-list{display:grid;gap:10px}.hssw-side-post{display:grid;grid-template-columns:58px 1fr;gap:10px;align-items:center;padding:10px;border:1px solid #edf2fb;border-radius:16px;text-decoration:none!important;background:#fbfdff;transition:.18s}
.hssw-side-post:hover{transform:translateY(-2px);box-shadow:0 10px 22px rgba(28,39,89,.08)}
.hssw-side-post .hssw-rel-thumb,.hssw-side-post .hssw-rel-img img{width:58px;height:58px;border-radius:14px;overflow:hidden}.hssw-side-post .hssw-rel-body{padding:0}.hssw-side-post .hssw-rel-body p{font-size:.84rem!important;line-height:1.35!important;font-weight:800!important;color:var(--hssw-navy)!important}
.hssw-related-grid{gap:16px}.hssw-rel-card{border-radius:20px!important;background:#fff;box-shadow:0 10px 25px rgba(28,39,89,.045);border-color:#edf2fb!important;overflow:hidden}.hssw-rel-card:hover{transform:translateY(-3px);box-shadow:0 16px 32px rgba(28,39,89,.09)!important}.hssw-rel-thumb,.hssw-rel-img img{height:118px}.hssw-rel-body{padding:14px}.hssw-rel-body p{font-size:.95rem!important;color:var(--hssw-navy)!important}.hssw-rel-excerpt{display:block;font-size:.78rem;line-height:1.5;margin-top:6px}
.hssw-side-ad img{display:block;width:100%;border-radius:18px}.hssw-ad-html{overflow:hidden}
.hssw-btn{border-radius:15px!important;padding:12px 20px!important}.hssw-btn-acc{background:linear-gradient(135deg,var(--hssw-purple),#7c5cff)!important}.hssw-btn-red{background:linear-gradient(135deg,#ef4444,#dc2626)!important}.hssw-btn-outline{border-color:var(--hssw-purple)!important;color:var(--hssw-purple)!important}
.hssw-overview-list li,.hssw-setup-cell,.hssw-platform-cell,.hssw-faq{border-radius:18px!important;background:#fbfdff!important;border-color:#edf2fb!important}
@media(max-width:900px){.hssw-sidebar.is-sticky{position:static}.hssw-post{padding:10px;border-radius:18px}}

/* HSware v4.1.0 feedback forms */
.hssw-feedback-notice{margin:0 0 18px;padding:14px 18px;border-radius:18px;background:#ecfdf5;border:1px solid #bbf7d0;color:#166534;font-weight:700;box-shadow:0 10px 24px rgba(22,101,52,.08)}
.hssw-feedback-card{background:linear-gradient(180deg,#ffffff,#fbfdff)}
.hssw-feedback-head p{margin:4px 0 0;color:#64748b}
.hssw-feedback-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:12px}
.hssw-feedback-box{border:1px solid #e4ebf5;border-radius:18px;background:#fff;box-shadow:0 8px 22px rgba(15,23,42,.045);overflow:hidden}
.hssw-feedback-box summary{cursor:pointer;padding:15px 16px;font-weight:800;color:#18214d;list-style:none;background:#f8fbff}
.hssw-feedback-box summary::-webkit-details-marker{display:none}
.hssw-feedback-box summary:after{content:'+';float:right;color:var(--hssw-acc);font-weight:900}
.hssw-feedback-box[open] summary:after{content:'−'}
.hssw-feedback-box form{padding:16px;display:grid;gap:10px}
.hssw-feedback-box label{display:grid;gap:6px;font-size:12px;font-weight:800;color:#475569}
.hssw-feedback-box label small{font-weight:600;color:#94a3b8}
.hssw-feedback-box input,.hssw-feedback-box textarea,.hssw-feedback-box select{width:100%;box-sizing:border-box;border:1px solid #dbe5f0;background:#fff;border-radius:13px;padding:11px 12px;color:#0f172a;font:inherit;outline:0}
.hssw-feedback-box input:focus,.hssw-feedback-box textarea:focus,.hssw-feedback-box select:focus{border-color:var(--hssw-acc);box-shadow:0 0 0 4px color-mix(in srgb,var(--hssw-acc) 16%,transparent)}
.hssw-feedback-two{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.hssw-mini-submit{border:0;border-radius:14px;padding:11px 16px;background:var(--hssw-acc);color:#fff;font-weight:800;cursor:pointer;box-shadow:0 10px 22px color-mix(in srgb,var(--hssw-acc) 24%,transparent)}
.hssw-mini-submit:hover{filter:brightness(.95)}
@media(max-width:760px){.hssw-feedback-grid,.hssw-feedback-two{grid-template-columns:1fr}}


/* HSware v4.2.0 frontend bug fixes */
.hssw-post .hssw-hero-icon{
  width:68px!important;
  height:68px!important;
  min-width:68px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  border-radius:18px!important;
  background:#ffffff!important;
  color:#18214d!important;
  border:1px solid #e4ebf6!important;
  box-shadow:0 16px 32px rgba(28,39,89,.10)!important;
  filter:none!important;
  font-size:2.15rem!important;
  line-height:1!important;
  margin-top:0!important;
}
.hssw-post .hssw-title-meta,
.hssw-post .hssw-title-meta strong,
.hssw-post .hssw-title-meta span{
  color:#7b86aa!important;
  opacity:1!important;
}
.hssw-post .hssw-title-meta strong{font-weight:700!important;color:#9aa4c3!important}
.hssw-post .hssw-sep{color:#c2c9dc!important;opacity:1!important}
.hssw-post .hssw-feedback-card{margin-top:0!important;border-radius:24px!important;background:#fff!important}
.hssw-post .hssw-feedback-head .hssw-sh{margin-bottom:4px!important;border-bottom:0!important;padding-bottom:0!important}
.hssw-post .hssw-feedback-grid{margin-top:16px!important}
.hssw-post .hssw-feedback-box summary{background:#f8faff!important;color:#18214d!important}
.hssw-post .hssw-feedback-box{border-color:#e7edf8!important;border-radius:18px!important}
@media(max-width:900px){.hssw-post .hssw-hero-icon{width:58px!important;height:58px!important;min-width:58px!important;font-size:1.85rem!important}}


/* HSware v4.3.0 bug fixes and sidebar category block */
.hssw-post .hssw-post-hero{
  background:var(--hssw-hero-bg)!important;
  border-radius:22px!important;
  padding:24px 22px!important;
}
.hssw-post .hssw-title{color:#fff!important;text-shadow:0 2px 10px rgba(0,0,0,.14)}
.hssw-post .hssw-title-meta,
.hssw-post .hssw-title-meta strong,
.hssw-post .hssw-title-meta span{color:rgba(255,255,255,.76)!important;opacity:1!important}
.hssw-post .hssw-title-meta strong{color:#fff!important}
.hssw-post .hssw-sep{color:rgba(255,255,255,.45)!important;opacity:1!important}
.hssw-post .hssw-badge{background:rgba(255,255,255,.14)!important;color:#fff!important;border:1px solid rgba(255,255,255,.22)!important}
.hssw-post .hssw-badge:hover,.hssw-post .hssw-badge:focus{background:#fff!important;color:var(--hssw-acc)!important;border-color:#fff!important}
.hssw-post .hssw-hero-icon{background:#fff!important;color:#18214d!important;border:1px solid rgba(255,255,255,.72)!important}
.hssw-post .hssw-spec-strip{background:#fff!important}
.hssw-post .hssw-side-post{grid-template-columns:54px minmax(0,1fr)!important;gap:11px!important;padding:9px!important;align-items:center!important}
.hssw-post .hssw-side-post .hssw-rel-badge,.hssw-post .hssw-side-post .hssw-rel-excerpt{display:none!important}
.hssw-post .hssw-side-post .hssw-rel-thumb,.hssw-post .hssw-side-post .hssw-rel-img img{width:54px!important;height:54px!important;min-width:54px!important;border-radius:14px!important;object-fit:cover!important}
.hssw-post .hssw-side-post .hssw-rel-body{min-width:0!important;padding:0!important}
.hssw-post .hssw-side-post .hssw-rel-body p{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;margin:0!important;color:var(--hssw-navy)!important;font-size:.84rem!important;line-height:1.35!important}
.hssw-side-cat-list{display:grid;gap:8px}
.hssw-side-cat{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:10px 12px;border:1px solid #edf2fb;border-radius:14px;background:#fbfdff;text-decoration:none!important;color:var(--hssw-navy)!important;font-weight:800;font-size:.84rem;transition:transform .18s,box-shadow .18s,border-color .18s}
.hssw-side-cat:hover{transform:translateY(-2px);box-shadow:0 10px 22px rgba(28,39,89,.08);border-color:color-mix(in srgb,var(--hssw-acc) 35%,#edf2fb)}
.hssw-side-cat span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.hssw-side-cat strong{min-width:28px;text-align:center;border-radius:999px;background:#f1edff;color:var(--hssw-acc);font-size:.74rem;padding:2px 7px}
.hssw-post .hssw-faq-card{order:98}.hssw-post .hssw-related-section{order:99}


/* HSware v4.4.0 feedback + comment polish */
.hssw-post .hssw-feedback-card{background:#ffffff!important;border:1px solid #e6edf7!important;box-shadow:0 16px 34px rgba(15,23,42,.06)!important}
.hssw-post .hssw-feedback-box{background:#ffffff!important;border:1px solid #e4ebf5!important;box-shadow:0 12px 26px rgba(15,23,42,.055)!important}
.hssw-post .hssw-feedback-box summary{background:linear-gradient(180deg,#fbfdff,#f7faff)!important;color:#111b4f!important;border-bottom:1px solid #edf2fb!important}
.hssw-post .hssw-feedback-box form{background:#ffffff!important}
.hssw-post .hssw-feedback-box label{color:#475569!important;background:transparent!important}
.hssw-post .hssw-feedback-box input,
.hssw-post .hssw-feedback-box textarea,
.hssw-post .hssw-feedback-box select{
  background:#ffffff!important;background-color:#ffffff!important;color:#111827!important;border:1px solid #dbe5f0!important;border-radius:14px!important;box-shadow:0 2px 8px rgba(15,23,42,.025)!important;caret-color:#111827!important;-webkit-text-fill-color:#111827!important;appearance:auto!important;
}
.hssw-post .hssw-feedback-box option{background:#ffffff!important;color:#111827!important}
.hssw-post .hssw-feedback-box input::placeholder,
.hssw-post .hssw-feedback-box textarea::placeholder{color:#94a3b8!important;-webkit-text-fill-color:#94a3b8!important}
.hssw-post .hssw-feedback-box input:focus,
.hssw-post .hssw-feedback-box textarea:focus,
.hssw-post .hssw-feedback-box select:focus{background:#fff!important;color:#111827!important;border-color:var(--hssw-acc)!important;box-shadow:0 0 0 4px color-mix(in srgb,var(--hssw-acc) 16%,transparent)!important}
.hssw-post .hssw-mini-submit,.hssw-post .hssw-mini-submit:hover,.hssw-post .hssw-mini-submit:focus{background:var(--hssw-acc)!important;color:#fff!important;-webkit-text-fill-color:#fff!important;border:0!important;text-decoration:none!important;filter:none!important}
.hssw-post .hssw-mini-submit:hover{transform:translateY(-1px);box-shadow:0 14px 26px color-mix(in srgb,var(--hssw-acc) 25%,transparent)!important}
.hssw-post .hssw-comments-card{order:100;background:#fff!important;border:1px solid #e6edf7!important;border-radius:26px!important;box-shadow:0 16px 34px rgba(15,23,42,.06)!important}
.hssw-post .hssw-comments-intro{margin:0 0 16px;color:#64748b;font-weight:500}
.hssw-post .hssw-comment-list{display:grid;gap:12px;margin:14px 0 18px}
.hssw-post .hssw-comment-item{display:flex;gap:12px;padding:14px;border:1px solid #edf2fb;border-radius:18px;background:#fbfdff}
.hssw-post .hssw-comment-avatar img{border-radius:999px;display:block}
.hssw-post .hssw-comment-body strong{display:block;color:#111b4f;font-weight:850}
.hssw-post .hssw-comment-body span{display:block;color:#94a3b8;font-size:.8rem;margin-top:1px}
.hssw-post .hssw-comment-body p{margin:6px 0 0;color:#475569;line-height:1.6}
.hssw-post .hssw-comment-form-wrap{margin-top:12px;padding:16px;border:1px solid #edf2fb;border-radius:20px;background:linear-gradient(180deg,#fbfdff,#fff)}
.hssw-post .hssw-comment-reply-title{margin:0 0 12px;color:#111b4f;font-size:1.2rem;font-weight:900}
.hssw-post .hssw-comment-form-wrap label{display:block;color:#475569;font-weight:800;font-size:.86rem;margin-bottom:6px}
.hssw-post .hssw-comment-form-wrap input,
.hssw-post .hssw-comment-form-wrap textarea{width:100%;box-sizing:border-box;background:#fff!important;color:#111827!important;-webkit-text-fill-color:#111827!important;border:1px solid #dbe5f0!important;border-radius:14px!important;padding:12px 13px!important;font:inherit!important;box-shadow:0 2px 8px rgba(15,23,42,.025)!important}
.hssw-post .hssw-comment-form-wrap input:focus,
.hssw-post .hssw-comment-form-wrap textarea:focus{outline:0;border-color:var(--hssw-acc)!important;box-shadow:0 0 0 4px color-mix(in srgb,var(--hssw-acc) 16%,transparent)!important}
.hssw-post .hssw-comment-submit,.hssw-post .hssw-comment-submit:hover,.hssw-post .hssw-comment-submit:focus{display:inline-flex!important;align-items:center;justify-content:center;border:0!important;border-radius:15px!important;background:var(--hssw-acc)!important;color:#fff!important;-webkit-text-fill-color:#fff!important;padding:12px 20px!important;font-weight:900!important;cursor:pointer!important;text-decoration:none!important;box-shadow:0 12px 26px color-mix(in srgb,var(--hssw-acc) 22%,transparent)!important}
.hssw-post .hssw-comment-submit:hover{transform:translateY(-1px)}
.hssw-post .hssw-comments-closed{padding:14px;border-radius:16px;background:#fff7ed;border:1px solid #fed7aa;color:#9a3412;font-weight:700}
.hssw-post .hssw-related-section{order:99}.hssw-post .hssw-comments-card{order:100}


/* HSware v4.5 SEO resource links */
.hssw-resource-card{background:linear-gradient(180deg,#fff,#fbfdff)}
.hssw-resource-links{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:14px}
.hssw-resource-link{display:flex;flex-direction:column;gap:4px;text-decoration:none;border:1px solid rgba(148,163,184,.28);border-radius:16px;background:#fff;padding:14px 16px;box-shadow:0 10px 20px rgba(15,23,42,.04);transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}
.hssw-resource-link:hover{transform:translateY(-2px);box-shadow:0 16px 34px rgba(15,23,42,.08);border-color:var(--hssw-acc)}
.hssw-resource-link span{font-size:11px;text-transform:uppercase;letter-spacing:.08em;font-weight:800;color:var(--hssw-acc)}
.hssw-resource-link strong{font-size:15px;color:#0f172a}.hssw-resource-link em{font-style:normal;font-size:12px;color:#64748b}
.hssw-prose a,.hssw-overview-list a,.hssw-feat-list a,.hssw-steps a{color:var(--hssw-acc);font-weight:800;text-decoration:none;border-bottom:1px solid currentColor}
@media(max-width:720px){.hssw-resource-links{grid-template-columns:1fr}}

/* HSware v4.6 inline content links */
.hssw-post .hssw-prose a,
.hssw-post .hssw-overview-list a,
.hssw-post .hssw-feat-list a,
.hssw-post .hssw-steps a{color:var(--hssw-acc,#5b35f5);font-weight:800;text-decoration:none;border-bottom:1px solid color-mix(in srgb,var(--hssw-acc,#5b35f5) 45%,transparent)}
.hssw-post .hssw-prose a:hover,
.hssw-post .hssw-overview-list a:hover,
.hssw-post .hssw-feat-list a:hover,
.hssw-post .hssw-steps a:hover{border-bottom-color:currentColor}

/* HSware v5.0.0 - cleaner related/recent cards: image + title only */
.hssw-rel-badge,.hssw-rel-excerpt{display:none!important}
.hssw-related-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important}
.hssw-rel-card{display:flex!important;flex-direction:column!important;text-decoration:none!important}
.hssw-rel-thumb,.hssw-rel-img img{height:145px!important;width:100%!important;object-fit:cover!important}
.hssw-rel-body{padding:13px 14px!important}
.hssw-rel-body p{font-size:.94rem!important;line-height:1.35!important;color:var(--hssw-navy)!important;font-weight:850!important;margin:0!important;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.hssw-side-post{grid-template-columns:64px 1fr!important;padding:9px!important}
.hssw-side-post .hssw-rel-thumb,.hssw-side-post .hssw-rel-img img{width:64px!important;height:64px!important}
.hssw-side-post .hssw-rel-body p{font-size:.86rem!important}
@media(max-width:700px){.hssw-related-grid{grid-template-columns:1fr!important}}

/* HSware v5.4 frontend sections */
.hssw-screenshot-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;margin-top:16px}
.hssw-shot{margin:0;border:1px solid rgba(15,23,42,.08);border-radius:18px;overflow:hidden;background:#fff;box-shadow:0 12px 28px rgba(15,23,42,.08)}
.hssw-shot img{display:block;width:100%;height:170px;object-fit:cover;background:#f8fafc}
.hssw-shot figcaption{font-size:13px;line-height:1.45;color:#475569;padding:10px 12px;background:#fff}
.hssw-install-video{margin-top:22px;padding:18px;border-radius:20px;background:#f8fafc;border:1px solid rgba(15,23,42,.08)}
.hssw-install-video h3{margin:0 0 12px;font-size:20px;color:#0f172a}
.hssw-video-frame{position:relative;overflow:hidden;border-radius:16px;background:#020617}
.hssw-video-frame iframe,.hssw-video-frame video{display:block;width:100%;aspect-ratio:16/9;height:auto;border:0}
.hssw-video-desc{margin-top:12px}
.hssw-version-list{display:grid;gap:12px;margin-top:16px}
.hssw-version-item{border:1px solid rgba(15,23,42,.08);border-radius:18px;padding:16px;background:#fff;box-shadow:0 10px 22px rgba(15,23,42,.06)}
.hssw-version-meta{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:8px}
.hssw-version-meta strong{font-size:16px;color:#0f172a}.hssw-version-meta span,.hssw-version-meta em{font-size:13px;color:#64748b;font-style:normal;background:#f1f5f9;border-radius:999px;padding:4px 9px}
@media(max-width:760px){.hssw-screenshot-grid{grid-template-columns:1fr}.hssw-shot img{height:auto}}

/* HSware v5.6 Feature Suite frontend */
.hssw-toc{background:#fff;border:1px solid rgba(148,163,184,.28);border-radius:18px;padding:18px;margin:0 0 22px;box-shadow:0 12px 32px rgba(15,23,42,.06)}.hssw-toc strong{display:block;margin-bottom:8px}.hssw-toc ol{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:8px;margin:0;padding-left:18px}.hssw-toc a{text-decoration:none;color:var(--hssw-acc,#1A6CFF);font-weight:700}.hssw-trust-panel{background:#fff;border:1px solid rgba(148,163,184,.32);border-radius:22px;padding:22px;margin:0 0 24px;box-shadow:0 14px 38px rgba(15,23,42,.07)}.hssw-trust-panel h2{margin-top:0}.hssw-trust-badges{display:flex;flex-wrap:wrap;gap:8px;margin:10px 0}.hssw-trust-badges span{background:#eef2ff;color:#3730a3;border-radius:999px;padding:7px 12px;font-weight:800;font-size:13px}.hssw-checksum-list{margin:12px 0 0;padding-left:20px}.hssw-checksum-list code{word-break:break-all;background:#f8fafc;padding:3px 6px;border-radius:8px}

/* v5.6 Feature Suite QA */
#hssw-rbar.hssw-rbar-bottom{top:auto!important;bottom:0}
.hssw-ad-slot{background:#fff;border:1px dashed rgba(148,163,184,.55);border-radius:18px;padding:16px;margin:0 0 22px;box-shadow:0 8px 24px rgba(15,23,42,.05)}
.hssw-button-flat .hssw-btn{box-shadow:none!important;border-radius:10px!important}
.hssw-button-outline .hssw-btn{background:#fff!important;color:var(--hssw-acc,#1A6CFF)!important;border:2px solid var(--hssw-acc,#1A6CFF)!important}
.hssw-button-glass .hssw-btn{background:rgba(255,255,255,.18)!important;backdrop-filter:blur(12px);border:1px solid rgba(255,255,255,.35)!important}
.hssw-button-neon .hssw-btn{box-shadow:0 0 0 1px var(--hssw-acc,#1A6CFF),0 0 24px color-mix(in srgb,var(--hssw-acc,#1A6CFF) 45%,transparent)!important}
.hssw-button-soft .hssw-btn{border-radius:18px!important;box-shadow:0 12px 28px rgba(15,23,42,.12)!important}
.hssw-button-3d .hssw-btn{transform:translateY(0);box-shadow:0 7px 0 rgba(15,23,42,.18),0 18px 30px rgba(15,23,42,.18)!important}
.hssw-layout-dark-portal{background:#020617;color:#e5e7eb}.hssw-layout-dark-portal .hssw-card,.hssw-layout-dark-portal .hssw-trust-panel,.hssw-layout-dark-portal .hssw-toc{background:#0f172a;color:#e5e7eb;border-color:rgba(148,163,184,.2)}
.hssw-layout-apk-style{--hssw-acc:#22c55e}.hssw-layout-windows-utility{--hssw-acc:#2563eb}.hssw-layout-gaming{--hssw-acc:#a855f7}.hssw-layout-minimal-seo .hssw-card{box-shadow:none;border-color:#e5e7eb}

/* HSware v5.9.0: TOC/content table removed from frontend layout */
.hssw-toc{display:none!important;visibility:hidden!important;height:0!important;margin:0!important;padding:0!important;border:0!important;overflow:hidden!important;}

/* HSware v7.1.1 visible frontend content */
.hssw-feedback-box h3{margin:0!important;padding:15px 16px!important;font-size:1rem!important;line-height:1.35!important;font-weight:850!important;color:#18214d!important;background:#f8fbff!important;border-bottom:1px solid #edf2fb!important}
.hssw-faq-static{padding:16px 18px!important}
.hssw-faq-static h3{margin:0 0 8px!important;font-size:1rem!important;line-height:1.4!important;color:var(--hssw-navy)!important}
.hssw-faq-static div{padding:0!important;color:var(--hssw-text2)!important}
.hssw-faq-static div p{margin:0 0 10px!important;line-height:1.7!important}
.hssw-faq-static div p:last-child{margin-bottom:0!important}
.hssw-share-links{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px}
.hssw-share-links a{display:flex;align-items:center;justify-content:center;min-height:38px;border:1px solid #e4ebf5;border-radius:12px;background:#fbfdff;color:var(--hssw-acc)!important;text-decoration:none!important;font-weight:800;font-size:.82rem}
.hssw-share-links a:hover{border-color:var(--hssw-acc);background:#fff;box-shadow:0 8px 18px color-mix(in srgb,var(--hssw-acc) 12%,transparent)}


/* HSware v7.3.1 fixes: keep the software content visible even on dark/black themes and restore readable sidebar/share blocks. */
.hssw-post{
  width:min(100%, 1180px);
  margin:28px auto !important;
  padding:0;
  background:transparent;
  clear:both;
}
.hssw-post a{box-shadow:none !important;}
.hssw-post img{max-width:100%;height:auto;}
.hssw-post .hssw-side-post-list{display:grid;gap:12px;}
.hssw-post .hssw-side-post{display:grid;grid-template-columns:58px minmax(0,1fr);gap:12px;align-items:center;border:1px solid var(--hssw-border);border-radius:12px;padding:8px;text-decoration:none !important;background:#fff;color:inherit;}
.hssw-post .hssw-side-post .hssw-rel-thumb{height:52px;border-radius:10px;overflow:hidden;}
.hssw-post .hssw-side-post .hssw-rel-img img{height:52px;object-fit:cover;}
.hssw-post .hssw-side-post p{margin:0;font-size:13px;line-height:1.35;font-weight:800;color:var(--hssw-text);}
.hssw-post .hssw-side-cat-list{display:grid;gap:8px;}
.hssw-post .hssw-side-cat{display:flex;justify-content:space-between;align-items:center;gap:10px;border:1px solid var(--hssw-border);border-radius:12px;padding:9px 11px;background:#fff;text-decoration:none !important;color:var(--hssw-text) !important;font-weight:800;}
.hssw-post .hssw-side-cat strong{min-width:28px;text-align:center;border-radius:999px;background:#f3efff;color:var(--hssw-acc);font-size:12px;padding:2px 7px;}
.hssw-post .hssw-share-links{display:flex;gap:10px;flex-wrap:wrap;}
.hssw-post .hssw-share-link{width:42px;height:42px;border-radius:50%;border:1px solid #e2e8f0;background:#eef2ff;color:var(--hssw-acc) !important;display:inline-flex;align-items:center;justify-content:center;text-decoration:none !important;cursor:pointer;padding:0;font-weight:900;line-height:1;}
.hssw-post .hssw-share-link:hover{transform:translateY(-2px);box-shadow:0 10px 22px rgba(109,61,245,.15);}
.hssw-post .hssw-share-link-icon{font-size:15px;font-weight:900;line-height:1;}
.hssw-post .hssw-share-link-label{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}
@media(max-width:1200px){.hssw-post{width:calc(100% - 24px);margin:18px auto !important;}}


/* HSware v7.3.10: frontend feature screenshots are full-width vertical blocks. */
.hssw-screenshot-grid{
  display:grid !important;
  grid-template-columns:1fr !important;
  gap:18px !important;
  margin-top:16px !important;
}
.hssw-shot{
  width:100% !important;
  max-width:100% !important;
}
.hssw-shot img{
  width:100% !important;
  height:auto !important;
  max-height:none !important;
  object-fit:contain !important;
  background:#f8fafc !important;
}


/* HSware v7.3.13 base full-width safety. Template CSS does the main breakout; this keeps the base wrapper from narrowing first. */
.hssw-post{
  max-width:min(1920px, calc(100vw - 32px));
}
@media(max-width:760px){.hssw-post{max-width:calc(100vw - 12px);}}

/* HSware v7.3.15: User rating belongs in the top hero, not as a sidebar box. */
.hssw-hero-trust{display:grid;gap:10px;align-items:stretch;}
.hssw-hero-rating-card{display:grid;grid-template-columns:38px minmax(0,1fr);column-gap:12px;align-items:center;border:1px solid rgba(255,255,255,.22);border-radius:12px;padding:14px 16px;color:#fff;background:rgba(255,255,255,.08);box-shadow:inset 0 1px 0 rgba(255,255,255,.08)}
.hssw-hero-rating-icon{grid-row:1 / span 2;width:38px;height:38px;border-radius:12px;background:#fff;color:#f7b500;display:flex;align-items:center;justify-content:center;font-size:20px;font-weight:900;line-height:1}
.hssw-hero-rating-card strong{font-size:16px;font-weight:900;line-height:1.15;color:#fff}
.hssw-hero-rating-card small{font-size:12px;color:rgba(255,255,255,.74);font-weight:700;line-height:1.35}.hssw-hero-rating-card small span{color:#f7b500;letter-spacing:1px;white-space:nowrap}.hssw-sidebar .hssw-side-card.center:has(.hssw-rating-big){display:none!important;}
@media(max-width:760px){.hssw-hero-trust{width:100%;}.hssw-hero-rating-card{width:100%;}}

/* HSware v7.4.9: Android APK frontend layout. Auto-applies when Software Type is Android APK, or when Design > Frontend Layout Mode forces APK. */
.hssw-apk-post{
  --hssw-apk-green:#22c55e;
  --hssw-apk-dark:#0b1220;
}
.hssw-apk-post .hssw-post-header{
  border-radius:30px!important;
  overflow:hidden!important;
  border:1px solid rgba(34,197,94,.18)!important;
  box-shadow:0 24px 60px rgba(15,23,42,.10)!important;
}
.hssw-apk-post .hssw-post-hero{
  display:grid!important;
  grid-template-columns:112px minmax(0,1fr)!important;
  gap:22px!important;
  align-items:center!important;
  padding:30px!important;
  background:linear-gradient(135deg,#0b1220 0%,#123524 54%,#16a34a 140%)!important;
  border-radius:0!important;
}
.hssw-apk-post .hssw-hero-icon{
  width:104px!important;
  height:104px!important;
  min-width:104px!important;
  border-radius:28px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  background:linear-gradient(135deg,#ecfdf5,#dcfce7)!important;
  color:#0f172a!important;
  font-size:3rem!important;
  box-shadow:0 18px 40px rgba(0,0,0,.24)!important;
  border:1px solid rgba(255,255,255,.8)!important;
  filter:none!important;
}
.hssw-apk-post .hssw-hero-body{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) minmax(230px,300px)!important;
  column-gap:22px!important;
  align-items:center!important;
}
.hssw-apk-post .hssw-badges,
.hssw-apk-post .hssw-title,
.hssw-apk-post .hssw-title-meta{grid-column:1!important;}
.hssw-apk-post .hssw-hero-trust{
  grid-column:2!important;
  grid-row:1 / span 3!important;
  display:grid!important;
  gap:10px!important;
}
.hssw-apk-post .hssw-badge{
  background:rgba(34,197,94,.18)!important;
  border-color:rgba(187,247,208,.28)!important;
  color:#dcfce7!important;
}
.hssw-apk-post .hssw-title{
  font-size:clamp(1.75rem,4vw,3rem)!important;
  line-height:1.06!important;
  letter-spacing:-.045em!important;
  margin-bottom:12px!important;
}
.hssw-apk-post .hssw-title-meta{
  gap:10px!important;
  color:rgba(240,253,244,.82)!important;
  font-size:.86rem!important;
}
.hssw-apk-post .hssw-title-meta span,
.hssw-apk-post .hssw-title-meta strong{color:rgba(240,253,244,.92)!important;}
.hssw-apk-post .hssw-safe-card,
.hssw-apk-post .hssw-hero-rating-card{
  background:rgba(255,255,255,.10)!important;
  border:1px solid rgba(255,255,255,.22)!important;
  border-radius:18px!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08)!important;
}
.hssw-apk-post .hssw-apk-hero-buttons{
  display:grid!important;
  grid-template-columns:1fr!important;
  gap:10px!important;
}
.hssw-apk-post .hssw-apk-hero-buttons .hssw-btn{
  width:100%!important;
  min-height:48px!important;
  border-radius:16px!important;
  font-weight:950!important;
}
.hssw-apk-post .hssw-apk-hero-buttons .hssw-btn-acc{
  background:#22c55e!important;
  color:#052e16!important;
  box-shadow:0 18px 28px rgba(34,197,94,.25)!important;
}
.hssw-apk-post .hssw-apk-hero-buttons .hssw-btn-outline{
  background:rgba(255,255,255,.95)!important;
  color:#14532d!important;
  border:0!important;
}
.hssw-apk-post .hssw-spec-strip{
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:0!important;
  background:#ffffff!important;
}
.hssw-apk-post .hssw-spec-cell{
  padding:17px 20px!important;
  flex-direction:row!important;
  gap:12px!important;
  align-items:center!important;
}
.hssw-apk-post .hssw-spec-icon{
  width:40px!important;
  height:40px!important;
  min-width:40px!important;
  border-radius:14px!important;
  background:#ecfdf5!important;
  border:1px solid #bbf7d0!important;
}
.hssw-apk-post .hssw-spec-icon::before{content:'⬢';color:#16a34a;font-size:14px;line-height:1;}
.hssw-apk-post .hssw-spec-text{display:grid;gap:1px;min-width:0;}
.hssw-apk-post .hssw-spec-k{color:#64748b!important;font-size:.68rem!important;}
.hssw-apk-post .hssw-spec-v{color:#0f172a!important;font-size:.92rem!important;}
.hssw-apk-mini-info{
  display:grid!important;
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:10px!important;
  padding:14px!important;
  background:#f8fafc!important;
  border-top:1px solid #e2e8f0!important;
}
.hssw-apk-mini-info span{
  display:grid!important;
  gap:3px!important;
  padding:13px 14px!important;
  border-radius:16px!important;
  background:#fff!important;
  border:1px solid #e2e8f0!important;
  color:#0f172a!important;
  min-width:0!important;
  word-break:break-word!important;
  box-shadow:0 8px 18px rgba(15,23,42,.035)!important;
}
.hssw-apk-mini-info strong{
  display:block!important;
  font-size:.68rem!important;
  text-transform:uppercase!important;
  letter-spacing:.07em!important;
  color:#64748b!important;
}
.hssw-apk-post .hssw-dl-top{
  background:linear-gradient(135deg,#ecfdf5,#f0fdf4)!important;
  border-color:#bbf7d0!important;
  border-radius:24px!important;
}
.hssw-apk-post .hssw-dl-bottom{
  background:linear-gradient(135deg,#f0fdf4,#ffffff)!important;
  border-color:#bbf7d0!important;
  border-radius:24px!important;
}
.hssw-apk-post .hssw-btn-acc,
.hssw-apk-post .hssw-btn-red{
  background:#22c55e!important;
  color:#052e16!important;
}
.hssw-apk-post .hssw-btn-outline{
  border-color:#22c55e!important;
  color:#15803d!important;
}
.hssw-apk-post .hssw-sh-ic{background:#ecfdf5!important;color:#15803d!important;}
.hssw-apk-post .hssw-overview-list li::before,
.hssw-apk-post .hssw-feat-dot{background:#22c55e!important;color:#052e16!important;}
.hssw-apk-post .hssw-screenshot-grid{
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr))!important;
  gap:18px!important;
}
.hssw-apk-post .hssw-shot{
  border-radius:26px!important;
  box-shadow:0 18px 40px rgba(15,23,42,.10)!important;
  background:#f8fafc!important;
}
.hssw-apk-post .hssw-shot img{
  aspect-ratio:9/16!important;
  width:100%!important;
  height:auto!important;
  max-height:680px!important;
  object-fit:cover!important;
  background:#0f172a!important;
}
.hssw-apk-post .hssw-req-table td:first-child{width:38%;}
.hssw-mac-post .hssw-post-hero{background:linear-gradient(135deg,#111827,#334155,#64748b)!important;}

@media(max-width:980px){
  .hssw-apk-post .hssw-post-hero{grid-template-columns:92px minmax(0,1fr)!important;padding:24px!important;}
  .hssw-apk-post .hssw-hero-icon{width:86px!important;height:86px!important;min-width:86px!important;font-size:2.4rem!important;border-radius:23px!important;}
  .hssw-apk-post .hssw-hero-body{grid-template-columns:1fr!important;gap:15px!important;}
  .hssw-apk-post .hssw-hero-trust{grid-column:1!important;grid-row:auto!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  .hssw-apk-post .hssw-apk-hero-buttons{grid-column:1 / -1!important;grid-template-columns:1fr 1fr!important;}
  .hssw-apk-post .hssw-spec-strip,
  .hssw-apk-mini-info{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
}
@media(max-width:640px){
  .hssw-apk-post .hssw-post-hero{grid-template-columns:1fr!important;text-align:center!important;justify-items:center!important;padding:22px 16px!important;}
  .hssw-apk-post .hssw-hero-body{justify-items:center!important;width:100%!important;}
  .hssw-apk-post .hssw-badges,
  .hssw-apk-post .hssw-title,
  .hssw-apk-post .hssw-title-meta{justify-content:center!important;text-align:center!important;}
  .hssw-apk-post .hssw-title-meta{justify-content:center!important;}
  .hssw-apk-post .hssw-hero-trust{width:100%!important;grid-template-columns:1fr!important;}
  .hssw-apk-post .hssw-apk-hero-buttons{grid-template-columns:1fr!important;}
  .hssw-apk-post .hssw-spec-strip,
  .hssw-apk-mini-info{grid-template-columns:1fr!important;}
  .hssw-apk-post .hssw-spec-cell{border-right:0!important;border-bottom:1px solid var(--hssw-border)!important;}
  .hssw-apk-post .hssw-spec-cell:last-child{border-bottom:0!important;}
  .hssw-apk-post .hssw-screenshot-grid{grid-template-columns:1fr!important;}
}

/* HSware v7.4.16: rebuilt Android APK frontend with mobile-first app-store style layout and desktop responsiveness. */
.hssw-post.hssw-apk-post{
  --hssw-apk-green:#16a34a;
  --hssw-apk-green-dark:#15803d;
  --hssw-apk-green-soft:#effbf2;
  --hssw-apk-border:#e5efe7;
  --hssw-apk-shell:#ffffff;
  background:transparent!important;
  color:#102118!important;
}
.hssw-post.hssw-apk-post .hssw-apk-header-shell{
  background:#fff!important;
  border:1px solid #e7efe8!important;
  border-radius:28px!important;
  overflow:hidden!important;
  box-shadow:0 18px 50px rgba(15,23,42,.06)!important;
  padding:0!important;
}
.hssw-post.hssw-apk-post .hssw-apk-topbar{
  display:flex!important;align-items:center!important;justify-content:space-between!important;
  padding:18px 20px 14px!important;border-bottom:1px solid #edf2ee!important;background:#fff!important;
}
.hssw-post.hssw-apk-post .hssw-apk-brand{font-size:1.55rem!important;font-weight:900!important;color:#16a34a!important;letter-spacing:-.03em!important;}
.hssw-post.hssw-apk-post .hssw-apk-top-actions{display:flex!important;gap:14px!important;color:#1f2937!important;font-size:1.1rem!important;font-weight:800!important;}
.hssw-post.hssw-apk-post .hssw-apk-top-actions span{width:34px;height:34px;border-radius:999px;display:flex;align-items:center;justify-content:center;background:#f7faf8;border:1px solid #e8efea;}
.hssw-post.hssw-apk-post .hssw-apk-breadcrumbs{padding:14px 20px 0!important;color:#8b9690!important;font-size:.84rem!important;line-height:1.45!important;}
.hssw-post.hssw-apk-post .hssw-apk-app-head{display:grid!important;grid-template-columns:110px minmax(0,1fr)!important;gap:18px!important;align-items:center!important;padding:18px 20px 8px!important;}
.hssw-post.hssw-apk-post .hssw-apk-app-icon{width:96px!important;height:96px!important;min-width:96px!important;border-radius:22px!important;background:#fff!important;border:1px solid #e6e6e6!important;box-shadow:0 10px 24px rgba(15,23,42,.08)!important;overflow:hidden!important;color:#16a34a!important;font-size:2.6rem!important;}
.hssw-post.hssw-apk-post .hssw-apk-app-icon img{width:100%!important;height:100%!important;object-fit:cover!important;display:block!important;}
.hssw-post.hssw-apk-post .hssw-apk-head-copy{min-width:0!important;display:grid!important;gap:8px!important;}
.hssw-post.hssw-apk-post .hssw-title{font-size:clamp(1.9rem,4vw,2.65rem)!important;line-height:1.04!important;color:#111827!important;margin:0!important;letter-spacing:-.04em!important;}
.hssw-post.hssw-apk-post .hssw-apk-subtitle{font-size:1rem!important;color:#475569!important;font-weight:700!important;}
.hssw-post.hssw-apk-post .hssw-apk-chip-row{display:flex!important;flex-wrap:wrap!important;gap:8px!important;}
.hssw-post.hssw-apk-post .hssw-apk-chip{display:inline-flex!important;align-items:center!important;justify-content:center!important;padding:7px 12px!important;border-radius:999px!important;background:#f4fbf6!important;border:1px solid #bde3c7!important;color:#15803d!important;font-size:.88rem!important;font-weight:800!important;line-height:1!important;}
.hssw-post.hssw-apk-post .hssw-apk-chip.is-strong{background:#1fb451!important;border-color:#1fb451!important;color:#fff!important;}
.hssw-post.hssw-apk-post .hssw-apk-rating-row{display:flex!important;align-items:center!important;gap:10px!important;font-size:.96rem!important;flex-wrap:wrap!important;color:#475569!important;}
.hssw-post.hssw-apk-post .hssw-apk-rating-row strong{font-size:1rem!important;color:#111827!important;font-weight:900!important;}
.hssw-post.hssw-apk-post .hssw-apk-stars{color:#f59e0b!important;letter-spacing:1px!important;font-weight:900!important;}
.hssw-post.hssw-apk-post .hssw-apk-rating-row em{font-style:normal!important;color:#64748b!important;}
.hssw-post.hssw-apk-post .hssw-apk-stat-row{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:0!important;margin:10px 20px 0!important;border:1px solid #e7efe8!important;border-radius:18px!important;overflow:hidden!important;background:#fbfdfb!important;}
.hssw-post.hssw-apk-post .hssw-apk-stat-card{display:grid!important;gap:6px!important;place-items:center!important;padding:16px 12px!important;border-right:1px solid #e7efe8!important;min-height:88px!important;text-align:center!important;}
.hssw-post.hssw-apk-post .hssw-apk-stat-card:last-child{border-right:0!important;}
.hssw-post.hssw-apk-post .hssw-apk-stat-card strong{font-size:1.05rem!important;color:#1f2937!important;font-weight:900!important;line-height:1.1!important;}
.hssw-post.hssw-apk-post .hssw-apk-stat-card span{font-size:.8rem!important;color:#6b7280!important;font-weight:700!important;}
.hssw-post.hssw-apk-post .hssw-apk-main-download{padding:16px 20px 0!important;}
.hssw-post.hssw-apk-post .hssw-apk-primary-btn{width:100%!important;display:flex!important;align-items:center!important;justify-content:center!important;gap:12px!important;background:linear-gradient(180deg,#16b852,#169846)!important;color:#fff!important;border-radius:18px!important;box-shadow:0 14px 30px rgba(22,163,74,.22)!important;padding:16px 18px!important;min-height:72px!important;border:0!important;}
.hssw-post.hssw-apk-post .hssw-apk-primary-btn span:last-child{display:grid!important;line-height:1.1!important;text-align:center!important;}
.hssw-post.hssw-apk-post .hssw-apk-primary-btn strong{font-size:1.15rem!important;color:#fff!important;font-weight:900!important;}
.hssw-post.hssw-apk-post .hssw-apk-primary-btn small{font-size:.86rem!important;color:rgba(255,255,255,.88)!important;font-weight:700!important;}
.hssw-post.hssw-apk-post .hssw-apk-feature-grid{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:12px!important;padding:16px 20px 8px!important;}
.hssw-post.hssw-apk-post .hssw-apk-feature-tile{display:grid!important;gap:5px!important;place-items:center!important;text-align:center!important;padding:16px 12px!important;border:1px solid #e7efe8!important;background:#fafdfb!important;border-radius:18px!important;min-height:102px!important;}
.hssw-post.hssw-apk-post .hssw-apk-feature-icon{width:34px!important;height:34px!important;border-radius:999px!important;display:flex!important;align-items:center!important;justify-content:center!important;background:#effaf2!important;color:#169846!important;font-size:1rem!important;font-weight:900!important;}
.hssw-post.hssw-apk-post .hssw-apk-feature-tile strong{font-size:.92rem!important;color:#111827!important;font-weight:900!important;}
.hssw-post.hssw-apk-post .hssw-apk-feature-tile small{font-size:.78rem!important;color:#64748b!important;font-weight:700!important;}
.hssw-post.hssw-apk-post .hssw-apk-preview-shots{padding:8px 20px 22px!important;}
.hssw-post.hssw-apk-post .hssw-apk-section-head{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:12px!important;margin-bottom:12px!important;}
.hssw-post.hssw-apk-post .hssw-apk-section-head h2{margin:0!important;font-size:1.2rem!important;color:#111827!important;}
.hssw-post.hssw-apk-post .hssw-apk-section-head a{color:#15803d!important;font-weight:800!important;text-decoration:none!important;}
.hssw-post.hssw-apk-post .hssw-apk-shot-row{display:grid!important;grid-auto-flow:column!important;grid-auto-columns:minmax(148px, 180px)!important;gap:12px!important;overflow-x:auto!important;padding-bottom:6px!important;scrollbar-width:thin!important;}
.hssw-post.hssw-apk-post .hssw-apk-shot-card{margin:0!important;border-radius:18px!important;overflow:hidden!important;background:#f8fafc!important;box-shadow:0 8px 18px rgba(15,23,42,.08)!important;border:1px solid #edf2f7!important;}
.hssw-post.hssw-apk-post .hssw-apk-shot-card img{display:block!important;width:100%!important;aspect-ratio:9/16!important;object-fit:cover!important;background:#111827!important;}
.hssw-post.hssw-apk-post .hssw-body{display:grid!important;grid-template-columns:minmax(0,1.12fr) minmax(280px,.88fr)!important;gap:22px!important;margin-top:20px!important;align-items:start!important;}
.hssw-post.hssw-apk-post .hssw-main,.hssw-post.hssw-apk-post .hssw-sidebar{min-width:0!important;}
.hssw-post.hssw-apk-post .hssw-card,
.hssw-post.hssw-apk-post .hssw-side-card,
.hssw-post.hssw-apk-post .hssw-dl-top,
.hssw-post.hssw-apk-post .hssw-dl-bottom{background:#fff!important;border:1px solid #e7efe8!important;border-radius:24px!important;box-shadow:0 12px 32px rgba(15,23,42,.04)!important;}
.hssw-post.hssw-apk-post .hssw-sh{font-size:1.45rem!important;color:#111827!important;}
.hssw-post.hssw-apk-post .hssw-sh-ic{background:#effaf2!important;color:#169846!important;}
.hssw-post.hssw-apk-post .hssw-overview-card .hssw-feat-img img{max-width:100%!important;border-radius:22px!important;}
.hssw-post.hssw-apk-post .hssw-dl-top .hssw-dl-info strong,
.hssw-post.hssw-apk-post .hssw-dl-bottom .hssw-dl-info strong{color:#111827!important;}
.hssw-post.hssw-apk-post .hssw-dl-top .hssw-dl-info span,
.hssw-post.hssw-apk-post .hssw-dl-bottom .hssw-dl-info span{color:#64748b!important;}
.hssw-post.hssw-apk-post .hssw-dl-top .hssw-btn-acc,
.hssw-post.hssw-apk-post .hssw-dl-bottom .hssw-btn-red,
.hssw-post.hssw-apk-post .hssw-side-btn.hssw-btn-acc,
.hssw-post.hssw-apk-post .hssw-side-btn.hssw-btn-red{background:#16a34a!important;color:#fff!important;border:0!important;box-shadow:0 10px 24px rgba(22,163,74,.18)!important;}
.hssw-post.hssw-apk-post .hssw-side-card h3{color:#111827!important;}
.hssw-post.hssw-apk-post .hssw-sidebar ul li span{color:#64748b!important;}
.hssw-post.hssw-apk-post .hssw-sidebar ul li strong{color:#111827!important;}
.hssw-post.hssw-apk-post .hssw-screenshot-grid{grid-template-columns:repeat(auto-fit,minmax(170px,1fr))!important;gap:14px!important;}
.hssw-post.hssw-apk-post .hssw-shot{border-radius:18px!important;overflow:hidden!important;background:#f8fafc!important;border:1px solid #edf2f7!important;box-shadow:0 8px 18px rgba(15,23,42,.06)!important;}
.hssw-post.hssw-apk-post .hssw-shot img{aspect-ratio:9/16!important;object-fit:cover!important;}
.hssw-post.hssw-apk-post .hssw-apk-bottom-nav{display:none!important;}

@media (max-width: 1100px){
  .hssw-post.hssw-apk-post .hssw-body{grid-template-columns:1fr!important;}
}
@media (max-width: 820px){
  .hssw-post.hssw-apk-post .hssw-apk-app-head{grid-template-columns:88px minmax(0,1fr)!important;}
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{width:84px!important;height:84px!important;min-width:84px!important;border-radius:20px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  .hssw-post.hssw-apk-post .hssw-apk-stat-card:nth-child(2n){border-right:0!important;}
  .hssw-post.hssw-apk-post .hssw-apk-stat-card:nth-child(-n+2){border-bottom:1px solid #e7efe8!important;}
  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
}
@media (max-width: 640px){
  .hssw-post.hssw-apk-post{max-width:calc(100vw - 12px)!important;}
  .hssw-post.hssw-apk-post .hssw-apk-topbar{padding:16px 16px 12px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-breadcrumbs{padding:12px 16px 0!important;font-size:.78rem!important;}
  .hssw-post.hssw-apk-post .hssw-apk-app-head{grid-template-columns:76px minmax(0,1fr)!important;gap:14px!important;padding:16px 16px 6px!important;align-items:start!important;}
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{width:72px!important;height:72px!important;min-width:72px!important;border-radius:18px!important;}
  .hssw-post.hssw-apk-post .hssw-title{font-size:2rem!important;}
  .hssw-post.hssw-apk-post .hssw-apk-subtitle{font-size:.94rem!important;}
  .hssw-post.hssw-apk-post .hssw-apk-chip{font-size:.78rem!important;padding:6px 10px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{margin:10px 16px 0!important;}
  .hssw-post.hssw-apk-post .hssw-apk-stat-card{min-height:76px!important;padding:14px 8px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-main-download{padding:14px 16px 0!important;}
  .hssw-post.hssw-apk-post .hssw-apk-primary-btn{min-height:64px!important;border-radius:16px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{padding:14px 16px 6px!important;gap:10px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-feature-tile{min-height:94px!important;padding:14px 8px!important;border-radius:16px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-preview-shots{padding:8px 16px 18px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-shot-row{grid-auto-columns:minmax(132px, 148px)!important;}
  .hssw-post.hssw-apk-post .hssw-sidebar{display:none!important;}
  .hssw-post.hssw-apk-post .hssw-body{margin-top:16px!important;gap:16px!important;}
  .hssw-post.hssw-apk-post .hssw-card,
  .hssw-post.hssw-apk-post .hssw-dl-top,
  .hssw-post.hssw-apk-post .hssw-dl-bottom{border-radius:20px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-bottom-nav{
    position:sticky!important;bottom:0!important;z-index:25!important;display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;
    gap:4px!important;background:rgba(255,255,255,.97)!important;border:1px solid #e5efe7!important;border-radius:18px!important;
    padding:10px!important;box-shadow:0 -10px 30px rgba(15,23,42,.08)!important;margin:16px 0 2px!important;backdrop-filter:blur(10px)!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-bottom-nav a{display:flex!important;align-items:center!important;justify-content:center!important;min-height:44px!important;border-radius:12px!important;font-size:.78rem!important;font-weight:800!important;color:#64748b!important;text-decoration:none!important;padding:0 6px!important;text-align:center!important;}
  .hssw-post.hssw-apk-post .hssw-apk-bottom-nav a.is-active,
  .hssw-post.hssw-apk-post .hssw-apk-bottom-nav a:hover{background:#effbf2!important;color:#15803d!important;}
}

/* HSware v7.4.17: real APK frontend post layout fixes. PC layout untouched. */
.hssw-post.hssw-apk-post{
  --hssw-apk-green:#078b2f;
  --hssw-apk-green-dark:#04752b;
  --hssw-apk-soft:#f5fbf7;
  --hssw-apk-border:#e6eee8;
  max-width:min(1180px,calc(100vw - 32px))!important;
  margin-left:auto!important;
  margin-right:auto!important;
}
.hssw-post.hssw-apk-post .hssw-apk-header-shell{
  background:#fff!important;
  border:1px solid var(--hssw-apk-border)!important;
  border-radius:24px!important;
  box-shadow:0 10px 30px rgba(15,23,42,.05)!important;
  overflow:hidden!important;
  padding:0!important;
}
.hssw-post.hssw-apk-post .hssw-apk-topbar,
.hssw-post.hssw-apk-post .hssw-apk-brand,
.hssw-post.hssw-apk-post .hssw-apk-top-actions{display:none!important;}
.hssw-post.hssw-apk-post .hssw-apk-breadcrumbs{
  padding:18px 24px 0!important;
  margin:0!important;
  color:#6b7280!important;
  background:transparent!important;
  font-size:.86rem!important;
  font-weight:700!important;
}
.hssw-post.hssw-apk-post .hssw-apk-app-head{
  display:grid!important;
  grid-template-columns:118px minmax(0,1fr)!important;
  gap:22px!important;
  align-items:center!important;
  padding:22px 24px 12px!important;
}
.hssw-post.hssw-apk-post .hssw-apk-app-icon{
  width:112px!important;
  height:112px!important;
  min-width:112px!important;
  border-radius:24px!important;
  background:linear-gradient(135deg,#ef4444,#991b1b)!important;
  box-shadow:0 16px 28px rgba(15,23,42,.12)!important;
  overflow:hidden!important;
  display:grid!important;
  place-items:center!important;
  border:0!important;
}
.hssw-post.hssw-apk-post .hssw-apk-app-icon img{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  display:block!important;
  border-radius:inherit!important;
}
.hssw-post.hssw-apk-post .hssw-apk-default-icon{
  color:#fff!important;
  font-size:1.35rem!important;
  font-weight:900!important;
  letter-spacing:.04em!important;
}
.hssw-post.hssw-apk-post .hssw-apk-head-copy{min-width:0!important;}
.hssw-post.hssw-apk-post .hssw-title{
  margin:0 0 6px!important;
  color:#111827!important;
  font-size:clamp(1.65rem,3.2vw,2.45rem)!important;
  line-height:1.12!important;
  letter-spacing:-.025em!important;
  font-weight:900!important;
}
.hssw-post.hssw-apk-post .hssw-apk-subtitle{
  color:#475569!important;
  font-size:1.08rem!important;
  font-weight:700!important;
  margin:0 0 10px!important;
}
.hssw-post.hssw-apk-post .hssw-apk-chip-row{display:flex!important;align-items:center!important;gap:9px!important;flex-wrap:wrap!important;margin:0 0 8px!important;}
.hssw-post.hssw-apk-post .hssw-apk-chip{
  display:inline-flex!important;align-items:center!important;justify-content:center!important;
  border:1px solid #bde8c9!important;background:#f2fbf4!important;color:#138a3d!important;
  border-radius:999px!important;padding:5px 12px!important;font-size:.84rem!important;font-weight:900!important;line-height:1!important;
}
.hssw-post.hssw-apk-post .hssw-apk-chip.is-strong{background:#fff!important;color:#0b7d31!important;}
.hssw-post.hssw-apk-post .hssw-apk-rating-row{display:flex!important;align-items:center!important;gap:7px!important;color:#111827!important;font-size:.94rem!important;margin-top:4px!important;}
.hssw-post.hssw-apk-post .hssw-apk-rating-row strong{font-weight:900!important;}
.hssw-post.hssw-apk-post .hssw-apk-stars{color:#f59e0b!important;letter-spacing:1px!important;}
.hssw-post.hssw-apk-post .hssw-apk-rating-row em{font-style:normal!important;color:#64748b!important;font-weight:700!important;}
.hssw-post.hssw-apk-post .hssw-apk-stat-row{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:0!important;
  margin:14px 24px 0!important;
  border:1px solid var(--hssw-apk-border)!important;
  background:#f7fcf8!important;
  border-radius:18px!important;
  overflow:hidden!important;
}
.hssw-post.hssw-apk-post .hssw-apk-stat-card{
  min-height:76px!important;padding:14px 10px!important;background:transparent!important;
  border-right:1px solid var(--hssw-apk-border)!important;text-align:center!important;display:grid!important;place-items:center!important;gap:4px!important;
}
.hssw-post.hssw-apk-post .hssw-apk-stat-card:last-child{border-right:0!important;}
.hssw-post.hssw-apk-post .hssw-apk-stat-card strong{font-size:1rem!important;color:#111827!important;font-weight:900!important;line-height:1.15!important;}
.hssw-post.hssw-apk-post .hssw-apk-stat-card span{font-size:.82rem!important;color:#64748b!important;font-weight:800!important;}
.hssw-post.hssw-apk-post .hssw-apk-main-download{padding:18px 24px 0!important;margin:0!important;}
.hssw-post.hssw-apk-post .hssw-apk-primary-btn{
  width:100%!important;max-width:520px!important;min-height:58px!important;margin:0!important;
  border-radius:16px!important;background:linear-gradient(135deg,var(--hssw-apk-green),var(--hssw-apk-green-dark))!important;
  color:#fff!important;box-shadow:0 14px 28px rgba(7,139,47,.22)!important;display:flex!important;align-items:center!important;justify-content:center!important;gap:14px!important;
}
.hssw-post.hssw-apk-post .hssw-apk-primary-btn strong{font-size:1.08rem!important;line-height:1.05!important;}
.hssw-post.hssw-apk-post .hssw-apk-primary-btn small{font-size:.78rem!important;line-height:1.05!important;color:rgba(255,255,255,.88)!important;}
.hssw-post.hssw-apk-post .hssw-apk-feature-grid{
  display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:12px!important;
  padding:18px 24px 22px!important;margin:0!important;
}
.hssw-post.hssw-apk-post .hssw-apk-feature-tile{
  min-height:86px!important;padding:14px 10px!important;border-radius:16px!important;
  background:#f7fcf8!important;border:1px solid var(--hssw-apk-border)!important;box-shadow:none!important;
}
.hssw-post.hssw-apk-post .hssw-apk-feature-icon{background:#e9f8ee!important;color:#078b2f!important;}
.hssw-post.hssw-apk-post .hssw-apk-feature-tile strong{font-size:.88rem!important;}
.hssw-post.hssw-apk-post .hssw-apk-feature-tile small{font-size:.76rem!important;}
.hssw-post.hssw-apk-post .hssw-apk-preview-shots{padding:0 24px 24px!important;}
.hssw-post.hssw-apk-post .hssw-apk-section-head h2{font-size:1.2rem!important;}
.hssw-post.hssw-apk-post .hssw-apk-shot-row{grid-auto-columns:minmax(156px,185px)!important;gap:14px!important;}
.hssw-post.hssw-apk-post .hssw-body{grid-template-columns:minmax(0,1fr) minmax(260px,330px)!important;gap:22px!important;margin-top:22px!important;}
.hssw-post.hssw-apk-post .hssw-dl-top .hssw-dl-btns,
.hssw-post.hssw-apk-post .hssw-dl-bottom .hssw-dl-btns{justify-content:flex-start!important;}
.hssw-post.hssw-apk-post .hssw-dl-top .hssw-btn,
.hssw-post.hssw-apk-post .hssw-dl-bottom .hssw-btn{width:auto!important;min-width:180px!important;max-width:280px!important;}
.hssw-post.hssw-apk-post .hssw-comparison-card{display:none!important;}

@media (max-width: 820px){
  .hssw-post.hssw-apk-post{max-width:calc(100vw - 16px)!important;}
  .hssw-post.hssw-apk-post .hssw-apk-header-shell{border-radius:20px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-breadcrumbs{padding:14px 16px 0!important;font-size:.77rem!important;}
  .hssw-post.hssw-apk-post .hssw-apk-app-head{grid-template-columns:92px minmax(0,1fr)!important;gap:14px!important;padding:18px 16px 10px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{width:88px!important;height:88px!important;min-width:88px!important;border-radius:20px!important;}
  .hssw-post.hssw-apk-post .hssw-title{font-size:1.45rem!important;line-height:1.15!important;}
  .hssw-post.hssw-apk-post .hssw-apk-subtitle{font-size:.96rem!important;margin-bottom:8px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-chip{font-size:.75rem!important;padding:5px 9px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-rating-row{font-size:.86rem!important;gap:5px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{margin:12px 16px 0!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;}
  .hssw-post.hssw-apk-post .hssw-apk-stat-card{min-height:70px!important;padding:12px 6px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-stat-card strong{font-size:.92rem!important;}
  .hssw-post.hssw-apk-post .hssw-apk-stat-card span{font-size:.73rem!important;}
  .hssw-post.hssw-apk-post .hssw-apk-main-download{padding:14px 16px 0!important;}
  .hssw-post.hssw-apk-post .hssw-apk-primary-btn{max-width:none!important;min-height:56px!important;border-radius:14px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:8px!important;padding:14px 16px 18px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-feature-tile{min-height:76px!important;padding:10px 5px!important;border-radius:14px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-feature-icon{width:28px!important;height:28px!important;font-size:.85rem!important;}
  .hssw-post.hssw-apk-post .hssw-apk-feature-tile strong{font-size:.72rem!important;line-height:1.1!important;}
  .hssw-post.hssw-apk-post .hssw-apk-feature-tile small{font-size:.67rem!important;line-height:1.1!important;}
  .hssw-post.hssw-apk-post .hssw-apk-preview-shots{padding:0 16px 18px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-shot-row{grid-auto-columns:minmax(124px,142px)!important;}
  .hssw-post.hssw-apk-post .hssw-body{grid-template-columns:1fr!important;gap:16px!important;margin-top:16px!important;}
  .hssw-post.hssw-apk-post .hssw-sidebar{display:none!important;}
}
@media (max-width: 390px){
  .hssw-post.hssw-apk-post .hssw-apk-app-head{grid-template-columns:82px minmax(0,1fr)!important;gap:12px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{width:78px!important;height:78px!important;min-width:78px!important;}
  .hssw-post.hssw-apk-post .hssw-title{font-size:1.28rem!important;}
  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
}

/* HSware v7.4.18: APK post cleanup. Theme owns breadcrumbs/header; APK icon/cards/screenshots are tuned here. */
.hssw-post.hssw-apk-post .hssw-apk-breadcrumbs{
  display:none!important;
}
.hssw-post.hssw-apk-post .hssw-apk-header-shell{
  background:#fff!important;
  border:1px solid rgba(15,23,42,.08)!important;
  border-radius:24px!important;
  box-shadow:0 12px 32px rgba(15,23,42,.06)!important;
  overflow:hidden!important;
}
.hssw-post.hssw-apk-post .hssw-apk-app-head{
  grid-template-columns:132px minmax(0,1fr)!important;
  gap:24px!important;
  padding:28px 30px 14px!important;
  align-items:center!important;
}
.hssw-post.hssw-apk-post .hssw-apk-app-icon{
  width:126px!important;
  height:126px!important;
  min-width:126px!important;
  border-radius:26px!important;
  background:#f8fafc!important;
  box-shadow:0 14px 30px rgba(15,23,42,.08)!important;
  border:1px solid rgba(15,23,42,.08)!important;
}
.hssw-post.hssw-apk-post .hssw-apk-app-icon img{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  border-radius:inherit!important;
}
.hssw-post.hssw-apk-post .hssw-apk-default-icon{
  font-size:1.6rem!important;
}
.hssw-post.hssw-apk-post .hssw-title{
  font-size:clamp(1.65rem,2.4vw,2.35rem)!important;
  line-height:1.1!important;
  margin:0 0 7px!important;
  letter-spacing:-.035em!important;
}
.hssw-post.hssw-apk-post .hssw-apk-subtitle{
  color:#4b5563!important;
  font-size:1rem!important;
  margin-bottom:10px!important;
}
.hssw-post.hssw-apk-post .hssw-apk-stat-row{
  margin:14px 30px 0!important;
  border-radius:18px!important;
}
.hssw-post.hssw-apk-post .hssw-apk-stat-card{
  min-height:68px!important;
  padding:11px 8px!important;
}
.hssw-post.hssw-apk-post .hssw-apk-main-download{
  padding:16px 30px 0!important;
}
.hssw-post.hssw-apk-post .hssw-apk-primary-btn{
  max-width:380px!important;
  width:100%!important;
  min-height:54px!important;
  margin:0!important;
}
.hssw-post.hssw-apk-post .hssw-apk-feature-grid{
  padding:16px 30px 24px!important;
  gap:10px!important;
}
.hssw-post.hssw-apk-post .hssw-apk-feature-tile{
  min-height:74px!important;
  padding:11px 8px!important;
}
.hssw-post.hssw-apk-post .hssw-apk-preview-shots{
  display:none!important;
}
.hssw-post.hssw-apk-post .hssw-apk-lower-screenshots{
  padding:22px!important;
  overflow:hidden!important;
}
.hssw-post.hssw-apk-post .hssw-apk-lower-screenshots .hssw-apk-section-head{
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:12px!important;
  margin-bottom:16px!important;
}
.hssw-post.hssw-apk-post .hssw-apk-lower-screenshots .hssw-apk-section-head h2{
  margin:0!important;
  font-size:1.25rem!important;
  color:#111827!important;
  font-weight:900!important;
}
.hssw-post.hssw-apk-post .hssw-apk-lower-screenshots .hssw-apk-section-head span{
  color:#64748b!important;
  font-size:.8rem!important;
  font-weight:800!important;
}
.hssw-post.hssw-apk-post .hssw-apk-lower-screenshots .hssw-apk-shot-row{
  display:grid!important;
  grid-auto-flow:column!important;
  grid-auto-columns:minmax(150px,180px)!important;
  gap:14px!important;
  overflow-x:auto!important;
  scroll-snap-type:x mandatory!important;
  padding-bottom:8px!important;
  -webkit-overflow-scrolling:touch!important;
}
.hssw-post.hssw-apk-post .hssw-apk-lower-screenshots .hssw-apk-shot-card{
  scroll-snap-align:start!important;
  margin:0!important;
  border-radius:18px!important;
  overflow:hidden!important;
  background:#f8fafc!important;
  border:1px solid rgba(15,23,42,.08)!important;
  box-shadow:0 10px 24px rgba(15,23,42,.06)!important;
}
.hssw-post.hssw-apk-post .hssw-apk-lower-screenshots img{
  width:100%!important;
  aspect-ratio:9/16!important;
  object-fit:cover!important;
  display:block!important;
}
.hssw-post.hssw-apk-post .hssw-apk-lower-screenshots figcaption{
  padding:9px 10px!important;
  color:#475569!important;
  font-size:.78rem!important;
  font-weight:700!important;
}
.hssw-post.hssw-apk-post .hssw-dl-top .hssw-dl-btns,
.hssw-post.hssw-apk-post .hssw-dl-bottom .hssw-dl-btns{
  align-items:center!important;
}
.hssw-post.hssw-apk-post .hssw-dl-top .hssw-btn,
.hssw-post.hssw-apk-post .hssw-dl-bottom .hssw-btn{
  max-width:280px!important;
}
@media (min-width: 821px){
  .hssw-post.hssw-apk-post .hssw-apk-lower-screenshots .hssw-apk-shot-row{
    grid-auto-flow:initial!important;
    grid-template-columns:repeat(auto-fit,minmax(155px,1fr))!important;
    overflow:visible!important;
  }
}
@media (max-width: 820px){
  .hssw-post.hssw-apk-post .hssw-apk-header-shell{
    border-radius:18px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    grid-template-columns:104px minmax(0,1fr)!important;
    gap:14px!important;
    padding:18px 16px 10px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width:98px!important;
    height:98px!important;
    min-width:98px!important;
    border-radius:21px!important;
  }
  .hssw-post.hssw-apk-post .hssw-title{
    font-size:1.38rem!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    margin:12px 16px 0!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-main-download{
    padding:14px 16px 0!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-primary-btn{
    max-width:none!important;
    min-height:56px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{
    padding:14px 16px 18px!important;
  }
}
@media (max-width: 390px){
  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    grid-template-columns:92px minmax(0,1fr)!important;
    gap:11px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width:88px!important;
    height:88px!important;
    min-width:88px!important;
  }
  .hssw-post.hssw-apk-post .hssw-title{
    font-size:1.24rem!important;
  }
}

/* HSware v7.4.19: APK frontend polish after real-device review. PC layout untouched. */
.hssw-post.hssw-apk-post{
  padding-top:14px!important;
}
.hssw-post.hssw-apk-post .hssw-apk-header-shell{
  max-width:840px!important;
  margin:0 auto 0!important;
  border-radius:24px!important;
}
.hssw-post.hssw-apk-post .hssw-apk-app-head{
  max-width:760px!important;
  margin:0 auto!important;
  grid-template-columns:148px minmax(0,1fr)!important;
  gap:26px!important;
  padding:30px 30px 12px!important;
  align-items:center!important;
}
.hssw-post.hssw-apk-post .hssw-apk-app-icon{
  width:140px!important;
  height:140px!important;
  min-width:140px!important;
  border-radius:30px!important;
  box-shadow:0 18px 36px rgba(15,23,42,.10)!important;
}
.hssw-post.hssw-apk-post .hssw-apk-subtitle{
  display:none!important;
}
.hssw-post.hssw-apk-post .hssw-title{
  font-size:clamp(1.75rem,2.1vw,2.25rem)!important;
  line-height:1.08!important;
  margin-bottom:12px!important;
  max-width:560px!important;
}
.hssw-post.hssw-apk-post .hssw-apk-chip-row{
  margin-bottom:13px!important;
}
.hssw-post.hssw-apk-post .hssw-apk-chip{
  padding:6px 13px!important;
  font-size:.82rem!important;
}
.hssw-post.hssw-apk-post .hssw-apk-rating-row{
  margin-top:2px!important;
}
.hssw-post.hssw-apk-post .hssw-apk-stat-row,
.hssw-post.hssw-apk-post .hssw-apk-main-download,
.hssw-post.hssw-apk-post .hssw-apk-feature-grid{
  max-width:760px!important;
  margin-left:auto!important;
  margin-right:auto!important;
}
.hssw-post.hssw-apk-post .hssw-apk-stat-row{
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  margin-top:14px!important;
}
.hssw-post.hssw-apk-post .hssw-apk-stat-card{
  min-height:66px!important;
  padding:10px 8px!important;
}
.hssw-post.hssw-apk-post .hssw-apk-stat-card strong{
  font-size:1.02rem!important;
}
.hssw-post.hssw-apk-post .hssw-apk-main-download{
  padding-top:16px!important;
}
.hssw-post.hssw-apk-post .hssw-apk-primary-btn{
  max-width:420px!important;
  min-height:54px!important;
  border-radius:15px!important;
}
.hssw-post.hssw-apk-post .hssw-apk-feature-grid{
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  padding-top:16px!important;
}
.hssw-post.hssw-apk-post .hssw-apk-feature-tile{
  min-height:78px!important;
  border-radius:15px!important;
}
.hssw-post.hssw-apk-post .hssw-apk-feature-tile strong{
  font-size:.84rem!important;
  line-height:1.15!important;
}
.hssw-post.hssw-apk-post .hssw-apk-feature-tile small{
  font-size:.72rem!important;
}
.hssw-post.hssw-apk-post .hssw-body{
  margin-top:22px!important;
}
.hssw-post.hssw-apk-post .hssw-overview-card{
  overflow:hidden!important;
}
.hssw-post.hssw-apk-post .hssw-apk-overview-screenshots{
  margin:0 0 22px!important;
  padding:0 0 20px!important;
  border-bottom:1px solid #edf2f0!important;
}
.hssw-post.hssw-apk-post .hssw-apk-overview-screenshots .hssw-apk-section-head{
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:12px!important;
  margin:0 0 14px!important;
}
.hssw-post.hssw-apk-post .hssw-apk-overview-screenshots .hssw-apk-section-head h2{
  margin:0!important;
  color:#111827!important;
  font-size:1.18rem!important;
  font-weight:900!important;
}
.hssw-post.hssw-apk-post .hssw-apk-overview-screenshots .hssw-apk-section-head span{
  color:#64748b!important;
  font-weight:800!important;
  font-size:.78rem!important;
}
.hssw-post.hssw-apk-post .hssw-apk-overview-screenshots .hssw-apk-shot-row{
  display:grid!important;
  grid-auto-flow:column!important;
  grid-auto-columns:minmax(150px,175px)!important;
  gap:14px!important;
  overflow-x:auto!important;
  scroll-snap-type:x mandatory!important;
  padding:2px 2px 10px!important;
  -webkit-overflow-scrolling:touch!important;
}
.hssw-post.hssw-apk-post .hssw-apk-overview-screenshots .hssw-apk-shot-card{
  margin:0!important;
  border-radius:18px!important;
  overflow:hidden!important;
  background:#f8fafc!important;
  border:1px solid rgba(15,23,42,.08)!important;
  box-shadow:0 10px 24px rgba(15,23,42,.06)!important;
  scroll-snap-align:start!important;
}
.hssw-post.hssw-apk-post .hssw-apk-overview-screenshots img{
  width:100%!important;
  aspect-ratio:9/16!important;
  object-fit:cover!important;
  display:block!important;
}
.hssw-post.hssw-apk-post .hssw-apk-overview-screenshots figcaption{
  padding:8px 10px!important;
  color:#475569!important;
  font-size:.76rem!important;
  font-weight:700!important;
}
.hssw-post.hssw-apk-post .hssw-apk-lower-screenshots{
  display:none!important;
}
.hssw-post.hssw-apk-post .hssw-dl-top .hssw-btn,
.hssw-post.hssw-apk-post .hssw-dl-bottom .hssw-btn{
  border-radius:14px!important;
  min-height:48px!important;
}
.hssw-post.hssw-apk-post .hssw-apk-bottom-nav{
  padding:8px!important;
  gap:6px!important;
  border-radius:18px!important;
}
.hssw-post.hssw-apk-post .hssw-apk-bottom-nav a{
  min-height:38px!important;
  font-size:.72rem!important;
  border-radius:11px!important;
  line-height:1.1!important;
}
@media (min-width: 821px){
  .hssw-post.hssw-apk-post .hssw-apk-overview-screenshots .hssw-apk-shot-row{
    grid-auto-flow:initial!important;
    grid-template-columns:repeat(auto-fit,minmax(150px,1fr))!important;
    overflow:visible!important;
  }
}
@media (max-width: 820px){
  .hssw-post.hssw-apk-post{
    padding-top:12px!important;
    max-width:calc(100vw - 10px)!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-header-shell{
    border-radius:18px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    grid-template-columns:112px minmax(0,1fr)!important;
    gap:14px!important;
    padding:24px 16px 10px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width:106px!important;
    height:106px!important;
    min-width:106px!important;
    border-radius:22px!important;
  }
  .hssw-post.hssw-apk-post .hssw-title{
    font-size:1.42rem!important;
    line-height:1.1!important;
    margin-bottom:9px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-chip-row{
    gap:7px!important;
    margin-bottom:10px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-chip{
    padding:5px 9px!important;
    font-size:.73rem!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-rating-row{
    font-size:.82rem!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    margin:12px 16px 0!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-stat-card{
    min-height:64px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-main-download{
    padding:14px 16px 0!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-primary-btn{
    max-width:none!important;
    width:100%!important;
    min-height:56px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    padding:14px 16px 18px!important;
  }
}
@media (max-width: 420px){
  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    grid-template-columns:102px minmax(0,1fr)!important;
    gap:12px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width:96px!important;
    height:96px!important;
    min-width:96px!important;
    border-radius:21px!important;
  }
  .hssw-post.hssw-apk-post .hssw-title{
    font-size:1.25rem!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-overview-screenshots .hssw-apk-shot-row{
    grid-auto-columns:minmax(118px,138px)!important;
  }
}


/* HSware v7.4.20: APK hero responsive alignment. PC software layout remains untouched. */
@media (min-width: 821px){
  .hssw-post.hssw-apk-post .hssw-apk-header-shell{
    max-width: 980px!important;
    padding: 0!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    max-width: 780px!important;
    grid-template-columns: 158px minmax(0,1fr)!important;
    gap: 28px!important;
    align-items: center!important;
    justify-content: center!important;
    padding: 34px 34px 16px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width: 150px!important;
    height: 150px!important;
    min-width: 150px!important;
    border-radius: 32px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-head-copy{
    text-align: left!important;
  }
  .hssw-post.hssw-apk-post .hssw-title{
    font-size: clamp(1.85rem, 2vw, 2.35rem)!important;
    max-width: 560px!important;
    margin-bottom: 14px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-chip-row{
    justify-content: flex-start!important;
    margin-bottom: 0!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-rating-row{
    display: none!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    max-width: 720px!important;
    margin-top: 16px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-main-download{
    max-width: 720px!important;
    padding-top: 16px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-primary-btn{
    max-width: 360px!important;
    min-height: 54px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{
    grid-template-columns: repeat(2,minmax(0,1fr))!important;
    max-width: 520px!important;
    padding-top: 16px!important;
    padding-bottom: 28px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-tile{
    min-height: 92px!important;
    padding: 14px 12px!important;
  }
}
@media (max-width: 820px){
  .hssw-post.hssw-apk-post .hssw-apk-header-shell{
    border-radius: 20px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    display: grid!important;
    grid-template-columns: 1fr!important;
    justify-items: center!important;
    text-align: center!important;
    gap: 12px!important;
    padding: 22px 18px 10px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width: 122px!important;
    height: 122px!important;
    min-width: 122px!important;
    border-radius: 27px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-head-copy{
    display: grid!important;
    justify-items: center!important;
    text-align: center!important;
    width: 100%!important;
  }
  .hssw-post.hssw-apk-post .hssw-title{
    font-size: 1.52rem!important;
    line-height: 1.12!important;
    margin: 4px auto 10px!important;
    max-width: 92%!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-chip-row{
    justify-content: center!important;
    gap: 8px!important;
    margin-bottom: 10px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-rating-row{
    justify-content: center!important;
    margin-top: 0!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    margin: 13px 16px 0!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{
    grid-template-columns: repeat(2,minmax(0,1fr))!important;
  }
}
@media (max-width: 420px){
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width: 112px!important;
    height: 112px!important;
    min-width: 112px!important;
    border-radius: 25px!important;
  }
  .hssw-post.hssw-apk-post .hssw-title{
    font-size: 1.36rem!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-chip{
    font-size: .72rem!important;
    padding: 5px 9px!important;
  }
}

/* HSware v7.4.21: APK icon + desktop hero alignment polish. PC software layout remains untouched. */
@media (min-width: 821px){
  .hssw-post.hssw-apk-post .hssw-apk-header-shell{
    max-width: 1040px!important;
    padding: 34px 38px 34px!important;
    display: grid!important;
    grid-template-columns: minmax(360px, 430px) minmax(360px, 1fr)!important;
    gap: 24px 34px!important;
    align-items: start!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    grid-column: 1!important;
    grid-row: 1 / span 3!important;
    max-width: none!important;
    width: 100%!important;
    margin: 0!important;
    padding: 0!important;
    grid-template-columns: 176px minmax(0,1fr)!important;
    gap: 26px!important;
    align-items: center!important;
    justify-content: start!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width: 168px!important;
    height: 168px!important;
    min-width: 168px!important;
    border-radius: 36px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-head-copy{
    text-align: left!important;
    align-self: center!important;
  }
  .hssw-post.hssw-apk-post .hssw-title{
    font-size: clamp(2rem, 2.25vw, 2.65rem)!important;
    max-width: 520px!important;
    margin: 0 0 14px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-chip-row{
    justify-content: flex-start!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    grid-column: 2!important;
    grid-row: 1!important;
    max-width: none!important;
    width: 100%!important;
    margin: 0!important;
    align-self: start!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-stat-card{
    min-height: 72px!important;
    padding: 12px 8px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-main-download{
    grid-column: 2!important;
    grid-row: 2!important;
    max-width: none!important;
    width: 100%!important;
    margin: 0!important;
    padding: 0!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-primary-btn{
    max-width: 360px!important;
    min-height: 56px!important;
    margin: 0!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{
    grid-column: 2!important;
    grid-row: 3!important;
    grid-template-columns: repeat(2,minmax(0,1fr))!important;
    max-width: none!important;
    width: 100%!important;
    margin: 0!important;
    padding: 0!important;
    gap: 12px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-tile{
    min-height: 86px!important;
    padding: 14px 12px!important;
    display: grid!important;
    place-items: center!important;
    text-align: center!important;
  }
}
@media (max-width: 820px){
  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    padding-top: 24px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width: 142px!important;
    height: 142px!important;
    min-width: 142px!important;
    border-radius: 31px!important;
  }
  .hssw-post.hssw-apk-post .hssw-title{
    margin-top: 8px!important;
  }
}
@media (max-width: 420px){
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width: 132px!important;
    height: 132px!important;
    min-width: 132px!important;
    border-radius: 29px!important;
  }
}
@media (max-width: 360px){
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width: 122px!important;
    height: 122px!important;
    min-width: 122px!important;
    border-radius: 27px!important;
  }
}

/* HSware v7.4.22: APK desktop structure + one-button cleanup. PC software layout untouched. */
.hssw-post.hssw-apk-post .hssw-apk-bottom-nav,
.hssw-post.hssw-apk-post .hssw-dl-top,
.hssw-post.hssw-apk-post .hssw-dl-bottom{display:none!important;}

@media (min-width: 821px){
  .hssw-post.hssw-apk-post .hssw-apk-header-shell{
    max-width:min(1220px,calc(100vw - 64px))!important;
    margin:0 auto!important;
    padding:34px 40px!important;
    display:block!important;
    border-radius:24px!important;
    overflow:visible!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    max-width:none!important;
    width:100%!important;
    margin:0!important;
    padding:0!important;
    display:grid!important;
    grid-template-columns:260px minmax(0,1fr)!important;
    gap:34px!important;
    align-items:start!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width:240px!important;
    height:240px!important;
    min-width:240px!important;
    border-radius:26px!important;
    align-self:start!important;
    box-shadow:0 18px 38px rgba(15,23,42,.10)!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-head-copy{
    min-width:0!important;
    width:100%!important;
    display:grid!important;
    gap:0!important;
    text-align:left!important;
    justify-items:start!important;
    padding-top:2px!important;
  }
  .hssw-post.hssw-apk-post .hssw-title{
    font-size:clamp(2.35rem,3vw,3.55rem)!important;
    line-height:1.04!important;
    letter-spacing:-.045em!important;
    margin:0 0 18px!important;
    max-width:900px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-chip-row{
    justify-content:flex-start!important;
    gap:10px!important;
    margin:0 0 22px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-chip{
    min-width:86px!important;
    padding:8px 16px!important;
    font-size:.88rem!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-rating-row{display:none!important;}
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    width:100%!important;
    max-width:760px!important;
    margin:0 0 22px!important;
    display:grid!important;
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    border-radius:16px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-stat-card{
    min-height:74px!important;
    padding:13px 10px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-stat-card strong{font-size:1.08rem!important;}
  .hssw-post.hssw-apk-post .hssw-apk-stat-card span{font-size:.82rem!important;}
  .hssw-post.hssw-apk-post .hssw-apk-main-download{
    width:100%!important;
    max-width:760px!important;
    margin:0 0 22px!important;
    padding:0!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-primary-btn{
    width:100%!important;
    max-width:430px!important;
    min-height:58px!important;
    border-radius:18px!important;
    margin:0!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{
    width:100%!important;
    max-width:520px!important;
    margin:0!important;
    padding:0!important;
    display:grid!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:12px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-tile{
    min-height:92px!important;
    padding:14px 12px!important;
    border-radius:16px!important;
  }
}

@media (max-width: 820px){
  .hssw-post.hssw-apk-post .hssw-apk-header-shell{
    padding:0!important;
    border-radius:20px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    display:grid!important;
    grid-template-columns:1fr!important;
    justify-items:center!important;
    text-align:center!important;
    gap:13px!important;
    padding:22px 16px 18px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width:152px!important;
    height:152px!important;
    min-width:152px!important;
    border-radius:32px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-head-copy{
    display:grid!important;
    justify-items:center!important;
    width:100%!important;
    text-align:center!important;
  }
  .hssw-post.hssw-apk-post .hssw-title{
    font-size:1.62rem!important;
    line-height:1.12!important;
    margin:4px auto 11px!important;
    max-width:94%!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-chip-row{
    justify-content:center!important;
    gap:8px!important;
    margin:0 0 10px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-rating-row{
    justify-content:center!important;
    margin:0 0 13px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    width:100%!important;
    margin:0 0 14px!important;
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-main-download{
    width:100%!important;
    margin:0 0 14px!important;
    padding:0!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-primary-btn{
    max-width:none!important;
    width:100%!important;
    min-height:58px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{
    width:100%!important;
    padding:0!important;
    margin:0!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:10px!important;
  }
}
@media (max-width: 420px){
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width:142px!important;
    height:142px!important;
    min-width:142px!important;
    border-radius:30px!important;
  }
  .hssw-post.hssw-apk-post .hssw-title{font-size:1.42rem!important;}
  .hssw-post.hssw-apk-post .hssw-apk-stat-card{padding:11px 5px!important;}
}

.hssw-post.hssw-apk-post .hssw-related-section .hssw-related-grid{
  display:grid!important;
  grid-template-columns:repeat(auto-fit,minmax(118px,1fr))!important;
  gap:14px!important;
}
.hssw-post.hssw-apk-post .hssw-related-section .hssw-rel-card{
  display:grid!important;
  justify-items:center!important;
  text-align:center!important;
  gap:10px!important;
  padding:14px!important;
  border:1px solid #e7efe8!important;
  border-radius:18px!important;
  background:#fff!important;
  text-decoration:none!important;
  box-shadow:0 8px 20px rgba(15,23,42,.04)!important;
}
.hssw-post.hssw-apk-post .hssw-related-section .hssw-rel-thumb{
  width:72px!important;
  height:72px!important;
  border-radius:16px!important;
  overflow:hidden!important;
  display:grid!important;
  place-items:center!important;
  background:#f8fafc!important;
  margin:0!important;
}
.hssw-post.hssw-apk-post .hssw-related-section .hssw-rel-thumb img{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  display:block!important;
}
.hssw-post.hssw-apk-post .hssw-related-section .hssw-rel-body p{
  margin:0!important;
  color:#111827!important;
  font-size:.88rem!important;
  font-weight:900!important;
  line-height:1.25!important;
}


/* HSware v7.4.23: Exact desktop APK mockup match. APK layout only. PC software layout untouched. */
.hssw-post.hssw-apk-post .hssw-apk-bottom-nav,
.hssw-post.hssw-apk-post .hssw-apk-breadcrumbs,
.hssw-post.hssw-apk-post .hssw-dl-top,
.hssw-post.hssw-apk-post .hssw-dl-bottom,
.hssw-post.hssw-apk-post .hssw-sidebar .hssw-download-card,
.hssw-post.hssw-apk-post .hssw-sidebar .hssw-direct-card{display:none!important;}

@media (min-width: 921px){
  .hssw-post.hssw-apk-post .hssw-apk-header-shell{
    box-sizing:border-box!important;
    width:min(1180px,calc(100vw - 72px))!important;
    max-width:min(1180px,calc(100vw - 72px))!important;
    margin:0 auto 30px!important;
    padding:36px!important;
    background:#fff!important;
    border:1px solid rgba(15,23,42,.07)!important;
    border-radius:28px!important;
    box-shadow:0 18px 50px rgba(15,23,42,.055)!important;
    overflow:visible!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    box-sizing:border-box!important;
    width:100%!important;
    max-width:none!important;
    margin:0!important;
    padding:0!important;
    display:grid!important;
    grid-template-columns:300px minmax(0,1fr)!important;
    gap:42px!important;
    align-items:center!important;
    justify-content:start!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    box-sizing:border-box!important;
    width:280px!important;
    height:280px!important;
    min-width:280px!important;
    max-width:280px!important;
    margin:0!important;
    align-self:center!important;
    justify-self:start!important;
    border-radius:22px!important;
    overflow:hidden!important;
    background:#f4f8f5!important;
    box-shadow:0 16px 36px rgba(15,23,42,.10)!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-icon img{
    width:100%!important;
    height:100%!important;
    object-fit:cover!important;
    display:block!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-head-copy{
    box-sizing:border-box!important;
    width:100%!important;
    max-width:820px!important;
    min-width:0!important;
    padding:0!important;
    margin:0!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:flex-start!important;
    justify-content:center!important;
    text-align:left!important;
    gap:0!important;
  }
  .hssw-post.hssw-apk-post .hssw-title{
    width:100%!important;
    margin:0 0 18px!important;
    padding:0!important;
    font-size:42px!important;
    line-height:1.08!important;
    font-weight:900!important;
    letter-spacing:-.04em!important;
    color:#111827!important;
    text-align:left!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-subtitle,
  .hssw-post.hssw-apk-post .hssw-apk-rating-row{display:none!important;}
  .hssw-post.hssw-apk-post .hssw-apk-chip-row{
    width:100%!important;
    margin:0 0 18px!important;
    padding:0!important;
    display:flex!important;
    flex-wrap:wrap!important;
    align-items:center!important;
    justify-content:flex-start!important;
    gap:12px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-chip{
    box-sizing:border-box!important;
    height:34px!important;
    min-width:0!important;
    width:auto!important;
    padding:0 18px!important;
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    border-radius:999px!important;
    font-size:14px!important;
    line-height:1!important;
    font-weight:800!important;
    white-space:nowrap!important;
    color:#137a3f!important;
    background:#edf9f0!important;
    border:1px solid #d8efdf!important;
    box-shadow:none!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-chip.is-strong{background:#e6f7ea!important;color:#0f7337!important;}
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    box-sizing:border-box!important;
    width:100%!important;
    max-width:820px!important;
    margin:0 0 20px!important;
    padding:0!important;
    display:grid!important;
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:0!important;
    background:#f8fcf9!important;
    border:1px solid #e5eee8!important;
    border-radius:18px!important;
    overflow:hidden!important;
    box-shadow:none!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-stat-card{
    box-sizing:border-box!important;
    min-height:86px!important;
    height:auto!important;
    padding:18px 20px!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;
    gap:7px!important;
    text-align:center!important;
    background:transparent!important;
    border:0!important;
    border-right:1px solid #e5eee8!important;
    border-radius:0!important;
    box-shadow:none!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-stat-card:last-child{border-right:0!important;}
  .hssw-post.hssw-apk-post .hssw-apk-stat-card strong{
    font-size:20px!important;
    line-height:1.1!important;
    font-weight:900!important;
    color:#111827!important;
    white-space:normal!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-stat-card span{
    font-size:13px!important;
    line-height:1.1!important;
    font-weight:800!important;
    color:#64748b!important;
    text-transform:none!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-main-download{
    box-sizing:border-box!important;
    width:100%!important;
    max-width:820px!important;
    margin:0 0 18px!important;
    padding:0!important;
    display:block!important;
    text-align:left!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-primary-btn{
    box-sizing:border-box!important;
    width:420px!important;
    max-width:100%!important;
    height:64px!important;
    min-height:64px!important;
    margin:0!important;
    padding:0 26px!important;
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    gap:12px!important;
    border-radius:18px!important;
    font-size:16px!important;
    box-shadow:0 12px 28px rgba(35,167,86,.22)!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-primary-btn strong{font-size:16px!important;font-weight:900!important;line-height:1.1!important;}
  .hssw-post.hssw-apk-post .hssw-apk-primary-btn small{font-size:12px!important;font-weight:700!important;opacity:.9!important;}
  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{
    box-sizing:border-box!important;
    width:100%!important;
    max-width:420px!important;
    margin:0!important;
    padding:0!important;
    display:grid!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:12px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-tile{
    box-sizing:border-box!important;
    min-height:82px!important;
    padding:13px 12px!important;
    border-radius:16px!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;
    text-align:center!important;
    gap:5px!important;
    background:#fbfdfb!important;
    border:1px solid #e7efe8!important;
    box-shadow:0 8px 20px rgba(15,23,42,.035)!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-tile strong{font-size:13px!important;font-weight:900!important;line-height:1.1!important;}
  .hssw-post.hssw-apk-post .hssw-apk-feature-tile small{font-size:11px!important;font-weight:700!important;color:#64748b!important;}
}

@media (min-width: 921px) and (max-width: 1100px){
  .hssw-post.hssw-apk-post .hssw-apk-header-shell{width:min(1060px,calc(100vw - 44px))!important;padding:28px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-app-head{grid-template-columns:240px minmax(0,1fr)!important;gap:30px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{width:220px!important;height:220px!important;min-width:220px!important;max-width:220px!important;}
  .hssw-post.hssw-apk-post .hssw-title{font-size:34px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-stat-card{padding:15px 12px!important;}
}

@media (max-width: 920px){
  .hssw-post.hssw-apk-post .hssw-apk-header-shell{
    width:100%!important;
    max-width:100%!important;
    margin:0 auto 18px!important;
    padding:0!important;
    border-radius:22px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:flex-start!important;
    text-align:center!important;
    gap:0!important;
    padding:24px 18px 20px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width:158px!important;
    height:158px!important;
    min-width:158px!important;
    max-width:158px!important;
    margin:0 auto 14px!important;
    border-radius:32px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-head-copy{width:100%!important;display:flex!important;flex-direction:column!important;align-items:center!important;text-align:center!important;}
  .hssw-post.hssw-apk-post .hssw-title{
    font-size:26px!important;
    line-height:1.12!important;
    margin:0 auto 12px!important;
    text-align:center!important;
    max-width:96%!important;
    letter-spacing:-.025em!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-chip-row{justify-content:center!important;gap:8px!important;margin:0 0 10px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-chip{height:32px!important;padding:0 13px!important;font-size:12px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-rating-row{display:flex!important;justify-content:center!important;margin:0 0 12px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{width:100%!important;max-width:100%!important;margin:0 0 14px!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;}
  .hssw-post.hssw-apk-post .hssw-apk-stat-card{min-height:72px!important;padding:12px 6px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-stat-card strong{font-size:14px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-stat-card span{font-size:11px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-main-download{width:100%!important;margin:0 0 14px!important;padding:0!important;}
  .hssw-post.hssw-apk-post .hssw-apk-primary-btn{width:100%!important;max-width:none!important;height:58px!important;min-height:58px!important;border-radius:16px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{width:100%!important;max-width:none!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important;}
}

@media (max-width: 420px){
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{width:150px!important;height:150px!important;min-width:150px!important;max-width:150px!important;}
  .hssw-post.hssw-apk-post .hssw-title{font-size:23px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-stat-card strong{font-size:12.5px!important;}
  .hssw-post.hssw-apk-post .hssw-apk-stat-card span{font-size:10px!important;}
}


/* HSware v7.4.24: exact APK desktop hero alignment refinement.
   Desktop: big icon left, info column center, 2x2 feature boxes on right.
   Mobile: icon on top, title/chips/stats/button stacked underneath. */
.hssw-post.hssw-apk-post .hssw-apk-app-head{
  grid-template-columns:260px minmax(0,1fr)!important;
  align-items:start!important;
  gap:34px!important;
  padding:32px 28px 18px!important;
}
.hssw-post.hssw-apk-post .hssw-apk-app-icon{
  width:240px!important;
  height:240px!important;
  min-width:240px!important;
  border-radius:28px!important;
  align-self:start!important;
}
.hssw-post.hssw-apk-post .hssw-apk-head-copy{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) 250px!important;
  grid-template-areas:
    "title features"
    "chips features"
    "stats features"
    "button features"!important;
  column-gap:22px!important;
  row-gap:14px!important;
  align-items:start!important;
}
.hssw-post.hssw-apk-post .hssw-title{grid-area:title!important;margin:0!important;align-self:end!important;}
.hssw-post.hssw-apk-post .hssw-apk-chip-row{grid-area:chips!important;}
.hssw-post.hssw-apk-post .hssw-apk-rating-row{
  display:none!important;
}
.hssw-post.hssw-apk-post .hssw-apk-stat-row{
  grid-area:stats!important;
  margin:0!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  width:100%!important;
}
.hssw-post.hssw-apk-post .hssw-apk-main-download{
  grid-area:button!important;
  padding:0!important;
  max-width:420px!important;
}
.hssw-post.hssw-apk-post .hssw-apk-primary-btn{
  width:100%!important;
}
.hssw-post.hssw-apk-post .hssw-apk-feature-grid{
  grid-area:features!important;
  padding:0!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  align-self:start!important;
}
.hssw-post.hssw-apk-post .hssw-apk-feature-tile{
  min-height:96px!important;
}

/* Tablet/Desktop transition */
@media (max-width: 1100px){
  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    grid-template-columns:190px minmax(0,1fr)!important;
    gap:24px!important;
    padding:26px 22px 14px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width:180px!important;
    height:180px!important;
    min-width:180px!important;
    border-radius:24px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-head-copy{
    grid-template-columns:minmax(0,1fr)!important;
    grid-template-areas:
      "title"
      "chips"
      "stats"
      "button"
      "features"!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-main-download{
    max-width:100%!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{
    grid-template-columns:repeat(4,minmax(0,1fr))!important;
  }
}
@media (max-width: 820px){
  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    grid-template-columns:1fr!important;
    justify-items:center!important;
    gap:18px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width:128px!important;
    height:128px!important;
    min-width:128px!important;
    border-radius:24px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-head-copy{
    width:100%!important;
    grid-template-columns:1fr!important;
    grid-template-areas:
      "title"
      "chips"
      "rating"
      "stats"
      "button"
      "features"!important;
    row-gap:12px!important;
    justify-items:stretch!important;
  }
  .hssw-post.hssw-apk-post .hssw-title{
    text-align:center!important;
    align-self:start!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-chip-row{
    justify-content:center!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-rating-row{
    grid-area:rating!important;
    display:flex!important;
    justify-content:center!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-main-download{
    max-width:100%!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
}
@media (max-width: 640px){
  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    padding:18px 16px 10px!important;
    gap:16px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width:132px!important;
    height:132px!important;
    min-width:132px!important;
    border-radius:24px!important;
  }
  .hssw-post.hssw-apk-post .hssw-title{
    font-size:1.85rem!important;
    text-align:center!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-chip-row{
    gap:8px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    margin:0!important;
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-stat-card{
    min-height:72px!important;
    padding:12px 6px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:10px!important;
  }
}


/* HSware v7.4.25: APK desktop hero polish.
   - reduce empty blank area
   - enlarge app icon
   - add stronger icon shadow
   - tighten desktop alignment */
.hssw-post.hssw-apk-post .hssw-apk-header-shell{
  max-width:1380px!important;
  margin:0 auto!important;
}
.hssw-post.hssw-apk-post .hssw-apk-app-head{
  grid-template-columns:300px minmax(0,1fr)!important;
  gap:28px!important;
  align-items:center!important;
  justify-content:start!important;
  max-width:1140px!important;
  margin:0 auto!important;
  padding:36px 22px 26px!important;
}
.hssw-post.hssw-apk-post .hssw-apk-app-icon{
  width:276px!important;
  height:276px!important;
  min-width:276px!important;
  border-radius:34px!important;
  border:1px solid #dbe7df!important;
  box-shadow:0 28px 54px rgba(15,23,42,.14), 0 8px 18px rgba(15,23,42,.08)!important;
}
.hssw-post.hssw-apk-post .hssw-apk-head-copy{
  grid-template-columns:minmax(0,550px) 250px!important;
  column-gap:22px!important;
  align-items:start!important;
  justify-content:start!important;
}
.hssw-post.hssw-apk-post .hssw-title{
  font-size:clamp(2.4rem,3.8vw,3.2rem)!important;
  line-height:1.02!important;
}
.hssw-post.hssw-apk-post .hssw-apk-chip-row{gap:10px!important;}
.hssw-post.hssw-apk-post .hssw-apk-stat-row{
  max-width:550px!important;
}
.hssw-post.hssw-apk-post .hssw-apk-main-download{
  max-width:430px!important;
}
.hssw-post.hssw-apk-post .hssw-apk-feature-grid{
  width:250px!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
}
.hssw-post.hssw-apk-post .hssw-apk-feature-tile{
  min-height:104px!important;
  border-radius:20px!important;
  box-shadow:0 8px 20px rgba(15,23,42,.04)!important;
}

@media (max-width: 1220px){
  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    max-width:1040px!important;
    grid-template-columns:250px minmax(0,1fr)!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width:228px!important;
    height:228px!important;
    min-width:228px!important;
    border-radius:30px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-head-copy{
    grid-template-columns:minmax(0,1fr) 236px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{width:236px!important;}
}
@media (max-width: 1100px){
  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    grid-template-columns:200px minmax(0,1fr)!important;
    max-width:980px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width:190px!important;
    height:190px!important;
    min-width:190px!important;
  }
}
@media (max-width: 820px){
  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    max-width:none!important;
    grid-template-columns:1fr!important;
    padding:24px 18px 14px!important;
    gap:18px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width:148px!important;
    height:148px!important;
    min-width:148px!important;
    border-radius:28px!important;
    margin:0 auto!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-head-copy{
    grid-template-columns:1fr!important;
    width:100%!important;
  }
}
@media (max-width: 640px){
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width:160px!important;
    height:160px!important;
    min-width:160px!important;
    border-radius:30px!important;
    box-shadow:0 24px 50px rgba(15,23,42,.16), 0 8px 16px rgba(15,23,42,.10)!important;
  }
  .hssw-post.hssw-apk-post .hssw-title{
    font-size:1.95rem!important;
  }
}


/* HSware v7.4.26: APK hero left alignment fix.
   User asked: do NOT center the whole desktop hero content.
   The card remains white, but content starts from the left like the supplied mockup. */
@media (min-width: 1101px){
  .hssw-post.hssw-apk-post .hssw-apk-header-shell{
    width:100%!important;
    max-width:1440px!important;
    margin-left:0!important;
    margin-right:auto!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    max-width:none!important;
    width:100%!important;
    margin:0!important;
    padding:36px 36px 30px!important;
    grid-template-columns:310px minmax(0,1fr)!important;
    gap:30px!important;
    justify-content:start!important;
    justify-items:start!important;
    align-items:center!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width:290px!important;
    height:290px!important;
    min-width:290px!important;
    border-radius:34px!important;
    justify-self:start!important;
    box-shadow:0 30px 60px rgba(15,23,42,.16), 0 10px 22px rgba(15,23,42,.10)!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-head-copy{
    width:100%!important;
    max-width:none!important;
    margin:0!important;
    grid-template-columns:minmax(0,650px) 300px!important;
    grid-template-areas:
      "title features"
      "chips features"
      "stats features"
      "button features"!important;
    column-gap:24px!important;
    row-gap:14px!important;
    justify-content:start!important;
    justify-items:start!important;
    align-items:start!important;
  }
  .hssw-post.hssw-apk-post .hssw-title{
    max-width:650px!important;
    text-align:left!important;
    justify-self:start!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-chip-row{
    justify-content:flex-start!important;
    justify-self:start!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    width:100%!important;
    max-width:650px!important;
    justify-self:start!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-main-download{
    width:430px!important;
    max-width:100%!important;
    justify-self:start!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{
    width:300px!important;
    justify-self:start!important;
    align-self:start!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:12px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-tile{
    min-height:112px!important;
  }
}

@media (min-width:1101px) and (max-width:1280px){
  .hssw-post.hssw-apk-post .hssw-apk-header-shell{
    max-width:1220px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    grid-template-columns:250px minmax(0,1fr)!important;
    gap:24px!important;
    padding:30px 28px 24px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width:230px!important;
    height:230px!important;
    min-width:230px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-head-copy{
    grid-template-columns:minmax(0,560px) 260px!important;
    column-gap:18px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    max-width:560px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{
    width:260px!important;
  }
}


/* HSware v7.4.27: premium APK hero section redesign from supplied reference.
   APK only. PC software layout untouched. */
@media (min-width:1101px){
  .hssw-post.hssw-apk-post .hssw-apk-header-shell{
    width:100%!important;
    max-width:none!important;
    margin:0!important;
    border:1px solid rgba(255,255,255,.72)!important;
    border-radius:34px!important;
    background:
      radial-gradient(circle at 12% 20%, rgba(34,197,94,.16), transparent 34%),
      radial-gradient(circle at 78% 12%, rgba(124,58,237,.14), transparent 38%),
      linear-gradient(135deg,#eef8ff 0%,#f4f8ff 42%,#f5efff 100%)!important;
    box-shadow:0 22px 70px rgba(15,23,42,.11), inset 0 1px 0 rgba(255,255,255,.86)!important;
    overflow:hidden!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    display:grid!important;
    grid-template-columns:360px minmax(0,1fr)!important;
    gap:38px!important;
    width:100%!important;
    max-width:none!important;
    margin:0!important;
    padding:42px 48px 40px!important;
    align-items:center!important;
    justify-content:start!important;
    justify-items:stretch!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width:340px!important;
    height:340px!important;
    min-width:340px!important;
    justify-self:start!important;
    align-self:center!important;
    border-radius:34px!important;
    border:4px solid rgba(89,174,220,.55)!important;
    background:#fff!important;
    box-shadow:
      0 34px 76px rgba(15,23,42,.18),
      0 14px 28px rgba(14,165,233,.13),
      inset 0 1px 0 rgba(255,255,255,.85)!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-icon img{
    border-radius:28px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-head-copy{
    width:100%!important;
    max-width:none!important;
    display:grid!important;
    grid-template-columns:minmax(520px, 1fr) minmax(420px, 560px)!important;
    grid-template-areas:
      "title features"
      "chips features"
      "stats features"
      "button features"!important;
    column-gap:34px!important;
    row-gap:16px!important;
    align-items:start!important;
    justify-content:stretch!important;
    justify-items:stretch!important;
  }

  .hssw-post.hssw-apk-post .hssw-title{
    grid-area:title!important;
    max-width:760px!important;
    margin:0!important;
    padding:0!important;
    text-align:left!important;
    justify-self:start!important;
    color:#111827!important;
    font-size:clamp(3.1rem, 3.9vw, 4.35rem)!important;
    line-height:.96!important;
    letter-spacing:-.055em!important;
    font-weight:900!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-chip-row{
    grid-area:chips!important;
    justify-content:flex-start!important;
    justify-self:start!important;
    gap:12px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-chip{
    min-width:92px!important;
    height:38px!important;
    padding:0 18px!important;
    border-radius:999px!important;
    background:rgba(236,253,245,.72)!important;
    border:1px solid rgba(22,163,74,.32)!important;
    color:#15803d!important;
    font-size:1rem!important;
    font-weight:900!important;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.84)!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-chip.is-strong{
    background:rgba(236,253,245,.78)!important;
    border-color:rgba(22,163,74,.55)!important;
    color:#15803d!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    grid-area:stats!important;
    width:100%!important;
    max-width:none!important;
    margin:6px 0 0!important;
    display:grid!important;
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:12px!important;
    border:0!important;
    border-radius:0!important;
    overflow:visible!important;
    background:transparent!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-stat-card{
    position:relative!important;
    min-height:86px!important;
    display:grid!important;
    grid-template-columns:62px minmax(0,1fr)!important;
    grid-template-areas:"icon value" "icon label"!important;
    align-items:center!important;
    justify-items:start!important;
    text-align:left!important;
    gap:0 12px!important;
    padding:16px 18px!important;
    border:1px solid rgba(22,163,74,.24)!important;
    border-radius:16px!important;
    background:rgba(255,255,255,.54)!important;
    box-shadow:0 8px 22px rgba(15,23,42,.055), inset 0 1px 0 rgba(255,255,255,.82)!important;
    backdrop-filter:blur(8px)!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-stat-card::before{
    grid-area:icon!important;
    content:"☁"!important;
    width:54px!important;
    height:54px!important;
    border-radius:18px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    color:#64748b!important;
    background:linear-gradient(135deg,#e0f2fe,#e2e8f0)!important;
    font-size:1.65rem!important;
    box-shadow:0 8px 18px rgba(15,23,42,.08)!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-stat-card:nth-child(2)::before{
    content:"💾"!important;
    background:linear-gradient(135deg,#ede9fe,#e0e7ff)!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-stat-card:nth-child(3)::before{
    content:"🤖"!important;
    background:linear-gradient(135deg,#dcfce7,#d9f99d)!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-stat-card strong{
    grid-area:value!important;
    font-size:1.45rem!important;
    line-height:1.05!important;
    color:#111827!important;
    font-weight:950!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-stat-card span{
    grid-area:label!important;
    font-size:1rem!important;
    color:#1f2937!important;
    font-weight:600!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-main-download{
    grid-area:button!important;
    width:100%!important;
    max-width:none!important;
    padding:0!important;
    margin:2px 0 0!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-primary-btn{
    min-height:70px!important;
    width:100%!important;
    max-width:100%!important;
    border-radius:16px!important;
    background:linear-gradient(180deg,#149c3a 0%,#037d2b 100%)!important;
    color:#fff!important;
    box-shadow:0 22px 42px rgba(22,163,74,.28), inset 0 1px 0 rgba(255,255,255,.22)!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-primary-btn strong{
    font-size:1.45rem!important;
    letter-spacing:.01em!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{
    grid-area:features!important;
    width:100%!important;
    max-width:none!important;
    align-self:center!important;
    justify-self:stretch!important;
    display:grid!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:18px!important;
    padding:0!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-tile{
    min-height:138px!important;
    display:grid!important;
    grid-template-columns:82px minmax(0,1fr)!important;
    grid-template-areas:"icon title" "icon sub"!important;
    align-items:center!important;
    justify-items:start!important;
    text-align:left!important;
    gap:0 16px!important;
    padding:24px!important;
    border-radius:20px!important;
    border:1px solid rgba(255,255,255,.72)!important;
    background:rgba(255,255,255,.56)!important;
    box-shadow:0 14px 34px rgba(15,23,42,.08), inset 0 1px 0 rgba(255,255,255,.84)!important;
    backdrop-filter:blur(10px)!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-icon{
    grid-area:icon!important;
    width:72px!important;
    height:72px!important;
    border-radius:22px!important;
    background:linear-gradient(135deg,#dbeafe,#fef3c7)!important;
    box-shadow:0 12px 28px rgba(15,23,42,.12)!important;
    font-size:2.15rem!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-tile strong{
    grid-area:title!important;
    font-size:1.55rem!important;
    line-height:1.06!important;
    letter-spacing:-.025em!important;
    color:#111827!important;
    font-weight:950!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-tile small{
    grid-area:sub!important;
    font-size:1.02rem!important;
    color:#1f2937!important;
    line-height:1.2!important;
    font-weight:500!important;
  }
}

@media (min-width:1101px) and (max-width:1380px){
  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    grid-template-columns:300px minmax(0,1fr)!important;
    gap:28px!important;
    padding:34px 34px 32px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width:282px!important;
    height:282px!important;
    min-width:282px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-head-copy{
    grid-template-columns:minmax(480px, 1fr) minmax(330px, 430px)!important;
    column-gap:24px!important;
  }
  .hssw-post.hssw-apk-post .hssw-title{
    font-size:clamp(2.65rem, 3.4vw, 3.55rem)!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-tile{
    min-height:120px!important;
    grid-template-columns:64px minmax(0,1fr)!important;
    padding:18px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-icon{
    width:58px!important;
    height:58px!important;
    font-size:1.65rem!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-tile strong{
    font-size:1.2rem!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-tile small{
    font-size:.9rem!important;
  }
}

@media (min-width:1101px) and (max-width:1180px){
  .hssw-post.hssw-apk-post .hssw-apk-head-copy{
    grid-template-columns:1fr!important;
    grid-template-areas:
      "title"
      "chips"
      "stats"
      "button"
      "features"!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{
    max-width:620px!important;
  }
}

@media (max-width:820px){
  .hssw-post.hssw-apk-post .hssw-apk-header-shell{
    background:
      radial-gradient(circle at 50% 0%, rgba(34,197,94,.12), transparent 36%),
      linear-gradient(180deg,#ffffff 0%,#f8fffb 100%)!important;
  }
}


/* HSware v7.4.28: fixed APK hero size system from approved recommendation.
   Desktop target: 400px hero, 300x300 app image, single-line title, same premium design on mobile.
   This affects Android APK layout only. PC software layout remains untouched. */

.hssw-post.hssw-apk-post .hssw-apk-header-shell{
  min-height:400px!important;
  height:400px!important;
  max-height:400px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  padding:0!important;
  background:
    radial-gradient(circle at 18% 18%, rgba(91,169,255,.32), transparent 32%),
    radial-gradient(circle at 82% 22%, rgba(168,139,250,.30), transparent 35%),
    linear-gradient(135deg,#eef8ff 0%,#f5f1ff 48%,#eefcf3 100%)!important;
  border:1px solid rgba(148,163,184,.26)!important;
  border-radius:32px!important;
  box-shadow:0 22px 58px rgba(15,23,42,.09)!important;
  overflow:hidden!important;
}

.hssw-post.hssw-apk-post .hssw-apk-app-head{
  width:100%!important;
  max-width:1380px!important;
  height:400px!important;
  margin:0!important;
  padding:28px 36px!important;
  display:grid!important;
  grid-template-columns:320px minmax(520px,620px) minmax(390px,440px)!important;
  gap:28px!important;
  align-items:center!important;
  justify-content:start!important;
}

.hssw-post.hssw-apk-post .hssw-apk-app-icon{
  width:300px!important;
  height:300px!important;
  min-width:300px!important;
  border-radius:30px!important;
  background:#fff!important;
  border:1px solid rgba(14,116,144,.22)!important;
  box-shadow:
    0 30px 65px rgba(15,23,42,.20),
    0 12px 24px rgba(14,165,233,.14)!important;
  overflow:hidden!important;
  align-self:center!important;
  justify-self:start!important;
}

.hssw-post.hssw-apk-post .hssw-apk-app-icon img{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  display:block!important;
}

.hssw-post.hssw-apk-post .hssw-apk-head-copy{
  display:contents!important;
}

/* Middle content column */
.hssw-post.hssw-apk-post .hssw-title{
  grid-column:2!important;
  grid-row:1!important;
  align-self:end!important;
  margin:0 0 0!important;
  font-size:42px!important;
  line-height:1.05!important;
  font-weight:900!important;
  letter-spacing:-.035em!important;
  color:#111827!important;
  white-space:nowrap!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
  max-width:620px!important;
  text-align:left!important;
}

.hssw-post.hssw-apk-post .hssw-apk-chip-row{
  grid-column:2!important;
  grid-row:2!important;
  display:flex!important;
  flex-wrap:nowrap!important;
  gap:12px!important;
  align-items:center!important;
  justify-content:flex-start!important;
  align-self:start!important;
  max-width:620px!important;
  overflow:hidden!important;
}

.hssw-post.hssw-apk-post .hssw-apk-chip{
  height:34px!important;
  padding:0 18px!important;
  border-radius:999px!important;
  font-size:14px!important;
  line-height:34px!important;
  font-weight:800!important;
  white-space:nowrap!important;
  background:rgba(236,253,245,.82)!important;
  border:1px solid rgba(34,197,94,.35)!important;
  color:#166534!important;
  box-shadow:0 8px 18px rgba(22,163,74,.07)!important;
}

.hssw-post.hssw-apk-post .hssw-apk-chip.is-strong{
  background:rgba(220,252,231,.92)!important;
  color:#166534!important;
  border-color:rgba(22,163,74,.45)!important;
}

.hssw-post.hssw-apk-post .hssw-apk-rating-row{
  display:none!important;
}

.hssw-post.hssw-apk-post .hssw-apk-stat-row{
  grid-column:2!important;
  grid-row:3!important;
  width:100%!important;
  max-width:620px!important;
  height:76px!important;
  margin:0!important;
  display:grid!important;
  grid-template-columns:repeat(3,1fr)!important;
  gap:12px!important;
  border:0!important;
  background:transparent!important;
  overflow:visible!important;
}

.hssw-post.hssw-apk-post .hssw-apk-stat-card{
  height:76px!important;
  min-height:76px!important;
  padding:14px 18px!important;
  display:grid!important;
  place-items:center!important;
  text-align:center!important;
  border:1px solid rgba(14,165,233,.26)!important;
  border-radius:16px!important;
  background:rgba(255,255,255,.52)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.70), 0 10px 24px rgba(15,23,42,.06)!important;
  backdrop-filter:blur(8px)!important;
}

.hssw-post.hssw-apk-post .hssw-apk-stat-card strong{
  font-size:20px!important;
  line-height:1.1!important;
  font-weight:900!important;
  color:#0f172a!important;
}

.hssw-post.hssw-apk-post .hssw-apk-stat-card span{
  font-size:13px!important;
  line-height:1.2!important;
  font-weight:700!important;
  color:#475569!important;
}

.hssw-post.hssw-apk-post .hssw-apk-main-download{
  grid-column:2!important;
  grid-row:4!important;
  width:430px!important;
  max-width:430px!important;
  height:62px!important;
  padding:0!important;
  margin:0!important;
  align-self:start!important;
}

.hssw-post.hssw-apk-post .hssw-apk-primary-btn{
  width:430px!important;
  max-width:430px!important;
  height:62px!important;
  min-height:62px!important;
  padding:0 24px!important;
  border-radius:16px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:12px!important;
  background:linear-gradient(180deg,#16a34a 0%,#087b2e 100%)!important;
  color:#fff!important;
  border:0!important;
  box-shadow:0 20px 36px rgba(22,163,74,.28), 0 0 0 1px rgba(255,255,255,.20) inset!important;
}

.hssw-post.hssw-apk-post .hssw-apk-primary-btn strong{
  font-size:1.1rem!important;
  font-weight:900!important;
  color:#fff!important;
}

.hssw-post.hssw-apk-post .hssw-apk-primary-btn small{
  display:none!important;
}

/* Right feature cards column */
.hssw-post.hssw-apk-post .hssw-apk-feature-grid{
  grid-column:3!important;
  grid-row:1 / span 4!important;
  width:100%!important;
  max-width:440px!important;
  display:grid!important;
  grid-template-columns:repeat(2,1fr)!important;
  gap:16px!important;
  padding:0!important;
  align-self:center!important;
}

.hssw-post.hssw-apk-post .hssw-apk-feature-tile{
  height:128px!important;
  min-height:128px!important;
  padding:18px!important;
  display:grid!important;
  grid-template-columns:54px minmax(0,1fr)!important;
  grid-template-rows:auto auto!important;
  column-gap:14px!important;
  row-gap:4px!important;
  align-items:center!important;
  text-align:left!important;
  border:1px solid rgba(148,163,184,.20)!important;
  border-radius:20px!important;
  background:rgba(255,255,255,.54)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.72), 0 14px 30px rgba(15,23,42,.07)!important;
  backdrop-filter:blur(10px)!important;
}

.hssw-post.hssw-apk-post .hssw-apk-feature-icon{
  grid-row:1 / span 2!important;
  width:54px!important;
  height:54px!important;
  border-radius:18px!important;
  font-size:28px!important;
  background:linear-gradient(135deg,#e0f2fe,#f0fdf4)!important;
  color:#0f766e!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
}

.hssw-post.hssw-apk-post .hssw-apk-feature-tile strong{
  font-size:22px!important;
  line-height:1.08!important;
  font-weight:900!important;
  color:#111827!important;
  margin:0!important;
}

.hssw-post.hssw-apk-post .hssw-apk-feature-tile small{
  font-size:14px!important;
  line-height:1.25!important;
  font-weight:600!important;
  color:#334155!important;
}

/* Tablet responsive */
@media (max-width: 1200px){
  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    grid-template-columns:240px minmax(430px,1fr) 330px!important;
    gap:22px!important;
    padding:26px 24px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width:220px!important;
    height:220px!important;
    min-width:220px!important;
  }
  .hssw-post.hssw-apk-post .hssw-title{
    font-size:34px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{
    max-width:330px!important;
    gap:12px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-tile{
    height:112px!important;
    min-height:112px!important;
    padding:14px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-tile strong{
    font-size:18px!important;
  }
}

/* Mobile: same visual language, stacked cleanly */
@media (max-width: 820px){
  .hssw-post.hssw-apk-post .hssw-apk-header-shell{
    height:auto!important;
    max-height:none!important;
    min-height:auto!important;
    border-radius:24px!important;
    background:
      radial-gradient(circle at 18% 12%, rgba(91,169,255,.30), transparent 34%),
      radial-gradient(circle at 86% 22%, rgba(168,139,250,.28), transparent 35%),
      linear-gradient(135deg,#eef8ff 0%,#f5f1ff 48%,#eefcf3 100%)!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    height:auto!important;
    grid-template-columns:1fr!important;
    grid-template-rows:auto!important;
    padding:22px 16px!important;
    gap:12px!important;
    justify-items:stretch!important;
    text-align:center!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-head-copy{
    display:contents!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    grid-column:1!important;
    grid-row:1!important;
    width:150px!important;
    height:150px!important;
    min-width:150px!important;
    border-radius:28px!important;
    justify-self:center!important;
    box-shadow:0 24px 48px rgba(15,23,42,.18), 0 8px 18px rgba(14,165,233,.12)!important;
  }
  .hssw-post.hssw-apk-post .hssw-title{
    grid-column:1!important;
    grid-row:2!important;
    max-width:100%!important;
    font-size:24px!important;
    line-height:1.12!important;
    white-space:nowrap!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    text-align:center!important;
    justify-self:center!important;
    align-self:start!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-chip-row{
    grid-column:1!important;
    grid-row:3!important;
    justify-content:center!important;
    gap:8px!important;
    flex-wrap:nowrap!important;
    max-width:100%!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-chip{
    height:30px!important;
    padding:0 12px!important;
    line-height:30px!important;
    font-size:12px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-rating-row{
    grid-column:1!important;
    grid-row:4!important;
    display:flex!important;
    justify-content:center!important;
    align-items:center!important;
    gap:8px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    grid-column:1!important;
    grid-row:5!important;
    width:100%!important;
    max-width:100%!important;
    height:auto!important;
    min-height:70px!important;
    grid-template-columns:repeat(3,1fr)!important;
    gap:8px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-stat-card{
    height:auto!important;
    min-height:70px!important;
    padding:10px 6px!important;
    border-radius:14px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-stat-card strong{
    font-size:15px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-stat-card span{
    font-size:11px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-main-download{
    grid-column:1!important;
    grid-row:6!important;
    width:100%!important;
    max-width:100%!important;
    height:58px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-primary-btn{
    width:100%!important;
    max-width:100%!important;
    height:58px!important;
    min-height:58px!important;
    border-radius:16px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{
    grid-column:1!important;
    grid-row:7!important;
    width:100%!important;
    max-width:100%!important;
    grid-template-columns:repeat(2,1fr)!important;
    gap:10px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-tile{
    height:auto!important;
    min-height:92px!important;
    grid-template-columns:1fr!important;
    grid-template-rows:auto auto auto!important;
    justify-items:center!important;
    text-align:center!important;
    padding:12px!important;
    border-radius:16px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-icon{
    grid-row:auto!important;
    width:38px!important;
    height:38px!important;
    border-radius:13px!important;
    font-size:18px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-tile strong{
    font-size:14px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-tile small{
    font-size:11px!important;
  }
}

@media (max-width: 390px){
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width:140px!important;
    height:140px!important;
    min-width:140px!important;
  }
  .hssw-post.hssw-apk-post .hssw-title{
    font-size:22px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-chip{
    padding:0 9px!important;
    font-size:11px!important;
  }
}


/* HSware v7.4.29: APK desktop alignment repair.
   The image was occupying only the first grid row, which pushed the title/content down.
   This locks the desktop hero into three real vertical columns:
   image left, content center, feature cards right. */
@media (min-width: 821px){
  .hssw-post.hssw-apk-post .hssw-apk-header-shell{
    height:400px!important;
    min-height:400px!important;
    max-height:400px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:flex-start!important;
    overflow:hidden!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    width:100%!important;
    height:400px!important;
    max-width:none!important;
    margin:0!important;
    padding:28px 36px!important;
    display:grid!important;
    grid-template-columns:320px minmax(500px,620px) minmax(360px,440px)!important;
    grid-template-rows:76px 42px 76px 62px!important;
    column-gap:28px!important;
    row-gap:12px!important;
    align-content:center!important;
    align-items:center!important;
    justify-content:start!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    grid-column:1!important;
    grid-row:1 / -1!important;
    width:300px!important;
    height:300px!important;
    min-width:300px!important;
    justify-self:start!important;
    align-self:center!important;
    margin:0!important;
    border-radius:30px!important;
    box-shadow:0 30px 65px rgba(15,23,42,.20),0 12px 24px rgba(14,165,233,.14)!important;
  }

  .hssw-post.hssw-apk-post .hssw-title{
    grid-column:2!important;
    grid-row:1!important;
    align-self:end!important;
    justify-self:start!important;
    margin:0!important;
    width:100%!important;
    max-width:620px!important;
    font-size:42px!important;
    line-height:1.05!important;
    white-space:nowrap!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    text-align:left!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-chip-row{
    grid-column:2!important;
    grid-row:2!important;
    align-self:start!important;
    justify-self:start!important;
    margin:0!important;
    width:100%!important;
    max-width:620px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    grid-column:2!important;
    grid-row:3!important;
    align-self:center!important;
    justify-self:start!important;
    margin:0!important;
    width:100%!important;
    max-width:620px!important;
    height:76px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-main-download{
    grid-column:2!important;
    grid-row:4!important;
    align-self:start!important;
    justify-self:start!important;
    margin:0!important;
    width:430px!important;
    max-width:430px!important;
    height:62px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{
    grid-column:3!important;
    grid-row:1 / -1!important;
    width:100%!important;
    max-width:440px!important;
    align-self:center!important;
    justify-self:start!important;
    display:grid!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:16px!important;
    padding:0!important;
    margin:0!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-feature-tile{
    height:128px!important;
    min-height:128px!important;
  }
}

@media (min-width: 821px) and (max-width: 1280px){
  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    grid-template-columns:270px minmax(430px,1fr) 330px!important;
    grid-template-rows:66px 38px 72px 58px!important;
    column-gap:22px!important;
    padding:28px 30px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width:250px!important;
    height:250px!important;
    min-width:250px!important;
  }
  .hssw-post.hssw-apk-post .hssw-title{
    font-size:34px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{
    max-width:330px!important;
    gap:12px!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-tile{
    height:116px!important;
    min-height:116px!important;
  }
}

/* Keep mobile stacked and clean after the desktop repair. */
@media (max-width: 820px){
  .hssw-post.hssw-apk-post .hssw-apk-header-shell{
    height:auto!important;
    min-height:auto!important;
    max-height:none!important;
    overflow:visible!important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    height:auto!important;
    grid-template-columns:1fr!important;
    grid-template-rows:auto!important;
    align-content:start!important;
  }
}


/* HSware v7.4.30: APK desktop hero final structure fix.
   The feature boxes live INSIDE .hssw-apk-head-copy, not beside it.
   So the desktop layout must be:
   app-head => [image] [content-area]
   content-area => left content column + right feature grid column.
*/
@media (min-width: 821px){
  .hssw-post.hssw-apk-post .hssw-apk-header-shell{
    min-height: 430px !important;
    height: auto !important;
    max-height: none !important;
    overflow: hidden !important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    display: grid !important;
    grid-template-columns: 320px minmax(0,1fr) !important;
    column-gap: 36px !important;
    row-gap: 0 !important;
    align-items: center !important;
    align-content: center !important;
    justify-content: start !important;
    width: 100% !important;
    height: auto !important;
    padding: 34px 40px !important;
    max-width: 1480px !important;
    margin: 0 auto !important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 300px !important;
    height: 300px !important;
    min-width: 300px !important;
    min-height: 300px !important;
    margin: 0 !important;
    align-self: center !important;
    justify-self: start !important;
    border-radius: 32px !important;
    box-shadow: 0 26px 54px rgba(15,23,42,.16), 0 10px 22px rgba(59,130,246,.18) !important;
    overflow: hidden !important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-icon img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 32px !important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-head-copy{
    grid-column: 2 !important;
    display: grid !important;
    grid-template-columns: minmax(540px, 680px) 360px !important;
    grid-template-rows: auto auto auto auto !important;
    column-gap: 28px !important;
    row-gap: 14px !important;
    align-items: start !important;
    justify-content: start !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .hssw-post.hssw-apk-post .hssw-title{
    grid-column: 1 !important;
    grid-row: 1 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 680px !important;
    font-size: 44px !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    text-align: left !important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-subtitle,
  .hssw-post.hssw-apk-post .hssw-apk-rating-row{
    display: none !important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-chip-row{
    grid-column: 1 !important;
    grid-row: 2 !important;
    margin: 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 680px !important;
    justify-content: flex-start !important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    grid-column: 1 !important;
    grid-row: 3 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 680px !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0,1fr)) !important;
    gap: 0 !important;
    border-radius: 22px !important;
    overflow: hidden !important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-main-download{
    grid-column: 1 !important;
    grid-row: 4 !important;
    margin: 0 !important;
    width: 430px !important;
    max-width: 430px !important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-primary-btn{
    width: 100% !important;
    height: 62px !important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{
    grid-column: 2 !important;
    grid-row: 1 / span 4 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 360px !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    gap: 14px !important;
    align-self: start !important;
    justify-self: start !important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-feature-tile{
    min-height: 118px !important;
    height: 118px !important;
  }
}

@media (min-width: 821px) and (max-width: 1280px){
  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    grid-template-columns: 260px minmax(0,1fr) !important;
    padding: 28px 28px !important;
    column-gap: 26px !important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width: 250px !important;
    height: 250px !important;
    min-width: 250px !important;
    min-height: 250px !important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-head-copy{
    grid-template-columns: minmax(420px,1fr) 300px !important;
    column-gap: 20px !important;
  }
  .hssw-post.hssw-apk-post .hssw-title{
    font-size: 34px !important;
    max-width: 100% !important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-main-download{
    width: 360px !important;
    max-width: 360px !important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{
    max-width: 300px !important;
    gap: 12px !important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-feature-tile{
    min-height: 108px !important;
    height: 108px !important;
  }
}

@media (max-width: 820px){
  .hssw-post.hssw-apk-post .hssw-apk-head-copy{
    display: grid !important;
    grid-template-columns: 1fr !important;
    row-gap: 12px !important;
  }
  .hssw-post.hssw-apk-post .hssw-apk-subtitle,
  .hssw-post.hssw-apk-post .hssw-apk-rating-row{
    display: flex !important;
  }
}


/* HSware v7.4.31: APK hero vertical centering balance fix.
   Keep the whole desktop hero visually centered vertically without breaking the column structure. */
@media (min-width: 821px){
  .hssw-post.hssw-apk-post .hssw-apk-header-shell{
    min-height: 400px !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    min-height: 400px !important;
    align-items: center !important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    align-self: center !important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-head-copy{
    align-self: center !important;
    align-content: center !important;
    min-height: 300px !important;
  }

  .hssw-post.hssw-apk-post .hssw-title,
  .hssw-post.hssw-apk-post .hssw-apk-chip-row,
  .hssw-post.hssw-apk-post .hssw-apk-stat-row,
  .hssw-post.hssw-apk-post .hssw-apk-main-download{
    align-self: center !important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{
    align-self: center !important;
    justify-self: start !important;
  }
}

/* HSware v7.4.32: reset legacy desktop rows that pulled the 300px hero
   content above its container. Mobile rules remain unchanged. */
@media (min-width: 821px){
  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    grid-template-rows: minmax(300px, auto) !important;
  }
}


/* HSware v7.4.36: Android APK desktop header polish only.
   Fixes stretched stat cards, broken text wrapping, feature-card alignment and icon sizing.
   Mobile, PC software and macOS layouts are untouched. */
@media (min-width: 821px){
  .hssw-post.hssw-apk-post .hssw-apk-header-shell{
    min-height:400px!important;
    display:flex!important;
    align-items:center!important;
    overflow:hidden!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    display:grid!important;
    grid-template-columns:300px minmax(0,1fr)!important;
    gap:34px!important;
    align-items:center!important;
    align-content:center!important;
    width:100%!important;
    max-width:1420px!important;
    min-height:400px!important;
    margin:0 auto!important;
    padding:30px 38px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width:300px!important;
    height:300px!important;
    min-width:300px!important;
    min-height:300px!important;
    justify-self:center!important;
    align-self:center!important;
    margin:0!important;
    border-radius:28px!important;
    overflow:hidden!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-app-icon img{
    width:100%!important;
    height:100%!important;
    object-fit:cover!important;
    display:block!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-head-copy{
    display:grid!important;
    grid-template-columns:minmax(0,640px) minmax(380px,420px)!important;
    grid-template-rows:auto auto auto auto!important;
    column-gap:28px!important;
    row-gap:14px!important;
    align-items:center!important;
    align-content:center!important;
    width:100%!important;
    min-width:0!important;
    min-height:300px!important;
    margin:0!important;
  }

  .hssw-post.hssw-apk-post .hssw-title{
    grid-column:1!important;
    grid-row:1!important;
    max-width:640px!important;
    margin:0!important;
    font-size:42px!important;
    line-height:1.05!important;
    letter-spacing:-.035em!important;
    white-space:nowrap!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    text-align:left!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-subtitle,
  .hssw-post.hssw-apk-post .hssw-apk-rating-row{
    display:none!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-chip-row{
    grid-column:1!important;
    grid-row:2!important;
    display:flex!important;
    flex-wrap:wrap!important;
    justify-content:flex-start!important;
    gap:10px!important;
    max-width:640px!important;
    margin:0!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-chip{
    min-height:32px!important;
    padding:8px 18px!important;
    font-size:13px!important;
    line-height:1!important;
    white-space:nowrap!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    grid-column:1!important;
    grid-row:3!important;
    display:grid!important;
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    width:100%!important;
    max-width:640px!important;
    min-height:76px!important;
    height:auto!important;
    margin:0!important;
    gap:0!important;
    border-radius:18px!important;
    overflow:hidden!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card{
    min-width:0!important;
    min-height:76px!important;
    height:auto!important;
    padding:10px 8px!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;
    gap:5px!important;
    text-align:center!important;
    overflow:hidden!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card strong{
    display:block!important;
    max-width:100%!important;
    font-size:clamp(16px,1.05vw,21px)!important;
    line-height:1.05!important;
    font-weight:900!important;
    text-align:center!important;
    white-space:normal!important;
    overflow-wrap:anywhere!important;
    word-break:normal!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card span{
    display:block!important;
    max-width:100%!important;
    font-size:12px!important;
    line-height:1.1!important;
    font-weight:800!important;
    text-align:center!important;
    white-space:normal!important;
    overflow-wrap:normal!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-main-download{
    grid-column:1!important;
    grid-row:4!important;
    width:430px!important;
    max-width:100%!important;
    margin:0!important;
    padding:0!important;
    justify-self:start!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-primary-btn{
    width:100%!important;
    min-height:62px!important;
    height:62px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    gap:12px!important;
    line-height:1.15!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{
    grid-column:2!important;
    grid-row:1 / span 4!important;
    width:100%!important;
    max-width:420px!important;
    display:grid!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:14px!important;
    align-self:center!important;
    justify-self:start!important;
    margin:0!important;
    padding:0!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-feature-tile{
    min-width:0!important;
    min-height:112px!important;
    height:auto!important;
    padding:16px!important;
    display:grid!important;
    grid-template-columns:50px minmax(0,1fr)!important;
    grid-template-rows:auto auto!important;
    column-gap:12px!important;
    row-gap:4px!important;
    align-items:center!important;
    justify-items:start!important;
    place-items:unset!important;
    text-align:left!important;
    overflow:hidden!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-feature-icon{
    grid-column:1!important;
    grid-row:1 / span 2!important;
    width:48px!important;
    height:48px!important;
    min-width:48px!important;
    min-height:48px!important;
    border-radius:15px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    align-self:center!important;
    justify-self:center!important;
    font-size:20px!important;
    line-height:1!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-feature-tile strong{
    grid-column:2!important;
    grid-row:1!important;
    display:block!important;
    max-width:100%!important;
    font-size:20px!important;
    line-height:1.05!important;
    font-weight:900!important;
    color:#111827!important;
    white-space:normal!important;
    word-break:normal!important;
    overflow-wrap:normal!important;
    hyphens:none!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-feature-tile small{
    grid-column:2!important;
    grid-row:2!important;
    display:block!important;
    max-width:100%!important;
    font-size:13px!important;
    line-height:1.15!important;
    font-weight:800!important;
    white-space:normal!important;
    word-break:normal!important;
    overflow-wrap:normal!important;
  }
}

@media (min-width: 821px) and (max-width: 1280px){
  .hssw-post.hssw-apk-post .hssw-apk-app-head{
    grid-template-columns:250px minmax(0,1fr)!important;
    gap:24px!important;
    padding:26px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-app-icon{
    width:250px!important;
    height:250px!important;
    min-width:250px!important;
    min-height:250px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-head-copy{
    grid-template-columns:minmax(0,1fr) minmax(300px,320px)!important;
    column-gap:20px!important;
  }

  .hssw-post.hssw-apk-post .hssw-title{
    font-size:34px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-main-download{
    width:360px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-feature-grid{
    max-width:320px!important;
    gap:12px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-feature-tile{
    min-height:104px!important;
    padding:14px!important;
    grid-template-columns:44px minmax(0,1fr)!important;
    column-gap:10px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-feature-icon{
    width:42px!important;
    height:42px!important;
    min-width:42px!important;
    min-height:42px!important;
    font-size:18px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-feature-tile strong{
    font-size:17px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-feature-tile small{
    font-size:12px!important;
  }
}


/* HSware v7.4.38: remove APK hero feature boxes only.
   No Root / Secure / Fast / MOD APK cards are gone and no right-side grid space is reserved. */
.hssw-post.hssw-apk-post .hssw-apk-feature-grid,
.hssw-post.hssw-apk-post .hssw-apk-feature-tile{
  display:none!important;
}

@media (min-width:821px){
  .hssw-post.hssw-apk-post .hssw-apk-head-copy{
    grid-template-columns:minmax(0,640px)!important;
    grid-template-rows:auto auto auto auto!important;
    column-gap:0!important;
    max-width:680px!important;
    justify-content:start!important;
    justify-items:start!important;
  }

  .hssw-post.hssw-apk-post .hssw-title,
  .hssw-post.hssw-apk-post .hssw-apk-chip-row,
  .hssw-post.hssw-apk-post .hssw-apk-stat-row,
  .hssw-post.hssw-apk-post .hssw-apk-main-download{
    grid-column:1!important;
  }
}

@media (min-width:821px) and (max-width:1280px){
  .hssw-post.hssw-apk-post .hssw-apk-head-copy{
    grid-template-columns:minmax(0,1fr)!important;
    max-width:620px!important;
  }
}


/* HSware v7.4.39: APK header stat boxes are now 4 square cards.
   Order: Download Size, Android Required, APK Type, Downloads. */
@media (min-width:821px){
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    grid-template-columns:repeat(4,112px)!important;
    width:auto!important;
    max-width:none!important;
    min-height:112px!important;
    height:auto!important;
    gap:12px!important;
    border-radius:0!important;
    overflow:visible!important;
    background:transparent!important;
    justify-content:start!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card{
    width:112px!important;
    height:112px!important;
    min-width:112px!important;
    min-height:112px!important;
    padding:12px 10px!important;
    border-radius:20px!important;
    background:rgba(255,255,255,.64)!important;
    border:1px solid rgba(148,163,184,.22)!important;
    box-shadow:0 16px 34px rgba(15,23,42,.08)!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;
    text-align:center!important;
    gap:7px!important;
    overflow:hidden!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card strong{
    max-width:100%!important;
    font-size:18px!important;
    line-height:1.05!important;
    font-weight:950!important;
    color:#111827!important;
    white-space:normal!important;
    overflow-wrap:anywhere!important;
    word-break:normal!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card span{
    max-width:100%!important;
    font-size:11px!important;
    line-height:1.1!important;
    font-weight:850!important;
    color:#334155!important;
    text-transform:none!important;
    white-space:normal!important;
    overflow-wrap:normal!important;
  }
}

@media (min-width:821px) and (max-width:1280px){
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    grid-template-columns:repeat(4,96px)!important;
    gap:10px!important;
    min-height:96px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card{
    width:96px!important;
    height:96px!important;
    min-width:96px!important;
    min-height:96px!important;
    padding:10px 8px!important;
    border-radius:18px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card strong{
    font-size:15px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card span{
    font-size:10px!important;
  }
}

@media (max-width:820px){
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    display:grid!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:10px!important;
    border-radius:0!important;
    overflow:visible!important;
    background:transparent!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card{
    aspect-ratio:1 / 1!important;
    min-height:0!important;
    height:auto!important;
    border-radius:18px!important;
    background:rgba(255,255,255,.7)!important;
    border:1px solid rgba(148,163,184,.22)!important;
    box-shadow:0 12px 26px rgba(15,23,42,.07)!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;
    text-align:center!important;
    padding:12px!important;
    gap:6px!important;
  }
}


/* HSware v7.4.41: APK header stat boxes match mobile style on desktop too.
   Four square boxes with centered icons:
   Download Size, Android Required, App Type, Downloads. */
.hssw-post.hssw-apk-post .hssw-apk-stat-card .hssw-apk-stat-icon{
  width:38px!important;
  height:38px!important;
  min-width:38px!important;
  min-height:38px!important;
  border-radius:14px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  margin:0 auto 6px!important;
  background:linear-gradient(135deg,rgba(219,234,254,.95),rgba(240,253,244,.95))!important;
  font-size:18px!important;
  line-height:1!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9)!important;
}

.hssw-post.hssw-apk-post .hssw-apk-stat-card .hssw-apk-stat-label{
  display:block!important;
}

@media (min-width:821px){
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    grid-column:1!important;
    grid-row:3!important;
    display:grid!important;
    grid-template-columns:repeat(2,112px)!important;
    width:auto!important;
    max-width:236px!important;
    min-height:auto!important;
    height:auto!important;
    gap:12px!important;
    border-radius:0!important;
    overflow:visible!important;
    background:transparent!important;
    justify-content:start!important;
    justify-items:start!important;
    align-items:start!important;
    margin:0!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card{
    width:112px!important;
    height:112px!important;
    min-width:112px!important;
    min-height:112px!important;
    aspect-ratio:1 / 1!important;
    padding:10px 8px!important;
    border-radius:20px!important;
    background:rgba(255,255,255,.72)!important;
    border:1px solid rgba(148,163,184,.22)!important;
    box-shadow:0 16px 34px rgba(15,23,42,.08)!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;
    text-align:center!important;
    gap:3px!important;
    overflow:hidden!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card strong{
    display:block!important;
    max-width:100%!important;
    font-size:16px!important;
    line-height:1.05!important;
    font-weight:950!important;
    color:#111827!important;
    text-align:center!important;
    white-space:normal!important;
    overflow-wrap:anywhere!important;
    word-break:normal!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card .hssw-apk-stat-label{
    max-width:100%!important;
    font-size:10.5px!important;
    line-height:1.1!important;
    font-weight:850!important;
    color:#334155!important;
    text-align:center!important;
    white-space:normal!important;
    overflow-wrap:normal!important;
  }
}

@media (min-width:821px) and (max-width:1280px){
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    grid-template-columns:repeat(2,102px)!important;
    max-width:214px!important;
    gap:10px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card{
    width:102px!important;
    height:102px!important;
    min-width:102px!important;
    min-height:102px!important;
    border-radius:18px!important;
    padding:8px 6px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card .hssw-apk-stat-icon{
    width:34px!important;
    height:34px!important;
    min-width:34px!important;
    min-height:34px!important;
    border-radius:12px!important;
    font-size:16px!important;
    margin-bottom:5px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card strong{
    font-size:14px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card .hssw-apk-stat-label{
    font-size:9.5px!important;
  }
}

@media (max-width:820px){
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    display:grid!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:10px!important;
    border-radius:0!important;
    overflow:visible!important;
    background:transparent!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card{
    aspect-ratio:1 / 1!important;
    min-height:0!important;
    height:auto!important;
    border-radius:18px!important;
    background:rgba(255,255,255,.72)!important;
    border:1px solid rgba(148,163,184,.22)!important;
    box-shadow:0 12px 26px rgba(15,23,42,.07)!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;
    text-align:center!important;
    padding:10px 8px!important;
    gap:4px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card .hssw-apk-stat-icon{
    width:36px!important;
    height:36px!important;
    min-width:36px!important;
    min-height:36px!important;
    border-radius:13px!important;
    font-size:17px!important;
    margin-bottom:5px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card strong{
    font-size:15px!important;
    line-height:1.05!important;
    text-align:center!important;
    overflow-wrap:anywhere!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card .hssw-apk-stat-label{
    font-size:10px!important;
    line-height:1.12!important;
    font-weight:850!important;
    text-align:center!important;
  }
}


/* HSware v7.4.43: DESKTOP ONLY APK hero stat fix.
   Mobile is untouched. Desktop now shows the same 4 stat cards cleanly in one row. */
@media (min-width:821px){
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    grid-column:1!important;
    grid-row:3!important;
    display:grid!important;
    grid-template-columns:repeat(4,112px)!important;
    width:100%!important;
    max-width:496px!important;
    min-height:112px!important;
    height:auto!important;
    gap:16px!important;
    margin:0!important;
    padding:0!important;
    border:0!important;
    border-radius:0!important;
    background:transparent!important;
    overflow:visible!important;
    justify-content:start!important;
    justify-items:start!important;
    align-items:start!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card{
    width:112px!important;
    height:112px!important;
    min-width:112px!important;
    min-height:112px!important;
    max-width:112px!important;
    aspect-ratio:1 / 1!important;
    padding:10px 8px!important;
    border-radius:20px!important;
    background:rgba(255,255,255,.76)!important;
    border:1px solid rgba(148,163,184,.22)!important;
    box-shadow:0 16px 34px rgba(15,23,42,.08)!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;
    text-align:center!important;
    gap:3px!important;
    overflow:hidden!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card .hssw-apk-stat-icon{
    width:38px!important;
    height:38px!important;
    min-width:38px!important;
    min-height:38px!important;
    border-radius:14px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    margin:0 auto 6px!important;
    background:linear-gradient(135deg,rgba(219,234,254,.95),rgba(240,253,244,.95))!important;
    font-size:18px!important;
    line-height:1!important;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.9)!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card strong{
    display:block!important;
    max-width:100%!important;
    font-size:15px!important;
    line-height:1.05!important;
    font-weight:950!important;
    color:#111827!important;
    text-align:center!important;
    white-space:normal!important;
    overflow-wrap:anywhere!important;
    word-break:normal!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card .hssw-apk-stat-label{
    display:block!important;
    max-width:100%!important;
    font-size:10px!important;
    line-height:1.12!important;
    font-weight:850!important;
    color:#334155!important;
    text-align:center!important;
    white-space:normal!important;
    overflow-wrap:normal!important;
  }
}

@media (min-width:821px) and (max-width:1180px){
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    grid-template-columns:repeat(4,96px)!important;
    max-width:414px!important;
    gap:10px!important;
    min-height:96px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card{
    width:96px!important;
    height:96px!important;
    min-width:96px!important;
    min-height:96px!important;
    max-width:96px!important;
    border-radius:18px!important;
    padding:8px 6px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card .hssw-apk-stat-icon{
    width:32px!important;
    height:32px!important;
    min-width:32px!important;
    min-height:32px!important;
    font-size:15px!important;
    border-radius:12px!important;
    margin-bottom:4px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card strong{
    font-size:13px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card .hssw-apk-stat-label{
    font-size:9px!important;
  }
}


/* HSware v7.4.45: APK hero has 6 boxes, 3 per row on desktop and mobile.
   Mobile structure is not otherwise touched, only the stat grid count/fit changes. */
.hssw-post.hssw-apk-post .hssw-apk-stat-row{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:10px!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  overflow:visible!important;
}

.hssw-post.hssw-apk-post .hssw-apk-stat-card{
  aspect-ratio:1 / 1!important;
  min-width:0!important;
  width:100%!important;
  max-width:none!important;
  height:auto!important;
  min-height:0!important;
  border-radius:18px!important;
  background:rgba(255,255,255,.74)!important;
  border:1px solid rgba(148,163,184,.22)!important;
  box-shadow:0 12px 26px rgba(15,23,42,.07)!important;
  display:flex!important;
  flex-direction:column!important;
  align-items:center!important;
  justify-content:center!important;
  text-align:center!important;
  padding:8px 6px!important;
  gap:3px!important;
  overflow:hidden!important;
}

.hssw-post.hssw-apk-post .hssw-apk-stat-card .hssw-apk-stat-icon{
  width:34px!important;
  height:34px!important;
  min-width:34px!important;
  min-height:34px!important;
  border-radius:12px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  margin:0 auto 5px!important;
  background:linear-gradient(135deg,rgba(219,234,254,.95),rgba(240,253,244,.95))!important;
  font-size:16px!important;
  line-height:1!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9)!important;
}

.hssw-post.hssw-apk-post .hssw-apk-stat-card strong{
  display:block!important;
  max-width:100%!important;
  font-size:13px!important;
  line-height:1.05!important;
  font-weight:950!important;
  color:#111827!important;
  text-align:center!important;
  white-space:normal!important;
  overflow-wrap:anywhere!important;
  word-break:normal!important;
}

.hssw-post.hssw-apk-post .hssw-apk-stat-card .hssw-apk-stat-label{
  display:block!important;
  max-width:100%!important;
  font-size:9px!important;
  line-height:1.12!important;
  font-weight:850!important;
  color:#334155!important;
  text-align:center!important;
  white-space:normal!important;
}

@media (min-width:821px){
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    grid-column:1!important;
    grid-row:3!important;
    grid-template-columns:repeat(3,112px)!important;
    width:auto!important;
    max-width:360px!important;
    gap:12px!important;
    justify-content:start!important;
    justify-items:start!important;
    align-items:start!important;
    margin:0!important;
    padding:0!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card{
    width:112px!important;
    height:112px!important;
    min-width:112px!important;
    min-height:112px!important;
    max-width:112px!important;
    padding:8px 6px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card strong{
    font-size:13px!important;
  }
}

@media (max-width:820px){
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:8px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card{
    border-radius:16px!important;
    padding:7px 5px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card .hssw-apk-stat-icon{
    width:30px!important;
    height:30px!important;
    min-width:30px!important;
    min-height:30px!important;
    border-radius:11px!important;
    font-size:14px!important;
    margin-bottom:4px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card strong{
    font-size:11px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card .hssw-apk-stat-label{
    font-size:8px!important;
  }
}


/* HSware v7.4.46: FINAL desktop-only hero stat layout.
   Mobile remains 3 per row. Desktop uses the same small square mobile card style,
   but places all 6 APK requirement boxes in one clean row. */
@media (min-width:821px){
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    grid-column:1!important;
    grid-row:3!important;
    display:grid!important;
    grid-template-columns:repeat(6,88px)!important;
    width:auto!important;
    max-width:588px!important;
    min-height:88px!important;
    height:auto!important;
    gap:10px!important;
    margin:0!important;
    padding:0!important;
    border:0!important;
    border-radius:0!important;
    background:transparent!important;
    overflow:visible!important;
    justify-content:start!important;
    justify-items:start!important;
    align-items:start!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card{
    width:88px!important;
    height:88px!important;
    min-width:88px!important;
    min-height:88px!important;
    max-width:88px!important;
    aspect-ratio:1 / 1!important;
    border-radius:16px!important;
    background:rgba(255,255,255,.74)!important;
    border:1px solid rgba(148,163,184,.22)!important;
    box-shadow:0 12px 26px rgba(15,23,42,.07)!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;
    text-align:center!important;
    padding:7px 5px!important;
    gap:2px!important;
    overflow:hidden!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card .hssw-apk-stat-icon{
    width:30px!important;
    height:30px!important;
    min-width:30px!important;
    min-height:30px!important;
    border-radius:11px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    margin:0 auto 4px!important;
    background:linear-gradient(135deg,rgba(219,234,254,.95),rgba(240,253,244,.95))!important;
    font-size:14px!important;
    line-height:1!important;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.9)!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card strong{
    display:block!important;
    max-width:100%!important;
    font-size:11px!important;
    line-height:1.05!important;
    font-weight:950!important;
    color:#111827!important;
    text-align:center!important;
    white-space:normal!important;
    overflow-wrap:anywhere!important;
    word-break:normal!important;
    margin:0!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card .hssw-apk-stat-label{
    display:block!important;
    max-width:100%!important;
    font-size:8px!important;
    line-height:1.12!important;
    font-weight:850!important;
    color:#334155!important;
    text-align:center!important;
    white-space:normal!important;
    margin:0!important;
  }
}

/* Keep the single-row desktop box strip from becoming huge on medium desktop widths. */
@media (min-width:821px) and (max-width:1120px){
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    grid-template-columns:repeat(6,78px)!important;
    max-width:518px!important;
    gap:8px!important;
    min-height:78px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card{
    width:78px!important;
    height:78px!important;
    min-width:78px!important;
    min-height:78px!important;
    max-width:78px!important;
    border-radius:14px!important;
    padding:6px 4px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card .hssw-apk-stat-icon{
    width:26px!important;
    height:26px!important;
    min-width:26px!important;
    min-height:26px!important;
    border-radius:10px!important;
    font-size:12px!important;
    margin-bottom:3px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card strong{
    font-size:10px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card .hssw-apk-stat-label{
    font-size:7.5px!important;
  }
}


/* HSware v7.4.47: remove old pseudo icons and keep one clean icon per APK hero box.
   The ugly top cloud/save/robot icons came from an old ::before rule. It is killed here. */
.hssw-post.hssw-apk-post .hssw-apk-stat-card::before,
.hssw-post.hssw-apk-post .hssw-apk-stat-card:before{
  content:none!important;
  display:none!important;
  width:0!important;
  height:0!important;
  min-width:0!important;
  min-height:0!important;
  opacity:0!important;
  visibility:hidden!important;
}

.hssw-post.hssw-apk-post .hssw-apk-stat-card{
  grid-template-areas:none!important;
}

.hssw-post.hssw-apk-post .hssw-apk-stat-card .hssw-apk-stat-icon{
  order:1!important;
}

.hssw-post.hssw-apk-post .hssw-apk-stat-card strong{
  order:2!important;
}

.hssw-post.hssw-apk-post .hssw-apk-stat-card .hssw-apk-stat-label{
  order:3!important;
}

/* Final stat grid: desktop 6 in one row, mobile keeps 3 + 3. */
@media (min-width:821px){
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    grid-column:1!important;
    grid-row:3!important;
    display:grid!important;
    grid-template-columns:repeat(6,88px)!important;
    width:auto!important;
    max-width:588px!important;
    min-height:88px!important;
    height:auto!important;
    gap:10px!important;
    margin:0!important;
    padding:0!important;
    border:0!important;
    border-radius:0!important;
    background:transparent!important;
    overflow:visible!important;
    justify-content:start!important;
    justify-items:start!important;
    align-items:start!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card{
    width:88px!important;
    height:88px!important;
    min-width:88px!important;
    min-height:88px!important;
    max-width:88px!important;
    aspect-ratio:1 / 1!important;
    border-radius:16px!important;
    background:rgba(255,255,255,.74)!important;
    border:1px solid rgba(148,163,184,.22)!important;
    box-shadow:0 12px 26px rgba(15,23,42,.07)!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;
    text-align:center!important;
    padding:7px 5px!important;
    gap:2px!important;
    overflow:hidden!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card .hssw-apk-stat-icon{
    width:30px!important;
    height:30px!important;
    min-width:30px!important;
    min-height:30px!important;
    border-radius:11px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    margin:0 auto 4px!important;
    background:linear-gradient(135deg,rgba(219,234,254,.95),rgba(240,253,244,.95))!important;
    font-size:14px!important;
    line-height:1!important;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.9)!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card strong{
    display:block!important;
    max-width:100%!important;
    font-size:11px!important;
    line-height:1.05!important;
    font-weight:950!important;
    color:#111827!important;
    text-align:center!important;
    white-space:normal!important;
    overflow-wrap:anywhere!important;
    word-break:normal!important;
    margin:0!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card .hssw-apk-stat-label{
    display:block!important;
    max-width:100%!important;
    font-size:8px!important;
    line-height:1.12!important;
    font-weight:850!important;
    color:#334155!important;
    text-align:center!important;
    white-space:normal!important;
    margin:0!important;
  }
}

@media (min-width:821px) and (max-width:1120px){
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    grid-template-columns:repeat(6,78px)!important;
    max-width:518px!important;
    gap:8px!important;
    min-height:78px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card{
    width:78px!important;
    height:78px!important;
    min-width:78px!important;
    min-height:78px!important;
    max-width:78px!important;
    border-radius:14px!important;
    padding:6px 4px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card .hssw-apk-stat-icon{
    width:26px!important;
    height:26px!important;
    min-width:26px!important;
    min-height:26px!important;
    border-radius:10px!important;
    font-size:12px!important;
    margin-bottom:3px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card strong{
    font-size:10px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card .hssw-apk-stat-label{
    font-size:7.5px!important;
  }
}

@media (max-width:820px){
  .hssw-post.hssw-apk-post .hssw-apk-stat-row{
    display:grid!important;
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:8px!important;
    border:0!important;
    border-radius:0!important;
    background:transparent!important;
    overflow:visible!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card{
    aspect-ratio:1 / 1!important;
    min-width:0!important;
    width:100%!important;
    max-width:none!important;
    height:auto!important;
    min-height:0!important;
    border-radius:16px!important;
    background:rgba(255,255,255,.74)!important;
    border:1px solid rgba(148,163,184,.22)!important;
    box-shadow:0 12px 26px rgba(15,23,42,.07)!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;
    text-align:center!important;
    padding:7px 5px!important;
    gap:2px!important;
    overflow:hidden!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card .hssw-apk-stat-icon{
    width:30px!important;
    height:30px!important;
    min-width:30px!important;
    min-height:30px!important;
    border-radius:11px!important;
    font-size:14px!important;
    margin:0 auto 4px!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card strong{
    font-size:11px!important;
    line-height:1.05!important;
    margin:0!important;
  }

  .hssw-post.hssw-apk-post .hssw-apk-stat-card .hssw-apk-stat-label{
    font-size:8px!important;
    line-height:1.12!important;
    margin:0!important;
  }
}
