:root {
  --color-primary: #22c55e;
  --color-primary-hover: #15803d;
  --color-primary-light: #dcfce7;
  --color-primary-soft: #f3fff7;
  --color-bg: #f6fff8;
  --color-surface: #ffffff;
  --color-surface-alt: #f1fbf4;
  --color-text-main: #052e16;
  --color-text-body: #14532d;
  --color-text-muted: #4d7c64;
  --color-border: #bbf7d0;
  --color-header-bg: rgba(220, 252, 231, 0.9);
  --shadow-sm: 0 1px 2px 0 rgb(15 23 42 / 0.05);
  --shadow-md: 0 10px 30px -18px rgb(15 23 42 / 0.18);
  --shadow-lg: 0 24px 45px -24px rgb(15 23 42 / 0.22);
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: "Inter", sans-serif;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--color-text-body);
  background: linear-gradient(180deg, #f4fff7 0%, #ffffff 44%, #f4fff7 100%);
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  color: var(--color-text-main);
  font-family: var(--font-display);
  line-height: 1.18;
}

p {
  color: var(--color-text-body);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(34, 197, 94, 0.35);
  outline-offset: 3px;
}

.central-help-page > header,
.bug-header,
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(8rem, 1fr) auto minmax(8rem, 1fr);
  align-items: center;
  gap: 1.6rem;
  padding: 0 2.4rem;
  border-bottom: 1px solid rgba(34, 197, 94, 0.08);
  background: var(--color-header-bg);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.logo,
.site-name {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-primary-hover);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
}

.logo {
  justify-self: start;
  grid-column: 1;
}

.logo img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(34, 197, 94, 0.14);
  border-radius: 14px;
  background: #ffffff;
  padding: 0.45rem;
  box-shadow: 0 10px 22px -18px rgba(15, 23, 42, 0.38);
}

.logo h1,
.logo span,
.site-name {
  color: var(--color-primary-hover);
}

.logo h1 {
  font-size: 2.2rem;
  font-weight: 800;
}

.site-name {
  justify-self: center;
  grid-column: 2;
}

.menu-button {
  justify-self: start;
  grid-column: 1;
  width: 40px;
  height: 40px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  border-radius: 14px;
  background: transparent;
  transition: var(--transition);
}

.menu-button:hover {
  background: rgba(220, 252, 231, 0.78);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-text-main);
}

.home-btn,
.home-button,
.topbar > button,
.bug-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-height: 42px;
  padding: 0 1.6rem;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary-hover), var(--color-primary));
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.22);
  font-size: 1.4rem;
  font-weight: 800;
  transition: var(--transition);
}

.topbar-actions {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.central-help-page > header .home-btn,
.central-help-page > header .home-button,
.topbar > button {
  grid-column: 3;
}

.home-btn:hover,
.home-button:hover,
.topbar > button:hover,
.bug-btn:hover {
  color: #ffffff;
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--color-primary-hover), #16a34a);
}

.central-help-page > main,
.bug-main {
  flex: 1;
  width: min(1140px, calc(100% - 4rem));
  margin-inline: auto;
  padding: clamp(3rem, 5vw, 5.2rem) 0 clamp(4rem, 7vw, 7.2rem);
}

.title,
.bug-report {
  text-align: center;
}

.title {
  max-width: 760px;
  margin: 0 auto clamp(2.8rem, 5vw, 4.8rem);
}

.title h2,
.bug-report h1,
.content.page h1 {
  font-size: clamp(3.4rem, 6vw, 5.6rem);
  font-weight: 800;
  letter-spacing: 0;
}

.title p {
  margin-top: 1rem;
  color: var(--color-text-muted);
  font-size: clamp(1.7rem, 2.4vw, 2.1rem);
  font-weight: 700;
}

.content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(28rem, 0.75fr);
  gap: 2rem;
  align-items: stretch;
}

