:root {
  color-scheme: dark;
  --bg: #07111f;
  --bg-soft: rgba(8, 19, 36, 0.82);
  --bg-panel: rgba(10, 22, 42, 0.76);
  --bg-highlight: rgba(20, 40, 74, 0.85);
  --line: rgba(148, 185, 255, 0.15);
  --text: #f6f3ea;
  --muted: #99abc8;
  --accent: #ff8f5a;
  --accent-cool: #82d2ff;
  --success: #99f0c7;
  --danger: #ff8d8d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --font-sans: "Avenir Next", "Segoe UI Variable", "Segoe UI", "Helvetica Neue", "Nimbus Sans", Arial, sans-serif;
  --font-mono: "Cascadia Code", "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

[x-cloak] {
  display: none !important;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 143, 90, 0.18), transparent 24%),
    radial-gradient(circle at right 18%, rgba(130, 210, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #09111d 0%, #050b14 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.65), transparent 90%);
}

button,
textarea {
  font: inherit;
}

button {
  border: 0;
  border-radius: 14px;
  padding: 0.8rem 1rem;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    opacity 160ms ease;
}

button:hover:not(:disabled) {
  transform: translateY(-1px);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.primary-button {
  background: linear-gradient(135deg, var(--accent), #ffc765);
  color: #201106;
  font-weight: 700;
}

.ghost-button,
.list-card button,
.slot-card button {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.shell {
  width: min(1480px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 28px 0 42px;
}

.toast-stack {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 30;
  display: grid;
  gap: 12px;
  width: min(360px, calc(100vw - 32px));
}

.toast-card {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 15, 28, 0.94);
  box-shadow: var(--shadow);
  animation: rise 260ms ease;
}

.toast-card.success {
  border-color: rgba(153, 240, 199, 0.35);
}

.toast-card.info {
  border-color: rgba(130, 210, 255, 0.35);
}

.toast-card strong,
.tab-button {
  display: block;
}

.toast-card p,
.toast-card small {
  margin: 0;
  color: var(--muted);
}

.victory-banner {
  margin-bottom: 18px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(153, 240, 199, 0.28);
  background: linear-gradient(135deg, rgba(153, 240, 199, 0.12), rgba(130, 210, 255, 0.08));
  box-shadow: var(--shadow);
}

.victory-banner h2 {
  margin: 0 0 8px;
}

.victory-banner p {
  margin: 0;
  color: var(--muted);
}

.hero {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(12, 24, 47, 0.78), rgba(8, 15, 29, 0.7));
  box-shadow: var(--shadow);
  animation: rise 420ms ease;
}

.hero h1,
.panel h2 {
  margin: 0;
  line-height: 0.96;
}

.hero h1 {
  max-width: 16ch;
  font-size: clamp(1.8rem, 4.4vw, 3.4rem);
  line-height: 1.04;
}

.hero-copy {
  max-width: 62ch;
  margin-top: 0.75rem;
  color: var(--muted);
}

.hero-copy-block {
  display: grid;
  gap: 10px;
}

.hero-summary {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.hero-summary span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-actions {
  display: grid;
  gap: 16px;
  min-width: 280px;
}

.locale-switcher {
  display: inline-flex;
  gap: 8px;
  align-self: flex-end;
}

.flag-button {
  min-width: 88px;
  padding: 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.flag-button.active {
  background: linear-gradient(135deg, rgba(255, 143, 90, 0.22), rgba(130, 210, 255, 0.18));
  border-color: rgba(255, 199, 101, 0.42);
}

.message-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 14px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(130, 210, 255, 0.16);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(8, 20, 36, 0.86), rgba(11, 27, 49, 0.72));
}

.message-preview strong,
.message-card strong {
  display: block;
  margin-bottom: 6px;
}

.message-preview p,
.message-card p,
.message-card span {
  margin: 0;
  color: var(--muted);
}

.minimal-actions {
  min-width: auto;
}

.status-panel {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 18px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.page-tab-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0 18px;
}

.page-tab {
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 1rem;
}

.page-tab.active {
  color: var(--text);
  border-color: rgba(130, 210, 255, 0.35);
  background: linear-gradient(135deg, rgba(130, 210, 255, 0.14), rgba(255, 143, 90, 0.08));
}

.page-tab.attention {
  border-color: rgba(255, 199, 101, 0.38);
  box-shadow: 0 0 0 1px rgba(255, 199, 101, 0.12), 0 0 22px rgba(255, 199, 101, 0.18);
}

.page-tab.attention:not(.active) {
  background: linear-gradient(135deg, rgba(255, 199, 101, 0.14), rgba(255, 143, 90, 0.08));
  color: #ffe9bd;
}

.core-resource-grid {
  margin-bottom: 14px;
}

.resource-card,
.panel,
.recipe-card,
.list-card,
.slot-card {
  border: 1px solid var(--line);
  background: var(--bg-panel);
  backdrop-filter: blur(16px);
}

.resource-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 22px;
  animation: rise 520ms ease both;
}

.resource-card strong,
.list-card strong,
.slot-card strong,
.recipe-card strong {
  display: block;
  margin-bottom: 4px;
}

.resource-card p,
.list-card p,
.slot-card p,
.recipe-card p,
.hero p,
.dim,
.log-entry p,
.slot-card small,
.benchmark-box small {
  margin: 0;
  color: var(--muted);
}

.resource-chip {
  width: 14px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--chip), transparent);
  box-shadow: 0 0 30px color-mix(in srgb, var(--chip) 50%, transparent);
}

