:root {
  color-scheme: dark;
  --bg: #030711;
  --panel: #11101d;
  --panel-2: #171426;
  --text: #f8f8f9;
  --muted: #9ba3b6;
  --purple: #7d13fe;
  --purple-2: #a33cff;
  --cyan: #29c6ff;
  --line: rgba(248, 248, 249, 0.12);
  --danger: #ff496b;
}

* { box-sizing: border-box; }

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  background:
    radial-gradient(circle at 80% -10%, rgba(125, 19, 254, 0.34), transparent 26rem),
    radial-gradient(circle at 8% 12%, rgba(41, 198, 255, 0.12), transparent 22rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.app-shell {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  overflow-x: hidden;
  padding: 18px max(12px, env(safe-area-inset-left)) 104px max(12px, env(safe-area-inset-right));
}

.topline,
.screen-top,
.section-head,
.row,
.action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.topline {
  gap: 8px;
  margin-bottom: 18px;
}
.topline img {
  width: 150px;
  max-width: 42vw;
  min-width: 0;
  flex: 1 1 auto;
}
.top-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 6px;
  align-items: center;
}

.screen { display: none; }
.screen.active { display: block; animation: rise 160ms ease-out; }

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 26px 22px;
  border: 1px solid rgba(125, 19, 254, 0.5);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 72%, rgba(125, 19, 254, 0.62), transparent 7rem),
    linear-gradient(140deg, rgba(8, 8, 19, 0.98), rgba(20, 14, 38, 0.92));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36), inset 0 0 50px rgba(125, 19, 254, 0.16);
}

.hero-card img {
  position: absolute;
  right: -14px;
  bottom: 18px;
  width: 170px;
  filter: drop-shadow(0 0 22px rgba(125, 19, 254, 0.62));
}

.hero-card > :not(img) {
  position: relative;
  z-index: 1;
}

.eyebrow,
.mini {
  color: var(--purple-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3, p {
  margin-top: 0;
  overflow-wrap: anywhere;
}
h1 { margin-bottom: 8px; font-size: 38px; line-height: 0.95; font-weight: 950; }
h2 { margin-bottom: 0; font-size: 26px; font-weight: 900; }
h3 { margin-bottom: 8px; font-size: 18px; line-height: 1.12; }
p { color: var(--muted); line-height: 1.42; }

.hero-subtitle { color: var(--text); font-weight: 800; }
.meta-list { display: grid; gap: 8px; max-width: 250px; }
.meta-list span,
.meta-list a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.stack { display: grid; gap: 12px; }
.section-block { margin-top: 22px; }

.section-block .section-head {
  margin-bottom: 18px;
}

.card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(248, 248, 249, 0.08), rgba(248, 248, 249, 0.025)),
    var(--panel);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
  padding: 16px;
}

.alert-card {
  margin-top: 14px;
  border-color: rgba(255, 73, 107, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 73, 107, 0.22), rgba(125, 19, 254, 0.1)),
    #241016;
}

.now-grid { display: grid; gap: 12px; margin-top: 14px; }
.status-card {
  min-height: 132px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(248, 248, 249, 0.055);
}

