:root {
  --motd-bg: #ffffff;
  --motd-card: #ffffff;
  --motd-border: rgba(15, 23, 42, 0.1);
  --motd-border-strong: #c3d4f1;
  --motd-text: var(--ink);
  --motd-muted: var(--text);
  --motd-blue: var(--primary);
  --motd-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  --motd-shadow-soft: 0 10px 24px rgba(15, 23, 42, 0.07);
}

body.page-tool {
  background: var(--motd-bg);
  color: var(--motd-text);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

.tool-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--motd-blue);
  font-weight: 700;
  font-size: 0.92rem;
}

.tool-back:hover {
  color: var(--primary-600);
}

.tool-back__icon {
  font-size: 1rem;
  line-height: 1;
}

.motd-editor-page {
  padding-bottom: 56px;
}

.motd-hero {
  max-width: 940px;
  margin: 24px auto 18px;
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.motd-hero__title {
  margin: 4px 0 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
  color: var(--motd-text);
  letter-spacing: -0.04em;
  font-family: "Syne", "Inter", system-ui, sans-serif;
  font-weight: 600;
}

.motd-hero__title span {
  color: var(--motd-blue);
}

.motd-hero__sub {
  margin: 0;
  color: var(--motd-muted);
  font-size: 0.98rem;
  max-width: 72ch;
}

.motd-nextlevel {
  max-width: 940px;
  margin: 16px auto 0;
  padding: 0;
  background: transparent;
}

.motd-nextlevel.section {
  padding-top: 0;
  padding-bottom: 0;
}

.motd-nextlevel .section-head {
  text-align: center;
  max-width: 980px;
  margin-inline: auto;
}

.motd-nextlevel .section-head h2 {
  margin-bottom: 12px;
}

.motd-nextlevel .wp-nextlevel-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.motd-nextlevel .wp-nextlevel-card {
  padding: 26px 30px 24px;
  min-height: 220px;
  grid-column: span 4;
  border: 1px solid #dfe4ec;
  border-radius: 14px;
  background: #ffffff;
}

.motd-nextlevel .wp-nextlevel-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.motd-nextlevel .wp-nextlevel-icon svg {
  width: 18px;
  height: 18px;
}

.motd-nextlevel .wp-nextlevel-icon--blue {
  background: #e9f1ff;
  color: #2f6cff;
}

.motd-nextlevel .wp-nextlevel-icon--amber {
  background: #fff3e3;
  color: #f39a21;
}

.motd-nextlevel .wp-nextlevel-icon--purple {
  background: #f1ebff;
  color: #7b4cff;
}

.motd-nextlevel .wp-nextlevel-icon--green {
  background: #eaf7e9;
  color: #3f8f3a;
}

.motd-nextlevel .wp-nextlevel-card h3 {
  margin: 0 0 14px;
  font-size: 1.85rem;
  line-height: 1.2;
  color: #101626;
}

.motd-nextlevel .wp-nextlevel-card p {
  margin: 0;
  color: #2e3749;
  font-size: 1.02rem;
  line-height: 1.45;
}

.motd-panel {
  max-width: 940px;
  margin: 14px auto 0;
  background: var(--motd-card);
  border: 1px solid var(--motd-border);
  border-radius: 16px;
  box-shadow: var(--motd-shadow-soft);
  padding: 16px;
}

.motd-panel h2 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  font-family: "Syne", "Inter", system-ui, sans-serif;
  letter-spacing: -0.02em;
}

.motd-toolbar {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}

