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

body {
  font-family: "Nunito Sans", sans-serif;
  background: #080810;
  color: #c8c8d8;
  min-height: 100vh;
  line-height: 1.7;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 500px;
  height: 500px;
  background: #6c3ce0;
  top: -15%;
  left: -10%;
}
.orb-2 {
  width: 350px;
  height: 350px;
  background: #e03c8a;
  bottom: -10%;
  right: -5%;
}

.page {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
}

.page-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}
.page-nav .back {
  margin-bottom: 0;
}
.back {

  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  transition: color 0.2s;
}
.back:hover {
  color: rgba(255, 255, 255, 0.6);
}

.doc-header {
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.doc-header h1 {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  background: linear-gradient(135deg, #fff 0%, #c4b5fd 40%, #f0abfc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  font-family: "Nunito", sans-serif;
  font-weight: 600;
}

.doc-separator {
  margin: 5rem 0;
  padding: 2rem 0;
  text-align: center;
}
.doc-divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(196, 181, 253, 0.3) 30%, rgba(224, 60, 138, 0.25) 70%, transparent 100%);
}

h2, h3 {
  position: relative;
}

.anchor {
  position: absolute;
  left: -1.3rem;
  color: rgba(224, 60, 138, 0.4);
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.2s, color 0.2s;
  font-weight: 400;
}

h2:hover .anchor, h3:hover .anchor {
  opacity: 1;
}

.anchor:hover {
  color: rgba(224, 60, 138, 0.8);
}

h2 {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #e0d8ff;
  margin: 2.5rem 0 0.6rem;
}
h3 {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: #c4b5fd;
  margin: 1.5rem 0 0.4rem;
}

p {
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
}
ul,
ol {
  margin: 0.4rem 0 0.8rem 1.4rem;
  font-size: 0.92rem;
}
li {
  margin-bottom: 0.3rem;
}

a {
  color: #c4b5fd;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.88rem;
}
th {
  text-align: left;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  color: #c4b5fd;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
}
td {
  padding: 0.5rem 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
}



.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.75rem 1rem;
  font-family: "Nunito", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  background: linear-gradient(to top, rgba(8, 8, 16, 0.95), transparent);
}
.footer a {
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.footer a:hover {
  color: rgba(255, 255, 255, 0.55);
}
