:root {
  --bg-start: #63e0d3;
  --bg-end: #a9c0f1;
  --bg-overlay: rgba(255, 255, 255, 0.12);
  --panel: rgba(255, 255, 255, 0.88);
  --panel-solid: rgba(255, 255, 255, 0.98);
  --panel-muted: rgba(255, 255, 255, 0.78);
  --line: rgba(255, 255, 255, 0.44);
  --border-soft: rgba(150, 181, 221, 0.32);
  --text-main: #183047;
  --text-soft: #5c6f83;
  --text-inverse: #ffffff;
  --accent: #12bf4d;
  --accent-strong: #0ea443;
  --accent-soft: rgba(18, 191, 77, 0.14);
  --nav-grad-start: rgba(99, 224, 211, 0.96);
  --nav-grad-end: rgba(151, 185, 232, 0.96);
  --shadow: 0 24px 64px rgba(35, 70, 108, 0.16);
  --shadow-soft: 0 14px 36px rgba(35, 70, 108, 0.12);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

body[data-theme="aurora"] {
  --bg-start: #2fc6ff;
  --bg-end: #7c5cff;
  --bg-overlay: rgba(255, 255, 255, 0.1);
  --panel: rgba(255, 255, 255, 0.92);
  --panel-solid: rgba(255, 255, 255, 0.98);
  --panel-muted: rgba(249, 250, 255, 0.86);
  --line: rgba(255, 255, 255, 0.38);
  --border-soft: rgba(130, 144, 255, 0.26);
  --text-main: #18213f;
  --text-soft: #5f6794;
  --accent: #13b8a6;
  --accent-strong: #0f8c80;
  --accent-soft: rgba(19, 184, 166, 0.14);
  --nav-grad-start: rgba(96, 202, 255, 0.95);
  --nav-grad-end: rgba(142, 111, 255, 0.95);
  --shadow: 0 24px 70px rgba(41, 31, 109, 0.22);
  --shadow-soft: 0 12px 30px rgba(41, 31, 109, 0.18);
}

body[data-theme="graphite"] {
  --bg-start: #111827;
  --bg-end: #334155;
  --bg-overlay: rgba(255, 255, 255, 0.04);
  --panel: rgba(15, 23, 42, 0.78);
  --panel-solid: rgba(15, 23, 42, 0.92);
  --panel-muted: rgba(30, 41, 59, 0.85);
  --line: rgba(255, 255, 255, 0.12);
  --border-soft: rgba(148, 163, 184, 0.18);
  --text-main: #e5eefb;
  --text-soft: #aab7cc;
  --text-inverse: #f8fafc;
  --accent: #22c55e;
  --accent-strong: #16a34a;
  --accent-soft: rgba(34, 197, 94, 0.16);
  --nav-grad-start: rgba(30, 41, 59, 0.98);
  --nav-grad-end: rgba(51, 65, 85, 0.98);
  --shadow: 0 28px 90px rgba(2, 6, 23, 0.45);
  --shadow-soft: 0 12px 32px rgba(2, 6, 23, 0.34);
}

body[data-theme="sunset"] {
  --bg-start: #ff8a5b;
  --bg-end: #ff5d8f;
  --bg-overlay: rgba(255, 255, 255, 0.1);
  --panel: rgba(255, 249, 248, 0.9);
  --panel-solid: rgba(255, 252, 251, 0.98);
  --panel-muted: rgba(255, 247, 244, 0.85);
  --line: rgba(255, 255, 255, 0.34);
  --border-soft: rgba(255, 154, 153, 0.24);
  --text-main: #472034;
  --text-soft: #83556b;
  --accent: #7c3aed;
  --accent-strong: #6d28d9;
  --accent-soft: rgba(124, 58, 237, 0.12);
  --nav-grad-start: rgba(255, 171, 116, 0.94);
  --nav-grad-end: rgba(255, 112, 154, 0.94);
  --shadow: 0 28px 80px rgba(129, 31, 79, 0.2);
  --shadow-soft: 0 12px 28px rgba(129, 31, 79, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-main);
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.26), transparent 34%),
    linear-gradient(135deg, var(--bg-start), var(--bg-end));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--bg-overlay));
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

code {
  font-family: Consolas, "SFMono-Regular", Monaco, monospace;
}

.page-shell,
.login-wrap,
.admin-wrap {
  position: relative;
  z-index: 1;
}

.page-shell {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 72px) 0 40px;
}

.hero {
  color: var(--text-inverse);
  margin-bottom: 20px;
}

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