.faq,
.contact,
.content.page,
.bug-report {
  border: 1px solid rgba(187, 247, 208, 0.95);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 255, 251, 0.98));
  box-shadow: var(--shadow-md);
}

.faq,
.contact {
  padding: clamp(2.4rem, 4vw, 3.2rem);
}

.faq-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  margin-bottom: 2.4rem;
}

.faq-title h3,
.contact h3,
.content.page h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.question-icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary-hover), var(--color-primary));
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  box-shadow: 0 16px 30px -20px rgba(34, 197, 94, 0.75);
}

.faq ul {
  display: grid;
  gap: 1.2rem;
}

.faq li {
  position: relative;
  padding: 1.3rem 1.4rem 1.3rem 4rem;
  border: 1px solid rgba(34, 197, 94, 0.14);
  border-radius: 18px;
  background: var(--color-primary-soft);
  color: var(--color-text-main);
  font-weight: 700;
}

.faq li::before {
  content: "";
  position: absolute;
  left: 1.6rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--color-primary);
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12);
}

.contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact h3 {
  margin-bottom: 2rem;
  text-align: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.3rem;
  border: 1px solid rgba(34, 197, 94, 0.14);
  border-radius: 18px;
  background: #ffffff;
}

.contact-item + .contact-item {
  margin-top: 1.2rem;
}

.contact-item img {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.contact-item span {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--color-text-main);
  font-weight: 700;
}

.bug-section {
  margin-top: 2.8rem;
  text-align: center;
}

.bug-btn {
  justify-self: center;
  min-height: 48px;
  padding-inline: 2.4rem;
}

.bug-report {
  width: min(720px, 100%);
  margin-inline: auto;
  padding: clamp(2.6rem, 5vw, 4.2rem);
}

.bug-report h1 {
  margin-bottom: 3rem;
}

.bug-info {
  max-width: 58rem;
  margin-inline: auto;
  text-align: left;
}

.bug-info p {
  color: var(--color-text-main);
  font-size: clamp(1.7rem, 2.2vw, 2rem);
  font-weight: 700;
}

.bug-info a {
  color: var(--color-primary-hover);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25em;
}

.bug-info ul {
  display: grid;
  gap: 1.2rem;
  margin-top: 2.4rem;
}

.bug-info li {
  position: relative;
  padding: 1.3rem 1.4rem 1.3rem 4rem;
  border: 1px solid rgba(34, 197, 94, 0.14);
  border-radius: 18px;
  background: var(--color-primary-soft);
  color: var(--color-text-main);
  font-weight: 700;
}

.bug-info li::before {
  content: "";
  position: absolute;
  left: 1.6rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--color-primary);
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12);
}

.help-nav {
  width: min(1140px, calc(100% - 4rem));
  margin: 3rem auto 0;
  padding: 1.5rem;
  border: 1px solid rgba(187, 247, 208, 0.95);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

.help-nav h2 {
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
  color: var(--color-primary-hover);
  text-transform: uppercase;
}

.help-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.help-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 4rem;
  padding: 0.8rem 1.4rem;
  border: 1px solid rgba(34, 197, 94, 0.14);
  border-radius: var(--radius-pill);
  background: var(--color-primary-soft);
  color: var(--color-text-main);
  font-weight: 800;
  transition: var(--transition);
}

.help-nav a:hover,
.help-nav a[aria-current="page"] {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary-hover), var(--color-primary));
  transform: translateY(-1px);
}

.content.page {
  width: min(860px, calc(100% - 4rem));
  margin-inline: auto;
  padding: clamp(2.8rem, 5vw, 4.6rem);
}

.central-help-page--legal .content.page {
  margin-top: 3rem;
  margin-bottom: clamp(4rem, 7vw, 7.2rem);
}

.content.page h1 {
  margin-bottom: 3rem;
}

.content.page h2 {
  margin-top: 2.4rem;
  margin-bottom: 0.8rem;
}