.dot-label { font-weight: 900; font-size: 13px; }
.dot-label::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 6px; border-radius: 99px; }
.dot-label.red::before { background: #ff335f; }
.dot-label.violet::before { background: var(--purple-2); }

.news-card,
.event-card,
.speaker-item,
.info-card,
.startup-card,
.zone-card,
.empty-card {
  cursor: pointer;
}

.news-card .row {
  align-items: start;
  margin-bottom: 12px;
}

.news-card h3 {
  margin-bottom: 14px;
}

.event-card { position: relative; }
.time { color: #c892ff; font-size: 12px; font-weight: 900; }
.tag {
  display: inline-flex;
  width: fit-content;
  padding: 6px 8px;
  border-radius: 8px;
  color: #d8f7df;
  background: rgba(52, 199, 89, 0.16);
  font-size: 11px;
  font-weight: 900;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  overflow: visible;
  max-width: 100%;
  padding: 14px 0;
}

.admin-tabs::-webkit-scrollbar { display: none; }

.filter-chip,
.admin-chip,
.admin-tab,
.icon-btn,
.bell,
.primary,
.ghost,
.close-btn,
.danger-link {
  border: 0;
  color: var(--text);
  cursor: pointer;
}

.filter-chip {
  flex: 1 1 calc(50% - 8px);
  min-width: 132px;
  min-height: 48px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(248, 248, 249, 0.06);
  color: var(--muted);
  font-weight: 800;
  line-height: 1.12;
  touch-action: manipulation;
}

.filter-chip.active,
.admin-chip,
.primary {
  background: linear-gradient(100deg, var(--purple), #4c2ce8);
  color: white;
}

.admin-chip {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  font-weight: 900;
}

.bell,
.icon-btn,
.close-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(125, 19, 254, 0.16);
  border: 1px solid rgba(125, 19, 254, 0.34);
}

.bell {
  display: grid;
  place-items: center;
}

.bell.active {
  background: rgba(125, 19, 254, 0.78);
  box-shadow: 0 0 18px rgba(125, 19, 254, 0.42);
}

.bell-icon {
  width: 19px;
  height: 19px;
  display: block;
  background: #fff;
  mask: url("assets/notification-bell.png") center / contain no-repeat;
  -webkit-mask: url("assets/notification-bell.png") center / contain no-repeat;
}

.bell-active-emoji {
  font-size: 19px;
  line-height: 1;
}

.primary,
.ghost {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  font-weight: 900;
}

.ghost {
  border: 1px solid var(--line);
  background: rgba(248, 248, 249, 0.06);
}

.schedule-favorites-toggle {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 11px;
  font-size: 13px;
  white-space: nowrap;
}

.schedule-favorites-toggle.active {
  border-color: rgba(41, 198, 255, 0.62);
  background: linear-gradient(100deg, rgba(125, 19, 254, 0.64), rgba(41, 198, 255, 0.28));
}

.schedule-favorites-block {
  margin-top: 16px;
  margin-bottom: 8px;
}

#schedule .screen-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
}

#schedule .screen-top h2 {
  min-width: 0;
  white-space: nowrap;
  overflow-wrap: normal;
  font-size: clamp(26px, 7vw, 36px);
}

.topline .top-chip,
.topline .admin-chip {
  min-height: 34px;
  padding: 0 10px;
  border-radius: 10px;
  font-size: 12px;
  white-space: nowrap;
}

.topline .admin-chip {
  padding: 0 12px;
}

.full { width: 100%; margin-top: 10px; }
.ghost-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(125, 19, 254, 0.36);
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  background: rgba(125, 19, 254, 0.18);
  font-weight: 900;
}

.resource-link {
  min-height: 54px;
  padding: 12px 20px;
  line-height: 1.18;
}

.startup-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, auto);
  gap: 14px;
  align-items: start;
  margin-bottom: 18px;
}

#startupBlock {
  display: grid;
  gap: 14px;
}

.startup-head .ghost-link {
  justify-content: center;
  min-height: 54px;
  padding: 12px 18px;
  line-height: 1.18;
  text-align: center;
}

.startup-card {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.startup-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.startup-card-head .tag {
  margin-top: 2px;
  padding: 8px 12px;
  white-space: nowrap;
}

.startup-card p {
  margin-bottom: 0;
}

.startup-card .mini {
  display: block;
  margin-top: 2px;
}

.search { display: block; margin: 14px 0; }
input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(248, 248, 249, 0.07);
  color: var(--text);
  outline: none;
}
input, select { height: 46px; padding: 0 14px; }
input[type="checkbox"] {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  accent-color: var(--purple);
}
input[type="color"] {
  padding: 4px;
  min-width: 70px;
}
textarea {
  padding: 14px;
  resize: vertical;
  font-size: 14px;
}
select option { background: #151325; color: var(--text); }

.speaker-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
}

.row > *,
.speaker-copy,
.event-card h3,
.event-card p {
  min-width: 0;
}

.avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background:
    radial-gradient(circle at 70% 20%, rgba(41, 198, 255, 0.5), transparent 2.3rem),
    radial-gradient(circle at 36% 62%, rgba(125, 19, 254, 0.72), transparent 2.8rem),
    #181421;
  font-size: 22px;
  font-weight: 950;
}

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

.venue-scheme-block {
  margin-top: 0;
  margin-bottom: 20px;
}

.venue-scheme-card {
  overflow: hidden;
}

.venue-scheme-image {
  display: block;
  width: 100%;
  border-radius: 12px;
}

.venue-scheme-placeholder {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  background:
    radial-gradient(circle at 50% 45%, rgba(41, 198, 255, 0.18), transparent 7rem),
    linear-gradient(135deg, rgba(125, 19, 254, 0.16), rgba(248, 248, 249, 0.04)),
    var(--panel);
}

.scheme-stage {
  min-height: 70px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(248, 248, 249, 0.12);
  border-radius: 12px;
  color: white;
  font-weight: 950;
  text-align: center;
}

