:root {
  --bg: #03050a;
  --bg-2: #07111f;
  --panel: rgba(8, 15, 28, 0.82);
  --panel-2: rgba(255,255,255,0.055);
  --panel-3: rgba(255,255,255,0.035);
  --text: #f7fbff;
  --muted: #aeb9cc;
  --muted-2: #7f8da4;
  --blue: #00b7ff;
  --blue-2: #006cff;
  --green: #18d344;
  --green-2: #49ff8a;
  --border: rgba(255,255,255,0.12);
  --line: rgba(255,255,255,0.08);
  --shadow: rgba(0,183,255,0.22);
  --orange: #ff9b3d;
  --danger: #ff4d70;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 183, 255, 0.18), transparent 34%),
    radial-gradient(circle at 82% 82%, rgba(73, 255, 138, 0.10), transparent 30%),
    radial-gradient(circle at 15% 65%, rgba(0, 108, 255, 0.12), transparent 26%),
    linear-gradient(145deg, var(--bg) 0%, var(--bg-2) 45%, var(--bg) 100%);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 26%, transparent 78%);
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(transparent 0 49%, rgba(0,183,255,0.03) 50%, transparent 51%);
  background-size: 100% 7px;
  opacity: .25;
  pointer-events: none;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.site-shell { position: relative; z-index: 1; width: min(1240px, calc(100% - 28px)); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 10px;
  z-index: 20;
  margin: 12px 0 24px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(4,10,20,0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 40px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.05);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 210px; }