.hero-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(34px, 7vw, 58px);
  line-height: 1.08;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 18px;
  border-radius: 14px;
  font-size: clamp(16px, 3.4vw, 28px);
  font-weight: 700;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.hero-description {
  width: min(780px, 100%);
  margin: 0 auto;
  text-align: center;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.hero-divider {
  width: 100%;
  margin: 28px auto 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.surface {
  background: var(--panel);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 34px);
}

.surface + .surface {
  margin-top: 20px;
}

.nav-board {
  position: relative;
  overflow: hidden;
}

.nav-board::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: clamp(5px, 1vw, 10px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08));
}

.nav-list {
  width: min(820px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.nav-item {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 92px;
  min-height: 56px;
  background: linear-gradient(90deg, var(--nav-grad-start), var(--nav-grad-end));
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.nav-icon,
.nav-latency {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.nav-icon {
  background: var(--accent);
}

.nav-latency {
  background: var(--accent);
  font-weight: 700;
  letter-spacing: 0;
}

.nav-icon svg,
.section-heading svg,
.admin-stat svg,
.mini-button svg,
.editor-card-title svg {
  width: 22px;
  height: 22px;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.nav-link-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
}

.nav-title {
  min-width: 0;
  overflow-wrap: anywhere;
}

.nav-dot {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
  flex: 0 0 auto;
  position: relative;
}

.nav-dot::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.rich-text {
  width: min(900px, 100%);
  margin: 24px auto 0;
  white-space: pre-line;
  color: var(--accent);
  line-height: 1.95;
  font-size: 15px;
}

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

.section-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
}

.section-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-main);
}

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

.contact-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--panel-muted);
  border: 1px solid var(--border-soft);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ffffff;
  background: var(--accent);
  box-shadow: var(--shadow-soft);
}

.contact-item-icon svg,
.copy-button svg {
  width: 20px;
  height: 20px;
}

.contact-item-main {
  min-width: 0;
}

.contact-item-label {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.4;
}

.contact-item-value {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.copy-button {
  min-height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text-main);
  font-weight: 700;
}

.copy-button.is-copied {
  color: #ffffff;
  background: var(--accent);
  border-color: var(--accent);
}

.section-body.center {
  text-align: center;
}

.section-body ul {
  margin: 0;
  padding-left: 18px;
}

.section-body li + li {
  margin-top: 10px;
}

.footer {
  margin-top: 22px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.login-wrap,
.admin-wrap {
  width: min(1200px, calc(100vw - 32px));
  margin: 0 auto;
  padding: clamp(20px, 4vw, 36px) 0 40px;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  color: var(--text-inverse);
}

.admin-kicker,
.login-kicker {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  min-height: 32px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.admin-topbar h1,
.login-hero h1 {
  margin: 10px 0 0;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.1;
}

.admin-meta {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.topbar-actions,
.editor-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pill-link,
.ghost-link,
.primary-button,
.secondary-button,
.danger-button,
.mini-button {
  border: 0;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.pill-link,
.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  font-weight: 700;
}

.pill-link {
  background: rgba(255, 255, 255, 0.96);
  color: var(--accent-strong);
}

.ghost-link {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-inverse);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.primary-button,
.secondary-button,
.danger-button {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 700;
}

.primary-button {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 10px 24px var(--accent-soft);
}

.secondary-button {
  background: rgba(226, 232, 240, 0.88);
  color: #334155;
}

.danger-button {
  background: rgba(254, 226, 226, 0.95);
  color: #b91c1c;
}

.mini-button {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  background: rgba(238, 245, 255, 0.92);
  color: #35537b;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pill-link:hover,
.ghost-link:hover,
.primary-button:hover,
.secondary-button:hover,
.danger-button:hover,
.mini-button:hover {
  transform: translateY(-1px);
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  gap: 20px;
}

.admin-sidebar,
.admin-panel,
.login-card {
  background: var(--panel-solid);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.admin-sidebar,
.admin-panel {
  padding: clamp(18px, 2.5vw, 24px);
}

.login-card {
  width: min(860px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  overflow: hidden;
}

.login-hero {
  padding: clamp(20px, 4vw, 34px);
  color: var(--text-inverse);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
}

.login-card-inner {
  padding: clamp(22px, 4vw, 34px);
  background: var(--panel-solid);
}

.login-title {
  margin: 0 0 12px;
  font-size: 28px;
  color: var(--text-main);
}

.hint {
  margin: 12px 0 0;
  color: inherit;
  opacity: 0.92;
  font-size: 14px;
  line-height: 1.8;
}

.stack {
  display: grid;
  gap: 18px;
}

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

.admin-stat {
  padding: 16px;
  border-radius: 14px;
  background: var(--panel-muted);
  border: 1px solid var(--border-soft);
}

.admin-stat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-weight: 700;
}

.admin-stat strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.25;
  color: var(--text-main);
  overflow-wrap: anywhere;
}

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

.field-grid.single {
  grid-template-columns: 1fr;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
}

.field-help {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
}

.input,
.textarea,
.select {
  width: 100%;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.88);
  color: #0f172a;
}

body[data-theme="graphite"] .input,
body[data-theme="graphite"] .textarea,
body[data-theme="graphite"] .select {
  color: #e5eefb;
  background: rgba(30, 41, 59, 0.92);
}

.textarea {
  min-height: 124px;
  resize: vertical;
}

.color-input {
  min-height: 48px;
  padding: 8px;
}

.input:focus,
.textarea:focus,
.select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.compact-toolbar {
  margin-bottom: 12px;
}

.toolbar h2,
.panel-title {
  margin: 0;
  font-size: clamp(20px, 2.8vw, 24px);
}

.toolbar p,
.panel-subtitle {
  margin: 6px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
}

.admin-section-switcher {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--panel-muted);
  border: 1px solid var(--border-soft);
}

.admin-section-tab {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-soft);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.admin-section-tab.is-active {
  color: #ffffff;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 10px 24px var(--accent-soft);
}

.card-list {
  display: grid;
  gap: 16px;
}

.editor-card {
  background: var(--panel-solid);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: clamp(16px, 2.5vw, 20px);
}

.editor-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.editor-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.notice,
.alert {
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 18px;
}

.notice {
  color: #166534;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.alert {
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.muted-box {
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--panel-muted);
  border: 1px solid var(--border-soft);
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.8;
}

.empty-state {
  padding: 24px;
  border-radius: 14px;
  border: 1px dashed var(--border-soft);
  text-align: center;
  color: var(--text-soft);
  background: var(--panel-muted);
}

.folder-header {
  color: var(--text-inverse);
  margin-bottom: 18px;
}

.folder-header h1 {
  margin: 12px 0 0;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.folder-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
}

.folder-back svg {
  width: 18px;
  height: 18px;
  transform: rotate(180deg);
}

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

.folder-notice {
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-main);
  line-height: 1.8;
  white-space: pre-line;
}

.folder-notice h2 {
  margin: 0 0 8px;
  color: var(--accent-strong);
  font-size: 17px;
}

.folder-file {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 110px;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: var(--panel-muted);
}

.file-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
}

