/* =====================================================
   H5 Game Station - onionfont.com
   Mobile-first responsive stylesheet
   ===================================================== */

:root {
  /* Brand palette */
  --color-primary: #4A90E2;
  --color-primary-dark: #357ABD;
  --color-primary-light: #6FA5E8;
  --color-accent: #FF9500;
  --color-accent-dark: #E08600;
  --color-success: #4CD964;
  --color-danger: #FF3B30;

  /* Neutrals */
  --color-bg: #FFFFFF;
  --color-bg-soft: #F5F5F5;
  --color-bg-card: #FFFFFF;
  --color-border: #ECECEC;
  --color-text-main: #3A3A3C;
  --color-text-muted: #8E8E93;
  --color-text-light: #AEAEB2;

  /* Typography */
  --font-head: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing & shape */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --shadow-sm: 0 2px 8px rgba(58, 58, 60, 0.06);
  --shadow-md: 0 4px 18px rgba(58, 58, 60, 0.10);
  --shadow-lg: 0 8px 28px rgba(58, 58, 60, 0.14);
  --space: 16px;
  --max-w: 1200px;
  --header-h: 56px;
  --tabbar-h: 60px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg-soft);
  color: var(--color-text-main);
  line-height: 1.5;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--tabbar-h) + env(safe-area-inset-bottom, 0px));
  min-height: 100vh;
}

h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; line-height: 1.25; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Top Navigation Bar ---------- */
.app-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.app-header .header-inner {
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-primary);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.brand .brand-emoji { font-size: 20px; }
.brand .brand-tld { color: var(--color-accent); }

.search-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}
.search-wrap input {
  width: 100%;
  height: 36px;
  border-radius: 18px;
  border: 1px solid var(--color-border);
  background: var(--color-bg-soft);
  padding: 0 14px 0 36px;
  font-size: 14px;
  color: var(--color-text-main);
  outline: none;
  transition: border-color .2s, background .2s;
}
.search-wrap input:focus {
  border-color: var(--color-primary);
  background: #fff;
}
.search-wrap .search-icon {
  position: absolute;
  left: 12px;
  font-size: 14px;
  color: var(--color-text-muted);
  pointer-events: none;
}
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--color-text-main);
  background: transparent;
  transition: background .2s, transform .15s;
  flex-shrink: 0;
}
.icon-btn:active { transform: scale(0.9); background: var(--color-bg-soft); }

/* ---------- Category Nav (horizontal scroll) ---------- */
.category-nav {
  background: var(--color-bg);
  position: sticky;
  top: var(--header-h);
  z-index: 90;
  border-bottom: 1px solid var(--color-border);
}
.category-nav .cat-scroll {
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.category-nav .cat-scroll::-webkit-scrollbar { display: none; }

.cat-chip {
  flex: 0 0 auto;
  max-width: 180px;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--color-bg-soft);
  color: var(--color-text-main);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: background .2s, color .2s, transform .15s;
  border: 1px solid transparent;
}
.cat-chip:active { transform: scale(0.94); }
.cat-chip.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary-dark);
}

/* ---------- Layout container ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px 14px 32px;
}

/* ---------- Section ---------- */
.section { margin-bottom: 28px; }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 8px;
}
.section-title {
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.section-link {
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.section-link:active { opacity: 0.6; }

/* ---------- Hero / Welcome Banner ---------- */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero::after {
  content: "";
  position: absolute;
  right: -30px; top: -30px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero h1 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.hero p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 80%;
}

/* ---------- Game grid ---------- */
.game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.game-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

@media (min-width: 600px) {
  .game-grid { grid-template-columns: repeat(3, 1fr); }
  .game-grid.cols-3 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 900px) {
  .game-grid { grid-template-columns: repeat(4, 1fr); }
  .game-grid.cols-3 { grid-template-columns: repeat(5, 1fr); }
  .hero h1 { font-size: 26px; }
}

/* ---------- Game Card ---------- */
.game-card {
  display: block;
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .15s ease, box-shadow .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.game-card:active {
  transform: scale(0.96);
  box-shadow: var(--shadow-md);
}
.game-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--color-bg-soft);
  overflow: hidden;
}
.game-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.game-card:active .game-thumb img { transform: scale(1.04); }

.game-thumb .play-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.4) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 6px;
  opacity: 0;
  transition: opacity .2s;
}
.game-card:active .play-overlay { opacity: 1; }
.play-overlay .play-pill {
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}

