body {
  width: 45em;
  margin: 0 auto;
  font-family: Tahoma, Verdana, Arial, sans-serif;
  line-height: 1.5;
}

h1 {
  text-align: center;
  margin-bottom: 1.5em;
}

/* Удвоенная ширина: 2 × 35em = 70em, с центрированием */
.rustdesk-section {
  width: 70em;
  max-width: 100%;
  margin: 2em auto;
  padding: 1.2em;
  border: 1px solid #2c3e50;
  border-radius: 8px;
  background-color: #f0f8ff;
  text-align: center;
}

.rustdesk-section h2 {
  margin-top: 0;
  color: #2c3e50;
}

.rustdesk-screenshot {
  display: block;
  margin: 1.2em auto;
  max-width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* Спойлер */
.spoiler-header {
  cursor: pointer;
  text-decoration: underline;
  color: #1a5fb4;
  font-weight: bold;
  margin-top: 2em;
  user-select: none;
}

.spoiler-content {
  display: none;
  margin-top: 0.8em;
  padding: 1em;
  background-color: #fafafa;
  border: 1px dashed #aaa;
  border-radius: 4px;
}

.spoiler-content.show {
  display: block;
}

.warning {
  font-weight: bold;
  color: #c00;
  text-align: center;
}

.footer-note {
  text-align: center;
  margin-top: 1.2em;
  font-style: italic;
  color: #666;
}

.rustdesk-section blockquote {
  margin: 1.2em auto;
  padding: 0.6em 1em;
  background-color: #fff9c4;
  border-left: 4px solid #ffc107;
  font-style: normal;
  color: #5d4037;
  max-width: 90%;
  border-radius: 0 4px 4px 0;

  /* Перенос длинных слов/строк */
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-all; /* или break-word — по вкусу */
}

.error {
  color: #d32f2f;
  background-color: #ffebee;
  padding: 0.5em;
  border-radius: 4px;
  font-family: monospace;
}