.scheme-stage.main { background: rgba(125, 19, 254, 0.62); }
.scheme-stage.science { background: rgba(52, 199, 89, 0.36); }
.scheme-stage.startup { background: rgba(255, 122, 26, 0.42); }
.scheme-stage.career { background: rgba(141, 77, 255, 0.42); }
.scheme-stage.food { background: rgba(244, 182, 63, 0.42); }
.scheme-stage.registration { background: rgba(224, 82, 151, 0.42); }

.zone-tile {
  min-height: 76px;
  padding: 10px;
  border: 1px solid rgba(248, 248, 249, 0.1);
  border-radius: 12px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--zone) 72%, #11101d), #151325);
  color: white;
  font-weight: 950;
  text-align: left;
}

.info-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(125, 19, 254, 0.18);
  color: white;
  font-weight: 900;
}

.info-card {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.info-card-head {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.info-card-head .info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.info-card-head h3 {
  margin-bottom: 0;
  text-align: left;
}

.info-card p {
  margin-bottom: 0;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 20;
  width: min(100%, 520px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding: 8px 4px max(8px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  border-top: 1px solid var(--line);
  background: rgba(12, 15, 25, 0.96);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.nav-item {
  display: grid;
  gap: 2px;
  place-items: center;
  min-height: 54px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  min-width: 0;
  padding: 0 1px;
  font-size: 8.6px;
  font-weight: 800;
  line-height: 1.05;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0;
}

.nav-item span { font-size: 18px; }
.nav-item.active { color: white; background: rgba(125, 19, 254, 0.18); }

.nav-mic {
  width: 20px;
  height: 20px;
  display: inline-block;
  background: currentColor;
  mask: url("assets/microphone.png") center / contain no-repeat;
  -webkit-mask: url("assets/microphone.png") center / contain no-repeat;
}

.modal,
.confirm-panel {
  width: min(calc(100vw - 28px), 430px);
  max-width: 100%;
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel-2);
  color: var(--text);
  overflow-x: hidden;
}

.modal {
  max-height: calc(100dvh - 36px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.modal .row,
.confirm-panel .row {
  align-items: start;
}

.confirm-dialog {
  max-width: 100vw;
}

.confirm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

dialog { border: 0; padding: 0; background: transparent; max-width: 100vw; overflow-x: hidden; }
dialog::backdrop { background: rgba(0, 0, 0, 0.72); }

.toast-host {
  position: fixed;
  left: 50%;
  bottom: 84px;
  z-index: 50;
  display: grid;
  gap: 8px;
  width: min(92vw, 440px);
  transform: translateX(-50%);
  pointer-events: none;
}

.toast {
  padding: 12px 14px;
  border: 1px solid rgba(125, 19, 254, 0.42);
  border-radius: 12px;
  background: rgba(20, 12, 38, 0.96);
  color: white;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}

.hidden { display: none !important; }
.muted { color: var(--muted); }

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  overflow: visible;
  padding: 14px 0 12px;
}

.admin-tab {
  flex: 1 1 calc(50% - 8px);
  min-height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(248, 248, 249, 0.06);
  color: var(--muted);
  font-weight: 900;
  min-width: 132px;
}

.admin-tab.active {
  border-color: rgba(41, 198, 255, 0.62);
  background: linear-gradient(100deg, rgba(125, 19, 254, 0.64), rgba(41, 198, 255, 0.28));
  color: white;
}

.admin-editor,
.admin-sections {
  display: grid;
  gap: 14px;
}

.admin-panel {
  cursor: default;
  border-color: rgba(125, 19, 254, 0.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(125, 19, 254, 0.18), transparent 12rem),
    linear-gradient(135deg, rgba(248, 248, 249, 0.07), rgba(248, 248, 249, 0.025)),
    var(--panel);
}

.admin-panel > h3,
.admin-group-summary h3 {
  margin-bottom: 14px;
  font-size: 20px;
}

.admin-group-summary h3 {
  margin-bottom: 0;
}

.admin-group {
  padding: 0;
  overflow: hidden;
}

.admin-group-summary,
.admin-item-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
  padding: 16px;
  cursor: pointer;
  list-style: none;
}

.admin-group-summary::-webkit-details-marker,
.admin-item-summary::-webkit-details-marker {
  display: none;
}

.admin-group-summary::after,
.admin-item-summary::after {
  content: "⌄";
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  color: var(--text);
  background: rgba(125, 19, 254, 0.18);
  transition: transform 140ms ease;
}

.admin-group[open] > .admin-group-summary::after,
.admin-item[open] > .admin-item-summary::after {
  transform: rotate(180deg);
}

.admin-open-label {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.admin-group > :not(summary) {
  margin: 0 16px 14px;
}

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

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

.admin-item {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(248, 248, 249, 0.1);
  border-radius: 14px;
  background: rgba(3, 7, 17, 0.44);
  overflow: hidden;
}

.admin-item-summary {
  min-height: 58px;
  padding: 12px;
}

.admin-item-summary h3 {
  margin-bottom: 0;
  font-size: 16px;
}

.admin-item-summary > div {
  min-width: 0;
}

.admin-item > :not(summary) {
  margin: 0 12px 12px;
}

.admin-field {
  display: grid;
  gap: 7px;
}

.admin-field .mini {
  color: var(--muted);
  font-size: 11px;
}

.switch-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--text);
  font-weight: 850;
}

.admin-add {
  width: 100%;
  margin-top: 12px;
  border-color: rgba(41, 198, 255, 0.3);
  background: rgba(41, 198, 255, 0.08);
}

.danger-link {
  min-height: 34px;
  padding: 0 10px;
  border-radius: 10px;
  background: rgba(255, 73, 107, 0.12);
  color: #ff8da1;
  font-size: 12px;
  font-weight: 900;
}

.admin-actions {
  position: sticky;
  bottom: 78px;
  z-index: 12;
  margin-top: 16px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(12, 15, 25, 0.9);
  backdrop-filter: blur(16px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.admin-actions button {
  width: 100%;
}

.admin-panel .admin-add,
.admin-panel .full {
  margin-top: 0;
}

.admin-image-control {
  display: grid;
  gap: 10px;
}

.admin-image-preview {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border: 1px solid rgba(125, 19, 254, 0.34);
  border-radius: 14px;
}

.admin-image-empty {
  min-height: 104px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px dashed rgba(248, 248, 249, 0.22);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(248, 248, 249, 0.04);
  text-align: center;
}

.profile-editor {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.profile-top {
  display: grid;
  gap: 0;
  margin-bottom: 18px;
}

.profile-top h2 {
  margin: 18px 0 18px;
  font-size: 42px;
  line-height: 1;
}

.profile-top p {
  max-width: 340px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.5;
}

.back-chip {
  justify-self: start;
  min-height: 38px;
  padding: 0 12px;
  font-size: 13px;
}

.profile-card {
  display: grid;
  gap: 12px;
}

.profile-favorites-block .section-head {
  margin-bottom: 18px;
}

.profile-favorites-block h2 {
  margin-bottom: 0;
}

.hidden-file {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.profile-photo {
  width: 86px;
  height: 86px;
  border-radius: 22px;
  object-fit: cover;
  border: 1px solid rgba(125, 19, 254, 0.34);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}

.stat-tile,
.metric-card {
  padding: 12px;
  border: 1px solid rgba(248, 248, 249, 0.1);
  border-radius: 12px;
  background: rgba(3, 7, 17, 0.42);
}

.stat-tile {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.stat-tile .muted {
  overflow-wrap: anywhere;
}

.stat-value,
.metric-count {
  color: var(--purple-2);
  font-size: 24px;
  font-weight: 950;
}

.metric-count {
  font-size: 20px;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 390px) {
  .app-shell { padding-left: 10px; padding-right: 10px; }
  .topline img { width: 128px; max-width: 35vw; }
  .topline .top-chip,
  .topline .admin-chip {
    min-height: 32px;
    padding: 0 8px;
    font-size: 11px;
  }
  .hero-card { min-height: 286px; }
  .hero-card img { right: -34px; bottom: 34px; width: 132px; opacity: 0.62; }
  .meta-list { max-width: 76%; }
  h1 { font-size: 34px; }
  #schedule .screen-top h2 {
    font-size: 27px;
  }
  .schedule-favorites-toggle {
    min-height: 38px;
    padding: 0 9px;
    font-size: 12px;
  }
  .profile-top h2 {
    margin: 16px 0 16px;
    font-size: 36px;
  }
  .profile-top p {
    font-size: 15px;
    line-height: 1.55;
  }
  .back-chip {
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }
  .startup-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .startup-head .ghost-link {
    width: 100%;
    min-height: 50px;
  }
  .startup-card {
    gap: 16px;
    padding: 18px;
  }
  .startup-card-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .startup-card-head .tag {
    justify-self: start;
  }
  .info-card {
    gap: 16px;
    padding: 18px;
  }
  .info-card-head {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }
  .info-card-head .info-icon {
    width: 44px;
    height: 44px;
  }
  .zone-grid { grid-template-columns: 1fr; }
  .admin-grid { grid-template-columns: 1fr; }
  .admin-actions { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}