.game-badge {
  position: absolute;
  top: 6px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.game-badge.cat { right: 6px; background: rgba(0, 0, 0, 0.55); color: #fff; }
.game-badge.hot { left: 6px; background: var(--color-danger); color: #fff; }

.game-info {
  padding: 8px 10px 10px;
}
.game-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.game-desc {
  font-size: 11px;
  color: var(--color-text-muted);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 30px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: transform .15s, opacity .2s, background .2s;
  -webkit-tap-highlight-color: transparent;
  text-align: center;
  min-height: 44px;
  border: none;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.35);
}
.btn-accent {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 149, 0, 0.35);
}
.btn-ghost {
  background: var(--color-bg-soft);
  color: var(--color-text-main);
  border: 1px solid var(--color-border);
}
.btn-block { width: 100%; }
.btn-row { display: flex; gap: 10px; }

/* ---------- Game detail page ---------- */
.detail-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-soft);
  margin-bottom: 14px;
  box-shadow: var(--shadow-md);
}
.detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero .back-btn {
  position: absolute;
  top: 12px; left: 12px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.detail-hero .back-btn:active { transform: scale(0.9); }

.detail-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}
.detail-title { font-size: 22px; font-weight: 700; }
.detail-cat-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(74, 144, 226, 0.12);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.detail-desc {
  font-size: 14px;
  color: var(--color-text-main);
  line-height: 1.6;
  margin: 10px 0 14px;
}
.detail-block {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.detail-block h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.detail-block p, .detail-block li {
  font-size: 13px;
  color: var(--color-text-main);
  line-height: 1.55;
}
.detail-block ul { margin: 0; padding-left: 18px; }

.detail-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0;
}

/* ---------- Game play page ---------- */
.play-page {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  background: #1c1c1e;
  color: #fff;
  padding-bottom: 0;
}
.play-header {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex-shrink: 0;
  padding-top: env(safe-area-inset-top, 0px);
}
.play-title {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.play-frame-wrap {
  flex: 1;
  position: relative;
  background: #000;
  overflow: hidden;
}
.play-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.play-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  background: #1c1c1e;
  z-index: 5;
  transition: opacity .3s;
}
.play-loading.hide { opacity: 0; pointer-events: none; }
.spinner {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.play-error {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
  background: #1c1c1e;
  color: #fff;
  z-index: 10;
}
.play-error.show { display: flex; }
.play-error .err-emoji { font-size: 40px; }

/* ---------- Search page ---------- */
.search-page .search-box {
  background: #fff;
  padding: 12px 14px;
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  border-bottom: 1px solid var(--color-border);
}
.search-page .search-box .search-wrap input {
  height: 42px;
  font-size: 15px;
}
.search-suggest-title {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 600;
  margin: 14px 0 8px;
}
.suggest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.suggest-tag {
  background: var(--color-bg-soft);
  color: var(--color-text-main);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  transition: background .2s, color .2s;
}
.suggest-tag:active { transform: scale(0.96); }

.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--color-text-muted);
}
.empty-state .empty-emoji { font-size: 40px; margin-bottom: 8px; }
.empty-state h3 { color: var(--color-text-main); margin-bottom: 4px; }
.empty-state p { font-size: 13px; margin: 0; }

/* ---------- Profile page ---------- */
.profile-card {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 22px;
  text-align: center;
  margin-bottom: 18px;
  box-shadow: var(--shadow-md);
}
.avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 10px;
}
.profile-card .name { font-size: 18px; font-weight: 700; }
.profile-card .sub { font-size: 12px; opacity: 0.9; }

.list-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
}
.list-card .list-head {
  padding: 14px 14px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list-card .list-head h3 {
  font-size: 15px;
  font-weight: 700;
}
.list-card .list-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-top: 1px solid var(--color-border);
  transition: background .15s;
}
.list-card .list-row:active { background: var(--color-bg-soft); }
.list-card .list-row .row-thumb {
  width: 56px;
  height: 42px;
  border-radius: 8px;
  background: var(--color-bg-soft);
  overflow: hidden;
  flex-shrink: 0;
}
.list-card .list-row .row-thumb img { width: 100%; height: 100%; object-fit: cover; }
.list-card .list-row .row-title { font-size: 13px; font-weight: 600; flex: 1; }
.list-card .list-row .row-meta { font-size: 11px; color: var(--color-text-muted); }

