:root {
  --bg: #05060a;
  --bg-2: #0a0c14;
  --panel: rgba(14, 16, 26, 0.88);
  --panel-2: #12141e;
  --line: rgba(90, 212, 255, 0.12);
  --text: #f4f7ff;
  --muted: #8b93a7;
  --gold: #5ad4ff;
  --gold-2: #8b6bff;
  --cyan: #5ad4ff;
  --purple: #8b6bff;
  --teal: #5ad4ff;
  --ok: #3ee0b0;
  --warn: #5ad4ff;
  --danger: #ff6b8a;
  --ink: #07080d;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
  --font: "Outfit", "Segoe UI", sans-serif;
  --display: "Syne", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--bg); color: var(--text); font-family: var(--font); }
body { position: relative; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: var(--cyan); }
h1, h2, h3, .brand strong, .stat, .cmd { font-family: var(--display); }

.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(780px 480px at 8% -8%, rgba(90, 212, 255, 0.16), transparent 58%),
    radial-gradient(720px 520px at 100% 0%, rgba(139, 107, 255, 0.14), transparent 52%),
    radial-gradient(900px 400px at 70% 110%, rgba(90, 212, 255, 0.06), transparent 50%),
    linear-gradient(180deg, #080a12, #05060a 42%);
}
.atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

#app {
  position: relative;
  display: grid;
  grid-template-columns: 272px 1fr;
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-right: 1px solid var(--line);
  background: rgba(6, 8, 14, 0.78);
  backdrop-filter: blur(22px);
}

.brand { display: flex; gap: 12px; align-items: center; padding: 4px 8px 8px; }
.brand-logo, .gate-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(90, 212, 255, 0.28));
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, var(--cyan), var(--purple));
  color: var(--ink);
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
}
.brand strong { display: block; letter-spacing: 0.12em; font-size: 15px; }
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }

nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow: auto;
  padding-right: 4px;
}
nav button {
  border: 0;
  background: transparent;
  color: var(--muted);
  text-align: left;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
nav button:hover { background: rgba(255, 255, 255, 0.04); color: var(--text); }
nav button.active {
  background: linear-gradient(90deg, rgba(90, 212, 255, 0.16), rgba(139, 107, 255, 0.08));
  color: var(--text);
  box-shadow: inset 2px 0 0 var(--cyan);
}
.nav-ico { width: 18px; color: var(--cyan); opacity: 0.9; }

.sidebar-foot { margin-top: auto; display: grid; gap: 10px; }
.pill, .chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
  border: 1px solid var(--line);
}
.pill.on { color: var(--ok); background: rgba(62, 224, 176, 0.08); }
.pill.on::before, .pill.off::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.pill.on::before { box-shadow: 0 0 10px var(--ok); }
.pill.off { color: var(--danger); background: rgba(255, 107, 138, 0.08); }
.chip {
  background: linear-gradient(90deg, rgba(90, 212, 255, 0.1), rgba(139, 107, 255, 0.1));
  color: #d7f6ff;
}

main { padding: 32px 44px 64px; max-width: 1280px; }
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.top-actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
h1 { margin: 0 0 6px; font-size: 40px; letter-spacing: -0.04em; }
h2 { margin: 0 0 10px; font-size: 28px; letter-spacing: -0.03em; }
h3 { margin: 0; font-size: 18px; }
.topbar p, .muted, .hint, .kicker { color: var(--muted); }
.kicker {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: var(--cyan);
}

.page { display: grid; gap: 18px; }
.hidden { display: none !important; }
.grid-3, .grid-2 { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1.15fr 0.85fr; }

.card, .item, .wizard-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.card {
  border-radius: 20px;
  padding: 22px;
}
.card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 18px;
}
.card h3 { font-size: 20px; }
.stat { font-size: 34px; font-weight: 700; letter-spacing: -0.04em; }
.stat-card .muted { margin: 8px 0 0; }

