/* Content */
.main {
  margin-top: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
  padding: 18px;
}
.section {
  padding: 16px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.015)
  );
  margin-bottom: 14px;
}
.section h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.95);
}
.section p,
.section li {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
  margin: 8px 0;
}
.section ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.callout {
  margin-top: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 122, 0, 0.25);
  background: rgba(255, 122, 0, 0.08);
  color: rgba(255, 255, 255, 0.9);
}

.p_center {
  text-align: center;
  font-weight: 100;
}

.hosting-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text);
}

.hosting-item {
  margin-bottom: 6px;
  color: var(--muted);
}

.hosting-item b {
  color: var(--text);
}

.hosting-item a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.hosting-item a:hover {
  color: var(--accent2);
  border-color: var(--accent2);
}