.history-list .empty-mini {
  padding: 18px;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 13px;
}

/* Settings list */
.settings-list .set-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border-top: 1px solid var(--color-border);
  font-size: 14px;
}
.settings-list .set-item:first-child { border-top: none; }
.settings-list .set-item .set-label { display: flex; align-items: center; gap: 10px; }
.settings-list .set-item .set-ico {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--color-bg-soft);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.settings-list .set-item .set-val { color: var(--color-text-muted); font-size: 13px; }
.settings-list .set-item:active { background: var(--color-bg-soft); }

/* Switch */
.switch {
  position: relative;
  width: 44px; height: 26px;
  background: #d1d1d6;
  border-radius: 999px;
  transition: background .2s;
  cursor: pointer;
}
.switch::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 22px; height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.switch.on { background: var(--color-success); }
.switch.on::after { transform: translateX(18px); }

/* ---------- Static content (about, privacy) ---------- */
.static-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.static-hero h1 { font-size: 24px; margin-bottom: 8px; }
.static-hero p { margin: 0; opacity: 0.9; font-size: 14px; }

.prose {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.prose h2 { font-size: 17px; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.prose h3 { font-size: 14px; margin: 12px 0 6px; color: var(--color-text-main); }
.prose p, .prose li { font-size: 14px; color: var(--color-text-main); line-height: 1.6; }
.prose ul { padding-left: 20px; margin: 6px 0; }
.prose a { color: var(--color-primary); text-decoration: underline; }
.prose .contact-row {
  display: flex; gap: 10px; align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}
.prose .contact-row:last-child { border-bottom: none; }

/* ---------- Footer ---------- */
.app-footer {
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 22px 14px calc(20px + env(safe-area-inset-bottom, 0px));
  text-align: center;
  margin-top: 24px;
}
.app-footer .footer-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 13px;
}
.app-footer .footer-links a { color: var(--color-primary); }
.app-footer .footer-links a:active { opacity: 0.6; }
.app-footer .copyright { font-size: 12px; color: var(--color-text-muted); margin: 0; }

/* ---------- Bottom tab bar ---------- */
.tabbar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: calc(var(--tabbar-h) + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: stretch;
  z-index: 95;
  max-width: var(--max-w);
  margin: 0 auto;
}
.tabbar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 10px;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color .15s, transform .15s;
  -webkit-tap-highlight-color: transparent;
}
.tabbar a:active { transform: scale(0.92); }
.tabbar a.active { color: var(--color-primary); }
.tabbar a .tb-ico { font-size: 20px; line-height: 1; }
.tabbar a .tb-lbl { font-size: 10px; font-weight: 500; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: calc(var(--tabbar-h) + 20px + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%) translateY(40px);
  background: rgba(58, 58, 60, 0.95);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Skeleton loader ---------- */
.skel-card {
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.skel-thumb {
  aspect-ratio: 4 / 3;
  background: linear-gradient(90deg, #ececec 25%, #f5f5f5 50%, #ececec 75%);
  background-size: 200% 100%;
  animation: skel 1.4s infinite linear;
}
.skel-line {
  height: 10px;
  margin: 8px 10px;
  border-radius: 4px;
  background: linear-gradient(90deg, #ececec 25%, #f5f5f5 50%, #ececec 75%);
  background-size: 200% 100%;
  animation: skel 1.4s infinite linear;
}
.skel-line.short { width: 60%; }
@keyframes skel {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---------- Misc ---------- */
.sort-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.sort-pill {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--color-bg-soft);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-main);
  border: 1px solid transparent;
}
.sort-pill.active { background: var(--color-primary); color: #fff; }
.sort-pill:active { transform: scale(0.95); }

.load-more {
  display: block;
  margin: 18px auto 0;
  padding: 10px 26px;
  background: var(--color-bg-soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-main);
}
.load-more:active { transform: scale(0.96); }

.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 600px) { .related-grid { grid-template-columns: repeat(4, 1fr); } }

/* Skip link / accessibility */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
