/* 아이콘 그리드 */
.launcher{
  list-style:none; margin:0; padding:0;
  display:grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap:16px;
}
.launcher__item{ display:flex; }
.launcher__card{
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:10px; text-decoration:none; padding:16px 12px; width:100%;
  background:var(--win); border:1px solid var(--border); border-radius:16px;
  box-shadow:var(--shadow);
  color:#0f172a;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.launcher__card:hover{
  transform: translateY(-2px);
  border-color:#cfd5dd;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}
.launcher__icon{
  width:64px; height:64px; border-radius:14px; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(180deg,#ffffff,#f1f4fb);
  border:1px solid #e3e7ee;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 4px 10px rgba(0,0,0,.05);
}
.launcher__icon img{ width:70%; height:70%; object-fit:contain; }
.launcher__emoji{ font-size:34px; line-height:1; }
.launcher__name{ font-weight:700; font-size:14px; text-align:center; }
.launcher__meta{ display:flex; gap:6px; align-items:center; }
.badge--muted{ background:#f3f4f6; color:#4b5563; border-color:#e5e7eb; }

/* 버전 로그 */
.versionlog .vitem{ padding:10px 2px; border-bottom:1px solid var(--border); }
.versionlog .vitem:last-child{ border-bottom:none; }
.vitem__head{ display:flex; gap:8px; align-items:center; justify-content:space-between; }
.vitem__version{ font-weight:800; color:#111827; }
.vitem__date{ font-size:12px; color:#6b7280; }
.vitem__title{ margin-top:4px; font-weight:600; color:#111827; }
.vitem__notes{ margin:8px 0 0 18px; }
.vitem__notes li{ margin:3px 0; }