.motd-toolbar__colors,
.motd-toolbar__styles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.motd-color {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.motd-color:hover,
.motd-color:focus-visible {
  transform: translateY(-1px);
}

.motd-color--0 {
  background: #000000;
}

.motd-color--1 {
  background: #0000aa;
}

.motd-color--2 {
  background: #00aa00;
}

.motd-color--3 {
  background: #00aaaa;
}

.motd-color--4 {
  background: #aa0000;
}

.motd-color--5 {
  background: #aa00aa;
}

.motd-color--6 {
  background: #ffaa00;
}

.motd-color--7 {
  background: #aaaaaa;
}

.motd-color--8 {
  background: #555555;
}

.motd-color--9 {
  background: #5555ff;
}

.motd-color--a {
  background: #55ff55;
}

.motd-color--b {
  background: #55ffff;
}

.motd-color--c {
  background: #ff5555;
}

.motd-color--d {
  background: #ff55ff;
}

.motd-color--e {
  background: #ffff55;
}

.motd-color--f {
  background: #ffffff;
}

.motd-style-btn,
.mc-copy-btn {
  min-height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid var(--motd-border-strong);
  background: #f4f8ff;
  color: #4a5f85;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.motd-style-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.motd-style-btn:hover,
.mc-copy-btn:hover {
  color: var(--ink);
  border-color: #afc4ea;
}

.motd-align-group {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 10px;
  background: #eaf1ff;
  border: 1px solid #c8daf8;
  flex-wrap: wrap;
}

.motd-align-btn {
  min-width: 72px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #c8daf8;
  border-radius: 8px;
  background: #ffffff;
  color: #335d9e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.motd-align-label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  color: inherit;
  text-transform: capitalize;
  white-space: nowrap;
}

.motd-align-btn:hover,
.motd-align-btn:focus-visible {
  background: #f2f7ff;
  border-color: #9dc0f4;
  color: #234d8f;
  transform: translateY(-1px);
}

.motd-style-btn--danger {
  color: #c33e3e;
  border-color: #f1b8b8;
  background: #fff1f1;
}

.motd-style-btn--danger svg {
  width: 14px;
  height: 14px;
}

.motd-style-btn--danger svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.motd-style-btn--danger:hover,
.motd-style-btn--danger:focus-visible {
  color: #a82a2a;
  border-color: #e79f9f;
  background: #ffe5e5;
}

.mc-copy-btn.is-copied {
  color: #0d8a44;
  border-color: rgba(14, 160, 69, 0.45);
  background: #ecfff3;
}

.motd-editor-input {
  width: 100%;
  min-height: 124px;
  resize: vertical;
  border-radius: 10px;
  border: 1px solid var(--motd-border-strong);
  background: #ffffff;
  color: var(--ink);
  padding: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.94rem;
  line-height: 1.5;
}

.motd-editor-input:focus {
  outline: none;
  border-color: rgba(63, 139, 255, 0.78);
  box-shadow: 0 0 0 4px rgba(63, 139, 255, 0.18);
}

.motd-preview {
  border-radius: 10px;
  border: 1px solid #111826;
  background: #05080f;
  color: #ffffff;
  padding: 14px;
  min-height: 72px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  line-height: 1.45;
  overflow-x: auto;
}

.motd-preview__line {
  white-space: pre-wrap;
  word-break: break-word;
}

.motd-code-block {
  border: 1px solid var(--motd-border);
  border-radius: 10px;
  padding: 10px;
  background: #f7faff;
  margin-top: 10px;
}

.motd-code-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.motd-code-meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.motd-code-meta strong {
  font-size: 1.1rem;
  color: var(--ink);
}

.motd-code-meta span {
  font-size: 0.9rem;
  color: #6a7d9d;
}

.motd-code-pre {
  margin: 0;
  border-radius: 8px;
  border: 1px solid #0d1522;
  background: #060a12;
  color: #ff7d84;
  padding: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.9rem;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
}

.motd-permalink-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.motd-permalink-input {
  min-height: 40px;
  width: 100%;
  border: 1px solid var(--motd-border-strong);
  border-radius: 8px;
  background: #ffffff;
  padding: 0 10px;
  color: var(--ink);
  font-size: 0.88rem;
}

.vps-faq-impact {
  position: relative;
  isolation: isolate;
  margin-top: 16px;
}

.vps-faq-impact::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(180deg, #f5f9ff 0%, #edf4ff 100%);
  z-index: -1;
}

.vps-faq-impact .section-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 18px;
}

.vps-faq-impact .section-head h2 {
  margin-bottom: 8px;
}

.vps-faq-impact .section-head p {
  color: #556782;
}

.vps-faq-impact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.vps-faq-impact .accordion {
  border: 1px solid #d9e4f5;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(17, 32, 61, 0.06);
  overflow: hidden;
  transition: box-shadow 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
  align-self: start;
  padding: 0;
}

.vps-faq-impact .accordion:hover {
  border-color: #c4d5ef;
  box-shadow: 0 12px 24px rgba(17, 32, 61, 0.09);
  transform: translateY(-1px);
}

.vps-faq-impact .accordion-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 20px 20px 18px;
  color: #27384f;
  font-weight: 600;
  font-size: clamp(1rem, 1.55vw, 1.08rem);
  line-height: 1.35;
}

.vps-faq-impact .accordion-toggle::before {
  content: "?";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1d58a8;
  background: #eef4ff;
  border: 1px solid #d5e4fb;
  font-weight: 700;
  flex: 0 0 24px;
}