.resource-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
    color-mix(in srgb, var(--chip) 26%, rgba(7, 17, 31, 0.94));
  border: 1px solid color-mix(in srgb, var(--chip) 34%, rgba(255, 255, 255, 0.08));
  color: color-mix(in srgb, var(--chip) 72%, white);
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.inventory-panel {
  margin-bottom: 18px;
}

.items-view,
.booster-layout {
  display: grid;
  gap: 18px;
}

.storage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0 14px;
}

.storage-card,
.inventory-card {
  border: 1px solid var(--line);
  background: rgba(7, 17, 31, 0.65);
  border-radius: 20px;
  padding: 14px;
}

.storage-card__head,
.inventory-card__head {
  display: flex;
  gap: 12px;
  align-items: center;
}

.storage-card__value {
  margin: 12px 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.inventory-card {
  display: grid;
  gap: 12px;
  transition: border-color 160ms ease, transform 160ms ease, opacity 160ms ease;
}

.inventory-usage {
  display: grid;
  gap: 8px;
}

.inventory-meta-label {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cool);
}

.hint-chip-list,
.message-list {
  display: grid;
  gap: 10px;
}

.hint-chip-list {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.hint-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(130, 210, 255, 0.12);
  color: var(--text);
  font-size: 0.88rem;
}

.inventory-card.empty {
  opacity: 0.6;
}

.inventory-card.full {
  border-color: rgba(255, 143, 90, 0.35);
}

.inventory-icon {
  min-width: 44px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 0.8rem;
}

.capacity-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.capacity-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, color-mix(in srgb, var(--fill) 70%, white), var(--fill));
}

.compact-bar {
  height: 6px;
}

.layout {
  display: grid;
  grid-template-columns: 1.1fr 1.25fr 0.92fr;
  gap: 18px;
  align-items: start;
}

.workspace-layout {
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
}

.panel,
.stack-panel {
  border-radius: 28px;
}

.panel {
  padding: 20px;
  box-shadow: var(--shadow);
}

.stack-panel {
  display: grid;
  gap: 14px;
}

.side-panel {
  display: grid;
  gap: 18px;
}

.booster-layout .side-panel {
  width: 100%;
  max-width: none;
}

.tabs-panel {
  min-height: 640px;
}

.compact {
  padding: 20px;
}

.panel-head,
.card-actions,
.editor-actions {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}

.recipe-list,
.research-list,
.building-list,
.slot-grid,
.log-list,
.reward-chips {
  display: grid;
  gap: 12px;
}

.message-card {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(7, 17, 31, 0.62);
}