.file-meta {
  min-width: 0;
}

.file-meta h2 {
  margin: 0 0 6px;
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.file-meta p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
}

.folder-download {
  width: 100%;
}

.folder-pagination {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.theme-field {
  margin-bottom: 16px;
}

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

.theme-option {
  display: block;
}

.theme-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.theme-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: var(--panel-muted);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.theme-option input:checked + .theme-card {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.theme-swatches {
  display: flex;
  gap: 8px;
}

.theme-swatch {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

.theme-card-body {
  display: grid;
  gap: 6px;
}

.theme-card-body strong {
  font-size: 16px;
}

.theme-card-body small {
  color: var(--text-soft);
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .info-grid,
  .theme-grid,
  .field-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .login-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .page-shell,
  .login-wrap,
  .admin-wrap {
    width: min(100vw - 18px, 1200px);
  }

  .nav-item {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .nav-link {
    justify-content: flex-start;
    text-align: left;
    padding: 14px 14px;
  }

  .nav-link-copy {
    justify-content: flex-start;
  }

  .nav-latency {
    grid-column: 1 / -1;
    min-height: 40px;
  }

  .contact-item {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .folder-file {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .folder-download {
    grid-column: 1 / -1;
  }

  .copy-button {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }

  .surface {
    padding: 18px;
  }

  .hero-title-row {
    justify-content: center;
  }

  .topbar-actions,
  .editor-card-actions,
  .toolbar {
    width: 100%;
  }

  .admin-section-switcher {
    display: grid;
    width: 100%;
  }

  .ghost-link,
  .pill-link,
  .primary-button,
  .secondary-button,
  .danger-button,
  .mini-button,
  .admin-section-tab {
    width: 100%;
  }

  .editor-card-top {
    align-items: stretch;
  }
}

@media (max-width: 520px) {
  .page-shell,
  .login-wrap,
  .admin-wrap {
    width: calc(100vw - 12px);
  }

  .hero-description,
  .section-body,
  .rich-text {
    font-size: 14px;
  }

  .nav-icon {
    min-height: 52px;
  }

  .login-card-inner,
  .login-hero,
  .admin-sidebar,
  .admin-panel {
    padding: 16px;
  }

  .surface,
  .editor-card {
    border-radius: 14px;
  }
}