.vps-faq-impact .accordion-toggle > span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #ccdbf4;
  background: #f5f9ff;
  color: #1f4f96;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.26s ease, background-color 0.26s ease, color 0.26s ease;
  flex: 0 0 28px;
}

.vps-faq-impact .accordion-toggle[aria-expanded="true"] > span {
  transform: rotate(45deg);
  background: #1f63d4;
  color: #ffffff;
}

.vps-faq-impact .accordion-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0 20px;
  transition: max-height 0.3s ease, opacity 0.22s ease, padding 0.22s ease;
  color: #4f6078;
  font-size: 0.98rem;
  line-height: 1.58;
}

.vps-faq-impact .accordion-panel.is-open {
  opacity: 1;
  padding: 0 20px 18px 20px;
}

.motd-final-cta {
  max-width: 940px;
  margin: 16px auto 0;
}

.motd-final-cta__banner {
  border-radius: 14px;
  border: 1px solid var(--motd-border);
  background: linear-gradient(135deg, #edf4ff, #f8fbff);
  box-shadow: var(--motd-shadow-soft);
  padding: 26px 20px;
  text-align: center;
}

.motd-final-cta__title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.65rem, 4.2vw, 2.3rem);
  letter-spacing: -0.02em;
  font-family: "Syne", "Inter", system-ui, sans-serif;
  font-weight: 600;
}

.motd-final-cta__sub {
  margin: 8px 0 0;
  color: #506587;
  font-size: 0.95rem;
}

.motd-final-cta__btn {
  margin-top: 16px;
  border-radius: 10px;
  min-height: 44px;
  padding: 10px 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 980px) {
  .motd-nextlevel .wp-nextlevel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .motd-nextlevel .wp-nextlevel-card {
    grid-column: span 1;
    min-height: 0;
    padding: 22px;
  }

  .vps-faq-impact__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .motd-hero {
    margin-top: 18px;
  }

  .motd-panel {
    padding: 12px;
  }

  .motd-nextlevel .wp-nextlevel-grid {
    grid-template-columns: 1fr;
  }

  .vps-faq-impact .section-head {
    margin-bottom: 14px;
  }

  .motd-panel h2 {
    font-size: 1.3rem;
  }

  .motd-final-cta__banner {
    padding: 20px 14px;
  }

  .motd-final-cta__title {
    font-size: 1.45rem;
  }

  .motd-permalink-row {
    grid-template-columns: 1fr;
  }

  .motd-code-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

.wl-help {
  margin: 0 0 10px;
  color: var(--motd-muted);
  font-size: 0.95rem;
}

.wl-workspace {
  max-width: 940px;
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.wl-workspace .motd-panel {
  max-width: none;
  margin: 0;
  height: 100%;
}

.wl-input {
  min-height: 180px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.wl-actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
}

.wl-inline-summary {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--motd-border);
}

.wl-inline-summary h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-family: "Syne", "Inter", system-ui, sans-serif;
  letter-spacing: -0.01em;
}

.wl-summary {
  margin: 0;
  color: var(--motd-muted);
  font-size: 1rem;
}

.wl-disclaimer-panel {
  border-color: var(--motd-border);
  box-shadow: var(--motd-shadow-soft);
}

.wl-disclaimer-text {
  margin: 0 0 10px;
  color: var(--motd-muted);
}

.wl-important-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.wl-important-ping {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.wl-important-ping::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 999px;
  border: 2px solid rgba(239, 68, 68, 0.45);
  animation: wlPing 1.6s ease-out infinite;
}