.message-card.unread {
  border-color: rgba(255, 199, 101, 0.28);
  box-shadow: 0 0 0 1px rgba(255, 199, 101, 0.08);
}

.message-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.message-card__meta,
.log-subhead {
  margin-top: 4px;
}

.tab-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.tab-button {
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.tab-button.active {
  color: var(--text);
  border-color: rgba(130, 210, 255, 0.35);
  background: linear-gradient(135deg, rgba(130, 210, 255, 0.14), rgba(255, 143, 90, 0.1));
}

.tab-content {
  display: grid;
  gap: 12px;
}

.archive-toggle-row {
  display: flex;
  justify-content: flex-start;
}

.archive-list {
  display: grid;
  gap: 12px;
}

.recipe-card,
.list-card,
.slot-card {
  width: 100%;
  text-align: left;
  padding: 16px;
  border-radius: 20px;
}

.recipe-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.recipe-card.active {
  background: linear-gradient(135deg, rgba(130, 210, 255, 0.16), rgba(255, 143, 90, 0.16));
  border-color: rgba(130, 210, 255, 0.4);
}

.recipe-card.completed {
  background: linear-gradient(135deg, rgba(114, 232, 176, 0.24), rgba(72, 188, 255, 0.16));
  border-color: rgba(114, 232, 176, 0.48);
  box-shadow: 0 0 0 1px rgba(114, 232, 176, 0.12), 0 0 24px rgba(72, 188, 255, 0.1);
}

.recipe-card.completed:not(.active) {
  color: #eefcf6;
}

.recipe-card.completed:not(.active) p,
.recipe-card.completed:not(.active) span {
  color: rgba(223, 244, 235, 0.9);
}

.archive-card {
  opacity: 0.82;
}

.attention-button {
  background: linear-gradient(135deg, rgba(255, 199, 101, 0.95), rgba(255, 143, 90, 0.92));
  color: #221307;
  font-weight: 700;
  box-shadow: 0 0 0 1px rgba(255, 199, 101, 0.16), 0 0 18px rgba(255, 199, 101, 0.18);
}

.attention-button:disabled {
  box-shadow: none;
}

.empty-state-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px dashed rgba(130, 210, 255, 0.2);
  background: rgba(7, 17, 31, 0.42);
}

.empty-state-card strong,
.empty-state-card p {
  display: block;
  margin: 0;
}

.empty-state-card strong {
  margin-bottom: 8px;
}

.empty-state-card p:last-child {
  color: var(--muted);
}