.content.page h2:first-of-type {
  margin-top: 0;
}

.content.page p {
  color: var(--color-text-muted);
  font-size: 1.62rem;
}

.legal-hero {
  margin-bottom: clamp(2.6rem, 4vw, 3.6rem);
}

.legal-kicker {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--color-primary-hover);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-sections {
  display: grid;
  gap: 1.6rem;
}

.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: clamp(2rem, 3vw, 3rem);
  padding: 1.2rem;
  border: 1px solid rgba(34, 197, 94, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
}

.legal-toc__toggle {
  display: none;
}

.legal-toc__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  width: 100%;
}

.legal-toc a {
  display: inline-flex;
  align-items: center;
  min-height: 3.8rem;
  padding: 0.7rem 1.2rem;
  border: 1px solid rgba(34, 197, 94, 0.14);
  border-radius: var(--radius-pill);
  background: var(--color-primary-soft);
  color: var(--color-text-main);
  font-size: 1.35rem;
  font-weight: 800;
  transition: var(--transition);
}

.legal-toc a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary-hover), var(--color-primary));
  transform: translateY(-1px);
}

.legal-section {
  scroll-margin-top: 10rem;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  border: 1px solid rgba(34, 197, 94, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
}

.content.page .legal-section h2 {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin: 0 0 1.2rem;
  font-size: clamp(1.9rem, 2.7vw, 2.4rem);
}

.content.page .legal-section h2 span {
  color: var(--color-primary-hover);
}

.content.page .legal-section h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
  color: var(--color-text-main);
  font-size: 1.7rem;
}

.legal-section p + p,
.legal-section p + ul,
.legal-section p + ol,
.legal-section ul + p,
.legal-section ol + p {
  margin-top: 1rem;
}

.legal-section ul,
.legal-numbered-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
  padding-left: 2.2rem;
}

.legal-section ul {
  list-style: disc;
}

.legal-numbered-list {
  list-style: decimal;
}

.legal-numbered-list > li > ul {
  margin-top: 0.8rem;
}

.legal-section li {
  color: var(--color-text-body);
}

.legal-section a {
  color: var(--color-primary-hover);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

.bug-page .bug-btn {
  color: #ffffff;
}

.content.page.terms-page,
.content.page.privacy-page,
.content.page.bug-page {
  width: min(1240px, calc(100% - 4rem));
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.terms-page .legal-hero,
.terms-page .legal-sections,
.terms-page .legal-section,
.privacy-page .legal-hero,
.privacy-page .legal-sections,
.privacy-page .legal-section,
.bug-page .legal-hero,
.bug-page .legal-sections,
.bug-page .legal-section {
  width: 100%;
}

.content.page.terms-page .legal-hero h1,
.content.page.privacy-page .legal-hero h1,
.content.page.bug-page .legal-hero h1 {
  max-width: 1080px;
  margin-bottom: 0;
}

.terms-page .legal-sections,
.privacy-page .legal-sections,
.bug-page .legal-sections {
  gap: clamp(1.6rem, 2vw, 2.2rem);
}

.terms-page .legal-section,
.privacy-page .legal-section,
.bug-page .legal-section {
  padding: clamp(2.2rem, 3vw, 3.2rem);
}

.content.page.terms-page .legal-section h2,
.content.page.privacy-page .legal-section h2,
.content.page.bug-page .legal-section h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2rem, 2.3vw, 2.8rem);
}

.content.page.terms-page .legal-section h3,
.content.page.privacy-page .legal-section h3,
.content.page.bug-page .legal-section h3 {
  margin-top: 2.2rem;
  font-size: clamp(1.7rem, 1.8vw, 1.95rem);
}

