.site-main {
  line-height: 1.75;
}

.site-main h1 {
  position: relative;
  margin: 20px 0 32px;
  max-width: 980px;

  color: #fff;
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.site-main h1::after {
  content: '';
  display: block;

  width: 90px;
  height: 4px;
  margin-top: 18px;

  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #27d8b2);
  box-shadow: 0 0 16px rgba(1, 164, 128, 0.35);
}

@media (max-width: 768px) {
  .site-main h1 {
    margin: 10px 0 24px;
    font-size: 34px;
    line-height: 1.2;
  }

  .site-main h1::after {
    width: 70px;
    margin-top: 14px;
  }
}

.site-main h2 {
  margin: 58px 0 20px;
  color: var(--text);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 950;
  line-height: 1.15;
}

.site-main h3 {
  margin: 5px 0 14px;
  color: var(--text);
  font-size: 24px;
  font-weight: 850;
}

.site-main p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.site-main h2 + p {
  color: #c7d3e3;
  font-size: 18px;
}

.site-main strong {
  color: #fff;
  font-weight: 850;
}

.site-main ul,
.site-main ol {
  margin: 0 0 26px 22px;
  padding: 0;
}

.site-main li {
  margin-bottom: 9px;
  color: var(--muted);
  line-height: 1.65;
}

.site-main ul li::marker {
  color: var(--accent);
}

.site-main ol li::marker {
  color: var(--accent);
  font-weight: 900;
}

.site-main blockquote {
  margin: 32px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--accent);
  border-radius: 0 18px 18px 0;
  background: rgba(1, 164, 128, 0.07);
  color: #eaf2ff;
  font-size: 18px;
}

.site-main hr {
  margin: 48px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-main > .container > img,
.site-main .entry-content > img,
.site-main p > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 32px auto;
  border-radius: 18px;
}

.site-main table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(11, 29, 46, 0.62);
  border: 1px solid rgba(1, 164, 128, 0.14);
}

.site-main th {
  padding: 15px 16px;
  background: rgba(1, 164, 128, 0.12);
  color: #fff;
  font-size: 14px;
  text-align: left;
}

.site-main td {
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--muted);
}

.site-main tr:hover td {
  background: rgba(1, 164, 128, 0.04);
}

.site-main code {
  padding: 3px 7px;
  border-radius: 7px;
  background: rgba(1, 164, 128, 0.1);
  color: var(--accent-2);
}

.site-main pre {
  margin: 30px 0;
  padding: 22px;
  overflow-x: auto;
  border-radius: 16px;
  background: #07131f;
}

.site-main p a,
.site-main li a,
.site-main td a {
  color: var(--accent-2);
  text-decoration: none;
}

.site-main p a:hover,
.site-main li a:hover,
.site-main td a:hover {
  color: #38d8b8;
}

.notice {
  margin: 26px 0;
  padding: 18px 22px;

  border-radius: 16px;
  border-left: 4px solid var(--accent);

  background: linear-gradient(180deg, rgba(13, 29, 49, 0.92), rgba(8, 22, 36, 0.96));

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.notice p {
  margin: 0;
}

.notice strong {
  color: #fff;
}

.notice::before {
  content: 'ℹ';
  display: inline-flex;

  width: 28px;
  height: 28px;

  align-items: center;
  justify-content: center;

  margin-right: 12px;

  border-radius: 50%;

  background: rgba(1, 164, 128, 0.12);

  color: var(--accent);

  font-weight: 900;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;

  margin: 24px 0;

  border-radius: 18px;

  scrollbar-width: thin;
  scrollbar-color: var(--accent) rgba(255, 255, 255, 0.06);
}

.table-responsive::-webkit-scrollbar {
  height: 8px;
}

.table-responsive::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
}

.table-responsive::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 999px;
}

.table-responsive table {
  min-width: 760px;
}