.examples {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.examples pre,
.source-input,
.benchmark-box,
.log-entry span,
.signature-card pre,
.source-highlight {
  font-family: var(--font-mono);
}

.examples pre,
.benchmark-box,
.signature-card {
  margin: 0;
  padding: 14px;
  border-radius: 18px;
  background: rgba(3, 10, 20, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: auto;
}

.signature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.signature-card p {
  margin-top: 0;
}

.parameter-list {
  display: grid;
  gap: 10px;
}

.parameter-list strong {
  display: block;
  margin-bottom: 4px;
}

.parameter-list p,
.signature-card pre {
  margin: 0;
  color: var(--muted);
}

.source-wrapper {
  margin: 14px 0 0;
  border-radius: 24px;
  border: 1px solid rgba(130, 210, 255, 0.12);
  background: linear-gradient(180deg, rgba(6, 13, 24, 0.96), rgba(2, 8, 16, 0.96));
  overflow: hidden;
}

.source-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(90deg, rgba(130, 210, 255, 0.1), rgba(255, 143, 90, 0.08));
  color: var(--muted);
  font-size: 0.86rem;
}

.source-editor {
  display: grid;
  grid-template-columns: 62px 1fr;
  min-height: 380px;
}

.source-gutter {
  display: grid;
  align-content: start;
  gap: 0;
  padding: 18px 10px 18px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(153, 171, 200, 0.68);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  line-height: 1.6;
  overflow: auto;
  scrollbar-width: none;
}

.site-footer {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 18px;
  padding: 0 6px;
}

.site-footer a,
.legal-links a,
.legal-backlink {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover,
.legal-links a:hover,
.legal-backlink:hover {
  color: var(--text);
}

.legal-body {
  min-height: 100vh;
}

.legal-shell {
  width: min(960px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 40px 0 56px;
}

.legal-page {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(12, 24, 47, 0.78), rgba(8, 15, 29, 0.7));
  box-shadow: var(--shadow);
}

.legal-header {
  display: grid;
  gap: 10px;
}

.legal-header h1,
.legal-page h2,
.legal-page h3 {
  margin: 0;
}

.legal-page p,
.legal-page li,
.legal-page address {
  color: var(--muted);
  line-height: 1.7;
}

.legal-page address {
  font-style: normal;
}

.legal-note {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 143, 90, 0.22);
  background: rgba(255, 143, 90, 0.08);
}

.legal-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.legal-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.legal-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.not-found-page {
  display: grid;
  min-height: calc(100vh - 96px);
  place-items: center;
}

.not-found-card {
  max-width: 640px;
  text-align: left;
}

.source-gutter::-webkit-scrollbar {
  display: none;
}

.source-layer {
  position: relative;
  min-height: 380px;
}

.source-highlight,
.source-input {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 18px 18px 22px;
  line-height: 1.6;
  font-size: 0.98rem;
  white-space: pre;
  overflow: auto;
}

.source-highlight {
  pointer-events: none;
  color: #dae8ff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    rgba(1, 8, 18, 0.92);
}

.source-highlight code {
  display: block;
  min-height: 100%;
}

.source-input {
  resize: vertical;
  border: 0;
  outline: none;
  background: transparent;
  color: transparent;
  caret-color: #ffe7c2;
  -webkit-text-fill-color: transparent;
}

.source-input::selection {
  background: rgba(130, 210, 255, 0.22);
}

.source-input:focus {
  box-shadow: inset 0 0 0 1px rgba(255, 143, 90, 0.35);
}

.token.keyword {
  color: #ffb367;
}

.token.string {
  color: #b9ef9f;
}

.token.number {
  color: #7ad7ff;
}

.token.comment {
  color: #7083a6;
}

.token.function {
  color: #d6c1ff;
}

.info-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.info-strip span,
.slot-index {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.benchmark-box.success {
  border-color: rgba(153, 240, 199, 0.28);
}

.benchmark-box.error {
  border-color: rgba(255, 141, 141, 0.28);
}

.slot-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.slot-card.empty {
  border-style: dashed;
}

.slot-content {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-start;
}

.benchmark-box {
  display: grid;
  gap: 8px;
}

.benchmark-warning {
  color: var(--danger);
}

.list-card.completed {
  border-color: rgba(153, 240, 199, 0.28);
}

.list-card.locked {
  opacity: 0.78;
}

.list-card.claimable {
  border-color: rgba(255, 143, 90, 0.35);
}

.mission-card,
.ad-card {
  background: linear-gradient(180deg, rgba(14, 27, 48, 0.9), rgba(8, 16, 30, 0.82));
}

.mission-status {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mission-status span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.ad-slot {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.log-entry {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.log-entry:last-child {
  border-bottom: 0;
}

.log-entry span {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0.75rem;
  color: var(--accent-cool);
}

@keyframes rise {
  from {
    transform: translateY(12px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

  .resource-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .storage-grid {
    grid-template-columns: 1fr;
  }

  .workspace-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-footer,
  .legal-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .legal-page {
    padding: 22px;
    border-radius: 24px;
  }
}

@media (max-width: 800px) {
  .shell {
    width: min(100vw - 20px, 100%);
    padding-top: 10px;
  }

  .toast-stack {
    top: auto;
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
  }

  .hero,
  .panel,
  .compact {
    padding: 16px;
    border-radius: 22px;
  }

  .hero {
    flex-direction: column;
  }

  .hero-actions,
  .minimal-actions {
    width: 100%;
    justify-items: start;
  }

  .resource-grid,
  .examples,
  .signature-grid {
    grid-template-columns: 1fr;
  }

  .page-tab-bar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .source-editor {
    grid-template-columns: 46px 1fr;
  }

  .tab-bar {
    grid-template-columns: 1fr 1fr;
  }
}