.content.page.terms-page .legal-section p,
.content.page.terms-page .legal-section li,
.content.page.privacy-page .legal-section p,
.content.page.privacy-page .legal-section li,
.content.page.bug-page .legal-section p,
.content.page.bug-page .legal-section li {
  max-width: 112ch;
  font-size: clamp(1.62rem, 1.15vw, 1.78rem);
  line-height: 1.78;
}

.terms-page .legal-section p + p,
.terms-page .legal-section p + ul,
.terms-page .legal-section p + ol,
.terms-page .legal-section ul + p,
.terms-page .legal-section ol + p,
.privacy-page .legal-section p + p,
.privacy-page .legal-section p + ul,
.privacy-page .legal-section p + ol,
.privacy-page .legal-section ul + p,
.privacy-page .legal-section ol + p,
.bug-page .legal-section p + p,
.bug-page .legal-section p + ul,
.bug-page .legal-section p + ol,
.bug-page .legal-section ul + p,
.bug-page .legal-section ol + p {
  margin-top: 1.2rem;
}

.terms-page .legal-section ul,
.terms-page .legal-numbered-list,
.privacy-page .legal-section ul,
.privacy-page .legal-numbered-list,
.bug-page .legal-section ul,
.bug-page .legal-numbered-list {
  gap: 1rem;
  margin-top: 1.2rem;
  padding-left: 2.6rem;
}

html.theme-dark {
  --color-primary: #34d399;
  --color-primary-hover: #86efac;
  --color-primary-light: #123c29;
  --color-primary-soft: rgba(22, 101, 52, 0.28);
  --color-bg: #06140d;
  --color-surface: #0c2117;
  --color-surface-alt: #10301f;
  --color-text-main: #ecfdf5;
  --color-text-body: #d1fae5;
  --color-text-muted: #a7f3d0;
  --color-border: rgba(134, 239, 172, 0.24);
  --color-header-bg: rgba(6, 20, 13, 0.84);
}