.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 16px;
  padding: 4px;
  background: rgba(0,183,255,0.08);
  border: 1px solid rgba(0,183,255,0.22);
  filter: drop-shadow(0 0 16px rgba(0,183,255,.30));
}
.brand strong { display: block; font-size: 20px; }
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.nav-links { display: flex; gap: 8px; flex: 1; flex-wrap: wrap; justify-content: center; }
.nav-links a, .admin-link {
  padding: 11px 12px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;
  color: #e7f7ff;
}
.nav-links a:hover, .admin-link:hover { background: rgba(255,255,255,0.05); }
.admin-link {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 14px 32px rgba(0,183,255,.18);
}
.hero-home { margin-bottom: 24px; }
.hero-panel, .panel, .content-card, .stat-card, .app-card, .app-list-item, .category-card {
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,0.04);
}
.hero-panel {
  padding: 28px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
  min-height: 420px;
}
.hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: .95;
  letter-spacing: -2px;
}
.hero-sub { color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 760px; margin: 0 0 18px; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}
.pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--green-2); box-shadow: 0 0 16px var(--green-2); }
.hero-search { display: flex; align-items: center; gap: 10px; margin: 22px 0 16px; }
.hero-search-input, .input, .select, .textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,0.96);
  color: #111;
  font: inherit;
}
.hero-search-btn, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.hero-search-btn, .btn.primary, .btn.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--green), #0fb838);
  box-shadow: 0 16px 36px rgba(24,211,68,.22);
}
.btn.secondary, .btn.btn-light {
  color: var(--text);
  background: var(--panel-2);
}
.btn.btn-dark {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 16px 36px rgba(0,183,255,.22);
}
.btn.btn-outline {
  color: var(--text);
  background: rgba(255,255,255,0.03);
}
.hero-buttons, .stacked-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.stacked-buttons { flex-direction: column; }
.hero-social-note { color: var(--muted-2); font-size: 13px; margin-top: 14px; }
.hero-art { display: flex; justify-content: center; }
.hero-logo-card {
  min-height: 340px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(0,183,255,.08), rgba(255,255,255,.02));
  position: relative;
  overflow: hidden;
}
.hero-logo-card::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 183, 255, 0.28), transparent 68%);
  filter: blur(4px);
}
.hero-logo-card img {
  position: relative;
  width: min(100%, 420px);
  filter: drop-shadow(0 0 34px rgba(0,183,255,0.42));
}
.section { margin: 28px 0; }
.section-gap { margin-top: 8px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.section-head.compact { margin-bottom: 10px; }
.section h2 { margin: 0; font-size: 28px; letter-spacing: -.8px; }
.section-head p { margin: 5px 0 0; color: var(--muted); }
.featured-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.featured-banner {
  display: grid; grid-template-columns: 86px 1fr; gap: 12px; align-items: center;
  min-height: 118px; padding: 14px; border-radius: 22px;
  border: 1px solid var(--border); background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
}
.featured-banner img { width: 86px; height: 86px; object-fit: cover; border-radius: 20px; background: rgba(255,255,255,.03); }
.featured-banner strong { display:block; font-size:16px; }
.featured-banner span { color: var(--muted); font-size:13px; }
.app-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.app-grid.six-grid { grid-template-columns: repeat(6, minmax(0,1fr)); }
.app-card { overflow: hidden; transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease; }
.app-card:hover, .app-list-item:hover, .category-card:hover, .featured-banner:hover, .btn:hover, .hero-search-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(0,183,255,.14);
  border-color: rgba(0,183,255,.34);
}
.app-card-link { display: block; padding: 14px; }
.app-card-thumb-wrap {
  display: flex; justify-content: center; align-items: center; min-height: 116px; margin-bottom: 10px;
  border-radius: 20px; background: rgba(255,255,255,.03);
}
.app-icon { width: 92px; height: 92px; border-radius: 24px; object-fit: cover; box-shadow: 0 18px 34px rgba(0,0,0,.28); }
.app-title-row h3 { margin: 0; font-size: 16px; line-height: 1.2; min-height: 38px; }
.muted { color: var(--muted); }
.app-dev { font-size: 13px; }
.meta-row { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.meta-row span, .badge {
  display: inline-flex; align-items: center;
  padding: 5px 8px; border-radius: 999px; background: rgba(255,255,255,.06); color: #eaf7ff; font-size: 11px; font-weight: 800;
}
.badge.hot { background: rgba(255,155,61,.14); color: #ffbf7c; }
.badge.pin { background: rgba(0,183,255,.13); color: #84dfff; }
.short-desc { margin: 10px 0 8px; color: var(--muted); font-size: 13px; line-height: 1.45; min-height: 38px; }
.card-bottom-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 10px; }
.star-row { color: #fff7a5; font-size: 12px; letter-spacing: 1px; }
.download-mini { color: var(--muted-2); font-size: 12px; }
.card-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.two-col { display: grid; grid-template-columns: 1fr 340px; gap: 20px; }
.categories-showcase { align-items: start; }
.sidebar-stack { display: grid; gap: 16px; }
.section-head-accent { position: relative; }
.section-kicker {
  display: inline-block;
  margin-bottom: 8px;
  padding-left: 14px;
  color: var(--green-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  position: relative;
}
.section-kicker::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 20px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, var(--green-2), var(--blue));
  box-shadow: 0 0 18px rgba(73,255,138,.35);
}
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.category-card { padding: 18px; display: grid; gap: 8px; min-height: 108px; }
.category-card strong { font-size: 18px; }
.category-card span { color: var(--muted); font-size: 13px; }
.category-card-rich {
  min-height: 138px;
  padding: 18px 20px;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  background:
    radial-gradient(circle at 100% 0%, rgba(73,255,138,.12), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
}
.category-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(0,183,255,.12), rgba(73,255,138,.08));
  color: var(--green-2);
  font-size: 28px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 10px 24px rgba(0,0,0,.18);
}
.category-copy { display: grid; gap: 6px; align-content: start; }
.category-copy strong { font-size: 18px; line-height: 1.2; }
.category-copy small { color: var(--muted); font-size: 13px; line-height: 1.45; }
.category-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--green-2);
  font-size: 14px;
  font-weight: 900;
}
.telegram-box { background: linear-gradient(180deg, rgba(0,183,255,.10), rgba(255,255,255,.035)); }
.telegram-box-rich {
  position: relative;
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(73,255,138,.15), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.03));
}
.telegram-box-rich::after {
  content: '';
  position: absolute;
  inset: auto -40px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(73,255,138,.12), transparent 68%);
  pointer-events: none;
}
.telegram-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.telegram-heading h3 { margin: 0; font-size: 20px; }
.telegram-shield {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(73,255,138,.10);
  border: 1px solid rgba(73,255,138,.20);
  color: var(--green-2);
  font-size: 20px;
}
.telegram-copy { line-height: 1.65; margin-bottom: 16px; }
.telegram-actions .btn { justify-content: space-between; }
.btn-with-arrow { gap: 14px; }
.stats-card-grid { display: grid; gap: 14px; margin-top: 16px; }
.stats-card-grid-rich { margin-top: 0; }
.stat-card { padding: 22px; }
.stat-card.neon strong { display: block; font-size: 34px; }
.stat-card span { color: var(--muted); font-weight: 700; }
.stat-card-rich {
  display: grid;
  grid-template-columns: 58px 1fr 92px;
  gap: 16px;
  align-items: center;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 100% 0%, rgba(73,255,138,.10), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
}
.stat-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(73,255,138,.10);
  border: 1px solid rgba(73,255,138,.18);
  color: var(--green-2);
  font-size: 28px;
  font-weight: 900;
}
.stat-card-downloads .stat-icon {
  background: rgba(0,183,255,.10);
  border-color: rgba(0,183,255,.18);
  color: #7dd3ff;
}
.stat-copy strong { display: block; font-size: 32px; line-height: 1; }
.stat-copy span { display: block; margin-top: 8px; color: var(--muted); }
.stat-sparkline {
  height: 46px;
  border-radius: 999px;
  position: relative;
  opacity: .95;
}
.stat-sparkline::before {
  content: '';
  position: absolute;
  inset: 12px 0 12px auto;
  width: 90px;
  border-bottom: 4px solid currentColor;
  border-radius: 999px;
  transform: skewX(-28deg);
  opacity: .25;
}
.stat-sparkline::after {
  content: '';
  position: absolute;
  right: 0;
  top: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
}
.stat-card-apps .stat-sparkline { color: var(--green-2); }
.stat-card-downloads .stat-sparkline { color: #56b3ff; }
.search-panel { display: flex; gap: 10px; margin-bottom: 18px; }
.detail-hero {
  display: grid; grid-template-columns: 110px 1fr auto; gap: 20px; align-items: center;
  padding: 24px; border-radius: 28px; background: var(--panel); border: 1px solid var(--border); box-shadow: 0 20px 40px rgba(0,0,0,.25); margin-bottom: 18px;
}
.detail-icon { width: 110px; height: 110px; object-fit: cover; border-radius: 28px; box-shadow: 0 16px 35px rgba(0,0,0,.28); }
.detail-hero h1 { margin: 0 0 8px; font-size: clamp(28px,4vw,44px); letter-spacing: -1.2px; }
.content-card { padding: 22px; margin-bottom: 16px; }
.content-card h2, .content-card h3 { margin-top: 0; }
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.feature-list li {
  padding: 10px 12px; border-left: 4px solid var(--green);
  border-radius: 12px; background: rgba(255,255,255,.05);
}
.download-box {
  display: grid; gap: 12px; padding: 18px; border-radius: 22px;
  background: linear-gradient(180deg, rgba(73,255,138,.10), rgba(255,255,255,.03)); border: 1px solid rgba(73,255,138,.18);
}
.code-row {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding: 10px;
  border-radius: 14px; background: rgba(255,255,255,.05); border: 1px dashed rgba(73,255,138,.35);
}
.code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 18px; font-weight: 900; color: var(--green-2); }
.screenshots { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; }
.screenshots img { width: 190px; max-height: 340px; object-fit: cover; border-radius: 22px; border: 1px solid var(--border); }
.footer {
  margin: 34px 0 18px; padding: 22px 4px; border-top: 1px solid var(--line); color: var(--muted);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-links a { color: #d9f3ff; }
.flash { padding: 12px 14px; border-radius: 14px; margin-bottom: 12px; font-weight: 800; }
.flash.ok { background: rgba(73,255,138,.14); color: #bbffd4; }
.flash.error { background: rgba(255,77,112,.16); color: #ffd2dc; }
.admin-table { width: 100%; border-collapse: collapse; background: transparent; border-radius: 18px; overflow: hidden; }
.admin-table th, .admin-table td { text-align: left; padding: 12px; border-bottom: 1px solid var(--line); }
.admin-table th { background: rgba(255,255,255,.04); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: grid; gap: 6px; font-weight: 800; }
label span { color: var(--muted); font-size: 13px; }
.app-list { display: grid; gap: 10px; }
.app-list-item {
  display: grid; grid-template-columns: 50px 1fr auto; gap: 12px; align-items: center; padding: 12px; border-radius: 18px;
}
.mini-icon { width: 50px; height: 50px; border-radius: 14px; object-fit: cover; background: rgba(255,255,255,.03); }
.app-list-item span { display: block; color: var(--muted); font-size: 13px; margin-top: 2px; }
.app-list-item em { font-style: normal; font-weight: 900; color: var(--green-2); }
@media (max-width: 1180px) {
  .app-grid.six-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .featured-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .topbar { align-items: stretch; flex-direction: column; }
  .nav-links { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .hero-panel, .two-col, .detail-hero { grid-template-columns: 1fr; }
  .stat-card-rich { grid-template-columns: 58px 1fr 84px; }
  .app-grid, .app-grid.six-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-strip { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .site-shell { width: min(100%, calc(100% - 18px)); }
  .hero-panel { padding: 18px; min-height: auto; }
  .hero-search, .search-panel { flex-direction: column; }
  .hero-buttons { flex-direction: column; }
  .app-grid, .app-grid.six-grid, .category-grid, .featured-strip { grid-template-columns: 1fr; }
  .category-card-rich { grid-template-columns: 56px 1fr; }
  .category-icon { width: 56px; height: 56px; font-size: 24px; }
  .stat-card-rich { grid-template-columns: 1fr; }
  .stat-sparkline { width: 90px; }
  .brand { min-width: auto; }
  .brand small { max-width: 220px; }
  .detail-hero { padding: 18px; }
  .content-card, .stat-card { padding: 18px; }
  .hero-copy h1 { letter-spacing: -1px; }
}


.store-fetch-box {
  grid-column: 1 / -1;
  margin-bottom: 20px;
  padding: 18px;
  border: 1px solid rgba(0,183,255,0.18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(0,183,255,.08), rgba(255,255,255,.025));
}

.store-fetch-box h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.store-fetch-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 14px;
}

.fetch-status {
  margin-top: 12px;
  min-height: 20px;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.fetch-status.ok { color: #9effbd; }
.fetch-status.error { color: #ffb8c6; }
.fetch-status.loading { color: #8ee5ff; }

@media (max-width: 620px) {
  .store-fetch-row {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }
}


/* Modix v0.5 admin editor polish */
.admin-editor-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 18px;
  align-items: start;
}

.telegram-preview-box {
  position: sticky;
  top: 110px;
  padding: 18px;
  border: 1px solid rgba(73,255,138,.18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(73,255,138,.08), rgba(255,255,255,.025));
}

.telegram-preview {
  min-height: 360px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  line-height: 1.45;
  color: #111;
}

.advanced-fields {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.03);
}

.advanced-fields summary {
  cursor: pointer;
  font-weight: 900;
  color: #dff7ff;
}

.form-grid.nested {
  margin-top: 14px;
}

.toggle-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}

.toggle-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 1050px) {
  .admin-editor-layout {
    grid-template-columns: 1fr;
  }

  .telegram-preview-box {
    position: static;
  }
}

.refetch-note {
  margin-top: 10px;
  margin-bottom: 10px;
}


.single-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}


.version-check-tools {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-bottom: 12px;
}

.version-check-table code {
  color: #dff7ff;
  font-size: 12px;
  word-break: break-word;
}

@media (max-width: 760px) {
  .version-check-tools {
    grid-template-columns: 1fr;
  }

  .version-check-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}


.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0;
}

.info-grid div {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
}

.info-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 4px;
}

.info-grid strong {
  display: block;
  color: var(--text);
  word-break: break-word;
}

@media (max-width: 620px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}