@keyframes wlPing {
  0% {
    transform: scale(0.7);
    opacity: 0.95;
  }
  80% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.wl-neon-copy {
  border-color: var(--motd-border-strong);
  color: #32517d;
  background: #eaf2ff;
  box-shadow: none;
}

.wl-neon-copy:hover,
.wl-neon-copy:focus-visible {
  border-color: #9dc0f4;
  color: #234d8f;
  background: #f2f7ff;
  box-shadow: none;
}

.wl-neon-inline {
  margin-top: 8px;
  border-radius: 12px;
  border: 1px solid var(--motd-border);
  background: #f7faff;
  box-shadow: none;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}

.wl-neon-inline__meta {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}

.wl-neon-inline__meta strong {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
}

.wl-neon-inline__meta span {
  color: var(--motd-muted);
  font-weight: 500;
}

.wl-neon-inline__command {
  min-width: 0;
  border-radius: 9px;
  border: 1px solid #d7e4f7;
  background: #ffffff;
  color: #24456f;
  padding: 9px 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 1.05rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 840px) {
  .wl-neon-inline {
    grid-template-columns: 1fr;
  }

  .wl-neon-inline__meta {
    white-space: normal;
  }
}

@media (max-width: 980px) {
  .wl-workspace {
    grid-template-columns: 1fr;
  }
}

.props-page .wl-help code,
.props-page .wl-disclaimer-text code,
.props-page .motd-hero__sub code {
  background: #f1f6ff;
  border: 1px solid #d7e4f7;
  border-radius: 6px;
  padding: 0 6px;
}

.props-import-input {
  min-height: 140px;
}

.props-page .container {
  max-width: 1280px;
}

.props-page .motd-hero,
.props-page .motd-panel,
.props-layout {
  max-width: 1180px;
}

.props-layout {
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.props-layout .motd-panel {
  max-width: none;
  margin: 0;
}

.props-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.props-tab {
  border: 1px solid var(--motd-border-strong);
  background: #f3f7ff;
  color: #32517d;
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.props-tab.is-active {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}

.props-fields {
  display: grid;
  gap: 10px;
}

.props-tab__icon,
.props-title-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
}

.props-title-icon {
  margin-right: 8px;
  width: 22px;
  height: 22px;
}

.props-title-icon--import {
  background: linear-gradient(135deg, #2f80ed, #56ccf2);
}

.props-title-icon--settings {
  background: linear-gradient(135deg, #7f53ff, #55d6ff);
}

.props-title-icon--generated {
  background: linear-gradient(135deg, #f2994a, #f2c94c);
}

.props-icon--general {
  background: linear-gradient(135deg, #4361ee, #4cc9f0);
}

.props-icon--world {
  background: linear-gradient(135deg, #22c55e, #86efac);
}

.props-icon--network {
  background: linear-gradient(135deg, #06b6d4, #67e8f9);
}

.props-icon--performance {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.props-icon--rcon {
  background: linear-gradient(135deg, #ef4444, #fb7185);
}

.props-icon--protection {
  background: linear-gradient(135deg, #0ea5e9, #22d3ee);
}

.props-icon--advanced {
  background: linear-gradient(135deg, #8b5cf6, #c084fc);
}

.props-field {
  display: grid;
  gap: 4px;
  border: 1px solid var(--motd-border);
  border-radius: 10px;
  background: #f8fbff;
  padding: 10px;
}

.props-field--toggle {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
}

.props-field--toggle input[type='checkbox'] {
  width: 18px;
  height: 18px;
}

.props-field__meta {
  display: grid;
  gap: 4px;
}

.props-field__label {
  font-weight: 700;
  color: var(--ink);
}

.props-field__key {
  color: #6a7d9d;
  font-size: 0.82rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.props-control {
  min-height: 38px;
  border: 1px solid #c3d4f1;
  border-radius: 8px;
  background: #ffffff;
  padding: 0 10px;
  color: var(--ink);
  font-size: 0.95rem;
}

.props-control:focus {
  outline: none;
  border-color: rgba(63, 139, 255, 0.78);
  box-shadow: 0 0 0 4px rgba(63, 139, 255, 0.18);
}

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

.circle-page .props-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
}

.circle-layout {
  gap: 22px;
}

.circle-layout .motd-panel {
  padding: 20px;
}

.circle-layout .props-field {
  padding: 16px;
}

.circle-range {
  width: 100%;
  accent-color: #5b7cfa;
  margin-top: 6px;
}

.circle-quick {
  margin-top: 14px;
  margin-bottom: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.circle-quick-btn {
  border: 1px solid #d0dcf4;
  background: #f4f8ff;
  color: #355585;
  border-radius: 10px;
  min-width: 44px;
  height: 40px;
  font-weight: 700;
  cursor: pointer;
}

.circle-quick-btn.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.circle-stats {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.circle-stats article {
  border: 1px solid #dbe7f8;
  border-radius: 10px;
  background: #f8fbff;
  padding: 10px;
}

.circle-stats h3 {
  margin: 0 0 8px;
  font-size: 0.82rem;
  color: #6c7f9f;
  font-family: "Inter", system-ui, sans-serif;
}

.circle-stats p {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
}

.circle-download {
  width: 100%;
  min-height: 52px;
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
}

.circle-download:hover {
  background: var(--primary-600);
  border-color: var(--primary-600);
}

.circle-canvas-wrap {
  border: 1px solid #dbe7f8;
  border-radius: 12px;
  background: #ffffff;
  padding: 14px;
}

.circle-canvas-wrap canvas {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 980px) {
  .circle-page .props-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .circle-layout .motd-panel {
    padding: 16px;
  }
}