html.theme-dark body {
  background: linear-gradient(180deg, #06140d 0%, #081a11 48%, #06140d 100%);
}

html.theme-dark .help-nav,
html.theme-dark .content.page {
  border-color: rgba(134, 239, 172, 0.18);
  background: linear-gradient(180deg, rgba(12, 33, 23, 0.98), rgba(8, 26, 17, 0.98));
}

html.theme-dark .legal-section {
  border-color: rgba(134, 239, 172, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

html.theme-dark .legal-toc {
  border-color: rgba(134, 239, 172, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

html.theme-dark .legal-toc a {
  border-color: rgba(134, 239, 172, 0.18);
  background: rgba(22, 101, 52, 0.22);
}

html.theme-dark .legal-toc__toggle {
  color: #bbf7d0;
  border-color: rgba(134, 239, 172, 0.18);
  background: rgba(22, 101, 52, 0.22);
}

html.theme-dark .help-nav a {
  border-color: rgba(134, 239, 172, 0.18);
  background: rgba(22, 101, 52, 0.22);
}

.footer,
body > footer,
.bug-footer {
  margin-top: auto;
  padding: 5.2rem 2rem;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(135deg, #166534, #22c55e);
}

.footer h2,
.footer h3,
.footer h4,
body > footer h2,
body > footer h3,
body > footer h4,
.bug-footer h2 {
  margin-bottom: 0.8rem;
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 800;
}

.footer p,
body > footer p,
.bug-footer p {
  color: rgba(255, 255, 255, 0.86);
}

.footer p + p,
body > footer p + p,
.bug-footer p + p {
  margin-top: 1.6rem;
  font-size: 1.4rem;
}

@media (max-width: 860px) {
  .central-help-page > header,
  .bug-header,
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .site-name {
    justify-self: start;
  }

  .central-help-page > header .logo,
  .bug-header .menu-button {
    grid-column: 1;
    grid-row: 1;
  }

  .central-help-page > header .site-name {
    grid-column: 1;
  }

  .bug-header .site-name {
    grid-column: 1;
    margin-left: 4.8rem;
  }

  .home-btn,
  .home-button,
  .topbar > button {
    grid-column: 2;
  }

  .topbar-actions {
    grid-column: 2;
  }

  .content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  html {
    font-size: 58%;
  }

  .central-help-page > header,
  .bug-header,
  .topbar {
    min-height: 68px;
    gap: 1rem;
    padding: 0 1.4rem;
  }

  .logo img {
    width: 38px;
    height: 38px;
  }

  .logo h1,
  .logo span,
  .site-name {
    font-size: 1.8rem;
  }

  .home-btn,
  .home-button,
  .topbar > button {
    min-height: 38px;
    padding-inline: 1.2rem;
    border-radius: 14px;
    font-size: 1.25rem;
  }

  .central-help-page > main,
  .bug-main,
  .help-nav,
  .content.page {
    width: min(100% - 3rem, 1140px);
  }

  .faq,
  .contact,
  .bug-report,
  .content.page {
    border-radius: 22px;
  }

  .faq-title {
    align-items: flex-start;
  }

  .question-icon {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    font-size: 2.4rem;
  }

  .contact-item {
    align-items: flex-start;
  }

  .help-nav ul {
    flex-direction: column;
  }

  .help-nav a,
  .bug-btn {
    width: 100%;
    justify-content: center;
  }

  .content.page .legal-section h2 {
    align-items: flex-start;
  }

  .content.page.terms-page,
  .content.page.privacy-page,
  .content.page.bug-page {
    width: min(100% - 3rem, 1240px);
    padding: clamp(2.4rem, 6vw, 3.2rem);
  }

  .legal-toc {
    flex-direction: column;
  }

  .legal-toc a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 620px) and (orientation: portrait) {
  .privacy-page .legal-toc__links {
    flex-direction: column;
  }

  .privacy-page .legal-toc[data-toc-ready="true"] {
    gap: 0;
    overflow: hidden;
    padding: 1.1rem;
  }

  .privacy-page .legal-toc[data-toc-ready="true"] .legal-toc__toggle {
    display: flex;
    width: 100%;
    min-height: 5.2rem;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    padding: 1.15rem 1.35rem;
    border: 1px solid rgba(34, 197, 94, 0.14);
    border-radius: 18px;
    background: var(--color-primary-soft);
    color: var(--color-text-main);
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: left;
    transition: var(--transition);
  }

  .privacy-page .legal-toc[data-toc-ready="true"] .legal-toc__toggle:hover {
    color: var(--color-primary-hover);
    border-color: rgba(34, 197, 94, 0.34);
    background: rgba(220, 252, 231, 0.78);
  }

  .legal-toc__toggle-icon {
    flex: 0 0 auto;
    width: 0.9rem;
    height: 0.9rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-0.15rem);
    transition: transform 0.24s ease;
  }

  .legal-toc__toggle[aria-expanded="true"] .legal-toc__toggle-icon {
    transform: rotate(225deg) translateY(-0.1rem);
  }

  .privacy-page .legal-toc[data-toc-ready="true"] .legal-toc__links {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-0.6rem);
    visibility: hidden;
    transition: max-height 0.34s ease, opacity 0.28s ease, transform 0.28s ease, margin-top 0.28s ease, visibility 0.28s ease;
  }

  .privacy-page .legal-toc[data-toc-ready="true"][data-expanded="true"] .legal-toc__links {
    max-height: 80rem;
    margin-top: 1rem;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  html.theme-dark .privacy-page .legal-toc[data-toc-ready="true"] .legal-toc__toggle {
    color: #bbf7d0;
    border-color: rgba(134, 239, 172, 0.18);
    background: rgba(22, 101, 52, 0.22);
  }

  html.theme-dark .privacy-page .legal-toc[data-toc-ready="true"] .legal-toc__toggle:hover {
    border-color: rgba(134, 239, 172, 0.36);
    background: rgba(34, 197, 94, 0.18);
  }
}
