:root {
  --tc-accent: #18d67c;
  --tc-accent-2: #23a6ff;
  --tc-bg: #f6f8fb;
  --tc-surface: rgba(255, 255, 255, 0.9);
  --tc-surface-strong: #ffffff;
  --tc-text-soft: #64748b;
  --tc-border: rgba(15, 23, 42, 0.1);
  --tc-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

[data-md-color-scheme="slate"] {
  --md-default-bg-color: #080d16;
  --md-default-fg-color: #e5edf7;
  --md-default-fg-color--light: #b8c4d6;
  --md-default-fg-color--lighter: #91a0b7;
  --md-typeset-color: #dbe7f5;
  --md-code-bg-color: #101827;
  --md-code-fg-color: #dbe7f5;
  --tc-bg: #080d16;
  --tc-surface: rgba(15, 23, 42, 0.86);
  --tc-surface-strong: #101827;
  --tc-text-soft: #9fb0c7;
  --tc-border: rgba(148, 163, 184, 0.18);
  --tc-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
}

body {
  background:
    radial-gradient(circle at top left, rgba(24, 214, 124, 0.12), transparent 34rem),
    radial-gradient(circle at top right, rgba(35, 166, 255, 0.12), transparent 30rem),
    var(--tc-bg);
}

.md-header {
  background: rgba(8, 13, 22, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.md-header__title {
  font-weight: 700;
}

.md-tabs,
.md-footer {
  background: #070b12;
}

.md-main__inner {
  margin-top: 1rem;
}

.md-content__inner {
  padding: 1.4rem;
  background: var(--tc-surface);
  border: 1px solid var(--tc-border);
  border-radius: 18px;
  box-shadow: var(--tc-shadow);
}

.md-typeset h1,
.md-typeset h2,
.md-typeset h3 {
  color: var(--md-default-fg-color);
  font-weight: 800;
}

.md-typeset h2 {
  padding-top: 0.4rem;
  border-top: 1px solid var(--tc-border);
}

.md-typeset a {
  color: var(--tc-accent-2);
}

.md-typeset blockquote {
  color: var(--md-default-fg-color);
  background: rgba(24, 214, 124, 0.08);
  border-left: 0.18rem solid var(--tc-accent);
  border-radius: 12px;
  padding: 0.6rem 0.9rem;
}

.md-typeset img {
  display: block;
  max-width: min(100%, 520px);
  margin: 1rem auto;
  border-radius: 18px;
  border: 1px solid var(--tc-border);
  box-shadow: var(--tc-shadow);
}

.md-nav__link {
  border-radius: 10px;
  color: var(--md-default-fg-color--light);
}

.md-nav__link:hover,
.md-nav__link--active {
  color: var(--tc-accent);
  background: rgba(24, 214, 124, 0.1);
}

.md-sidebar__scrollwrap {
  padding-right: 0.35rem;
}

.tc-theme-toggle {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  width: 2rem;
  height: 2rem;
  margin-left: 0.2rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  font: inherit;
}

.tc-theme-toggle:hover {
  background: rgba(24, 214, 124, 0.22);
}

@media screen and (max-width: 76.1875em) {
  .md-content__inner {
    margin: 0.5rem;
  }
}

@media screen and (max-width: 44.9375em) {
  .md-main__inner {
    margin-top: 0;
  }

  .md-content__inner {
    padding: 1rem;
    border-radius: 14px;
    box-shadow: none;
  }

  .md-typeset h1 {
    font-size: 1.65rem;
  }

  .md-typeset h2 {
    font-size: 1.25rem;
  }

  .md-typeset img {
    border-radius: 14px;
  }
}