.list { display: grid; gap: 12px; }
.item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  border-radius: 18px;
  padding: 18px 20px;
}
.item-top { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.item-body, .item p { margin: 8px 0 0; color: var(--muted); line-height: 1.55; }
.item-editing { border-color: rgba(90, 212, 255, 0.45); box-shadow: 0 0 0 1px rgba(90, 212, 255, 0.18); }
.cmd {
  font-size: 18px;
  color: var(--text);
  background: rgba(90, 212, 255, 0.1);
  border: 1px solid var(--line);
  padding: 3px 9px;
  border-radius: 8px;
}
.meta-chip {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 3px 8px;
  border-radius: 999px;
}

.actions { display: flex; gap: 8px; flex-wrap: wrap; }
.btn, a.btn, .row button, form button, .actions button {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 10px 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover, .row button:hover, form button:hover, .actions button:hover { transform: translateY(-1px); }
.btn-primary, form button[type="submit"], .actions [data-edit] {
  background: linear-gradient(135deg, #6ae0ff, #7d6cff);
  color: #07080d;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(90, 212, 255, 0.18);
}
.btn-ghost, .ghost, #toggle-bot, #cancel-edit-command, #cancel-switch, .actions [data-toggle] {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--text);
  text-align: center;
}
.btn-danger, .danger {
  background: rgba(255, 107, 138, 0.1) !important;
  border-color: rgba(255, 107, 138, 0.25) !important;
  color: #ffd0d8 !important;
}

.form, .form-grid { display: grid; gap: 14px; }
.form-grid { grid-template-columns: 1fr 1fr; }
label { display: grid; gap: 7px; font-size: 12px; letter-spacing: 0.04em; color: var(--muted); }
input, textarea, select {
  background: #080a11;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 13px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:focus, textarea:focus, select:focus {
  border-color: rgba(90, 212, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(90, 212, 255, 0.12);
}
textarea { min-height: 110px; resize: vertical; }
.row { display: flex; gap: 10px; flex-wrap: wrap; }
.check { display: flex; align-items: center; gap: 10px; color: var(--text); letter-spacing: 0; font-size: 14px; }
.check input { accent-color: var(--cyan); }

.home-hero {
  display: flex;
  align-items: center;
  gap: 18px;
}
.home-avatar {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  color: #07080d;
  background: linear-gradient(145deg, var(--cyan), var(--purple));
  box-shadow: 0 12px 28px rgba(90, 212, 255, 0.2);
  flex-shrink: 0;
}
.home-hero h3 { font-size: 28px; margin: 4px 0 0; }
.home-journal, .home-chat {
  display: flex;
  gap: 10px;
  overflow: auto;
}
.home-journal {
  flex-direction: column;
  max-height: 320px;
}
.home-chat {
  flex-direction: column-reverse;
  height: 42vh;
  min-height: 260px;
  padding: 14px 4px 4px;
}
.journal-line time {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 3px;
}
.journal-line p { margin: 0; line-height: 1.45; }
.announce-date {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.announce-title { display: block; font-size: 18px; margin-bottom: 8px; }
.announce-body {
  margin: 0;
  white-space: pre-wrap;
  line-height: 1.55;
  color: var(--text);
}

.natives { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.natives span {
  font-family: var(--display);
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.chat {
  height: 64vh;
  overflow: auto;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
}
.chat-line { display: flex; gap: 10px; line-height: 1.5; }
.chat-user { font-weight: 600; }
.log { font-size: 13px; color: var(--muted); }

.mod-desk {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 14px;
  align-items: start;
}
.mod-stage { display: grid; gap: 12px; }
.mod-feed {
  height: calc(100vh - 300px);
  min-height: 380px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(90, 212, 255, 0.04), transparent 80px),
    rgba(8, 10, 16, 0.92);
}
.mod-line.selected {
  border-color: rgba(90, 212, 255, 0.45);
  background: rgba(90, 212, 255, 0.08);
}
.mod-dock {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
}
.mod-compose {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.mod-compose input { width: 100%; }
.mod-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.mod-actions .btn { min-width: 108px; }
.mod-empty {
  margin: auto;
  text-align: center;
  padding: 48px 20px;
  color: var(--muted);
}
.mod-empty img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  margin-bottom: 14px;
  opacity: 0.9;
  filter: drop-shadow(0 12px 24px rgba(90, 212, 255, 0.2));
}
.mod-empty strong {
  display: block;
  color: var(--text);
  font-family: var(--display);
  font-size: 18px;
  margin-bottom: 6px;
}
.mod-side { display: grid; gap: 12px; position: sticky; top: 24px; }
.mod-player-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 10px; }
.mod-player-head .stat { font-size: 28px; }
.mod-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 14px;
  background: #000;
  margin-top: 12px;
}
.mod-player.empty {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 13px;
}
.mod-people-card { max-height: calc(100vh - 420px); overflow: auto; }
.mod-group { margin-bottom: 14px; }
.mod-names { display: flex; flex-wrap: wrap; gap: 6px; }
.mod-name {
  border: 1px solid var(--line);
  background: #080a11;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  color: var(--text);
  cursor: pointer;
}
.mod-name:hover, .mod-name.selected {
  border-color: rgba(90, 212, 255, 0.45);
  color: var(--cyan);
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(4, 5, 10, 0.72);
  backdrop-filter: blur(12px);
}
.page-dock {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 16px;
}
.page-dock .btn { min-width: 108px; }

.modal-card {
  position: relative;
  width: min(440px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  overscroll-behavior: contain;
  padding: 28px 26px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(16, 18, 28, 0.98), rgba(8, 10, 16, 0.98));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 16px;
  padding: 6px 8px;
}
.modal-card.wide { width: min(560px, 100%); }
.modal-card h2 { margin: 0 0 8px; font-size: 26px; }
.modal-card .hint { margin: 0 0 18px; }
.mod-line {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: start;
  padding: 11px 13px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid transparent;
  cursor: pointer;
}
.mod-line:hover { border-color: var(--line); background: rgba(90, 212, 255, 0.05); }
.mod-line-main { display: flex; flex-wrap: wrap; gap: 8px; align-items: baseline; line-height: 1.45; }
.mod-text { color: var(--text); }
.mod-line-actions { display: flex; flex-wrap: wrap; gap: 6px; }
.mod-trash {
  position: relative;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(8, 10, 16, 0.9);
  color: #c5cad6;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
}
.mod-trash svg { width: 16px; height: 16px; }
.mod-trash:hover { color: var(--danger); border-color: rgba(255, 107, 138, 0.45); background: rgba(255, 107, 138, 0.12); }
.mod-act {
  border: 1px solid var(--line);
  background: #080a11;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  cursor: pointer;
}
.mod-act:hover { color: var(--cyan); border-color: rgba(90, 212, 255, 0.4); }
.mod-act.danger:hover { color: var(--danger); border-color: rgba(255, 107, 138, 0.4); }
.role-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: 999px;
}
.role-badge.bc { background: linear-gradient(135deg, #6ae0ff, #7d6cff); color: #07080d; }
.role-badge.mod { background: rgba(90, 212, 255, 0.16); color: #5ad4ff; }
.role-badge.vip { background: rgba(139, 107, 255, 0.18); color: #c4b5ff; }
.role-badge.sub { background: rgba(255, 255, 255, 0.06); color: #d8deea; }

.wizard {
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 10, 0.78);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  padding: 24px;
  z-index: 20;
}
.wizard-card {
  width: min(680px, 100%);
  border-radius: 28px;
  padding: 32px;
}
.steps { color: var(--muted); padding-left: 18px; }
.steps li { margin: 9px 0; }
code { background: #080a11; padding: 2px 7px; border-radius: 6px; color: var(--cyan); border: 1px solid var(--line); }

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #10131c;
  color: var(--text);
  border: 1px solid rgba(90, 212, 255, 0.28);
  padding: 13px 16px;
  border-radius: 14px;
  z-index: 30;
}

.warn-card { border-color: rgba(139, 107, 255, 0.28); background: rgba(18, 16, 32, 0.88); }
.warn-card h3 { color: #c4b5ff; }
.warn-card ol { margin: 10px 0 16px; padding-left: 18px; color: var(--muted); }
.warn-card li { margin: 6px 0; }

.overlay-preview {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #05060a;
}
.alert-grid { display: grid; gap: 18px; }
.alert-thumb {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
}
.status-dot { font-size: 12px; color: var(--muted); }
.status-dot.ok { color: var(--ok); }
.status-dot.error { color: var(--danger); }
.gw-count { font-size: 72px; line-height: 0.95; letter-spacing: -0.05em; }
.cd-count { font-size: 72px; line-height: 0.95; letter-spacing: -0.04em; color: var(--cyan); }
.cd-count.done { color: #3ee66a; font-size: 42px; }
.people { display: flex; flex-wrap: wrap; gap: 8px; }
.people span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.03);
}
.poll-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
  margin-top: 6px;
}
.poll-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #5ad4ff, #8b6bff);
}
.poll-option.win { color: #3ee66a; }
.poll-option.win .poll-bar span { background: linear-gradient(90deg, #5ef088, #3ee66a); }
.win-name { color: #3ee66a; }
.deadline-clock {
  font-family: "Syne", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--cyan);
  margin: 8px 0 4px;
}
.btn-draw {
  background: linear-gradient(135deg, #6ae0ff, #7d6cff) !important;
  color: var(--ink) !important;
  font-size: 18px;
  padding: 14px 22px !important;
  font-weight: 700;
}

#gate {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(640px 380px at 50% 12%, rgba(90, 212, 255, 0.18), transparent 58%),
    radial-gradient(800px 480px at 12% 100%, rgba(139, 107, 255, 0.16), transparent 52%),
    linear-gradient(180deg, #070910, #04050a);
}
.gate-glow {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 212, 255, 0.16), rgba(139, 107, 255, 0.08) 42%, transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}
.gate-card {
  position: relative;
  width: min(440px, 100%);
  padding: 42px 38px 30px;
  border-radius: 28px;
  text-align: center;
  background: linear-gradient(180deg, rgba(16, 18, 28, 0.96), rgba(8, 10, 16, 0.96));
  border: 1px solid rgba(90, 212, 255, 0.2);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}
.gate-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 20px;
  border: 1px solid rgba(139, 107, 255, 0.1);
  pointer-events: none;
}
.gate-logo {
  width: 112px;
  height: 112px;
  margin: 0 auto 18px;
  display: block;
}
.gate-card .kicker { margin-bottom: 6px; }
.gate-card h2 { margin: 0; letter-spacing: 0.16em; font-size: 32px; }
.gate-lead { color: var(--muted); margin: 12px 0 26px; line-height: 1.55; }
.gate-card .form { text-align: left; }
.gate-card .btn-primary { width: 100%; margin-top: 8px; padding: 14px 16px; }
.gate-error { color: var(--danger); margin: 0; }
.gate-pass { position: relative; display: block; }
.gate-pass input { width: 100%; padding-right: 58px; }
.gate-eye {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: 0.06em;
  cursor: pointer;
  padding: 6px 8px;
}
.gate-foot {
  margin: 22px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.perm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

.perm-block { margin: 18px 0 8px; }
.perm-lines { display: grid; gap: 8px; }
.perm-line {
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
label.check {
  display: flex;
  letter-spacing: 0;
  color: var(--text);
  font-size: 14px;
}
.perm-line span { letter-spacing: 0; }
.perm-cat span { font-weight: 600; }
.perm-nested {
  display: grid;
  gap: 8px;
  margin: 0 0 4px 16px;
  padding-left: 14px;
  border-left: 1px solid var(--line);
}
.item.user-row { cursor: pointer; }
.item.user-row:hover { border-color: rgba(90, 212, 255, 0.35); }

@media (max-width: 980px) {
  #app { grid-template-columns: 1fr; }
  .sidebar { position: relative; height: auto; }
  nav { flex-direction: row; flex-wrap: wrap; }
  .grid-3, .grid-2, .form-grid, .perm-grid { grid-template-columns: 1fr; }
  .mod-desk { grid-template-columns: 1fr; }
  .mod-side { position: static; }
  .mod-people-card { max-height: none; }
  .mod-compose { grid-template-columns: 1fr; }
  .mod-feed { height: 58vh; }
  .home-chat { height: 36vh; }
  .home-hero h3 { font-size: 22px; }
  main { padding: 24px 18px 48px; }
  h1 { font-size: 32px; }
  .item { grid-template-columns: 1fr; }
}
