 /* Reset & base */
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  margin: 0; padding: 0;
  font-family: 'Orbitron', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0a0a0a;
  color: #00ffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-y: scroll;
}
a {
  color: #00ffff;
  text-decoration: none;
  text-shadow:
    0 0 3px #00fff7;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
a:hover,
a:focus {
  color: #33ffff;
  text-shadow:
    0 0 6px #33ffff;
  outline: none;
}

/* Container */
.container {
  max-width: 900px;
  margin: 3rem auto 5rem;
  background: #121212;
  border: 2px solid #00ffff;
  border-radius: 12px;
  box-shadow:
    0 0 6px #00ffff;
  padding: 3rem 4rem;
  filter: drop-shadow(0 0 3px #00ffff);
}

/* Title */
h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #00ffff;
  text-shadow:
    0 0 6px #00ffff;
  border-bottom: 3px solid #00ffff;
  padding-bottom: 0.5rem;
  margin-bottom: 3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Table of Contents */
nav#toc {
  margin-bottom: 3rem;
  border-left: 4px solid #00ffff;
  padding-left: 1.2rem;
}
nav#toc h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #00ffff;
  text-shadow: 0 0 3px #00ffff;
  margin-bottom: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
nav#toc ul {
  list-style-type: none; /* No numbering */
  padding-left: 0;       /* Remove default padding */
  margin: 0;
  color: #a0f9ff;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}
nav#toc li {
  margin-bottom: 0.8rem;
}
nav#toc a {
  color: #00ffff;
  text-shadow: none;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
nav#toc a:hover,
nav#toc a:focus {
  color: #33ffff;
  text-shadow: 0 0 5px #33ffff;
}

/* Privacy Content Sections */
article section {
  margin-bottom: 3.5rem;
  scroll-margin-top: 110px;
  border-left: 3px solid #00ffff;
  padding-left: 1rem;
  filter: drop-shadow(0 0 2px #00ffff);
}
article section h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #00ffff;
  text-shadow:
    0 0 3px #00ffff;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
article section p {
  font-size: 1.15rem;
  color: #a0f9ff;
  max-width: 95%;
  text-shadow: 0 0 1px #00ffff;
  line-height: 1.8;
}

/* Footer */
footer {
  text-align: center;
  font-size: 1rem;
  color: #33ffffcc;
  border-top: 1px solid #00ffff33;
  padding-top: 1.5rem;
  margin-top: 4rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow:
    0 0 3px #00ffff66;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 700px) {
  .container {
    padding: 2rem 2rem;
    margin: 2rem 1rem 3rem;
  }
  h1 {
    font-size: 2.4rem;
  }
  nav#toc h2 {
    font-size: 1.6rem;
  }
  nav#toc a {
    font-size: 1rem;
  }
  article section h2 {
    font-size: 1.8rem;
  }
  article section p {
    font-size: 1rem;
  }
}
/* Custom Scrollbar for WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: #121212;
  border-radius: 8px;
  box-shadow: inset 0 0 5px #000000;
}
::-webkit-scrollbar-thumb {
  background-color: #00ffff;
  border-radius: 8px;
  border: 3px solid #121212;
  box-shadow: 0 0 8px #00ffffaa;
  transition: background-color 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #33ffff;
  box-shadow: 0 0 12px #33ffffcc;
}

/* Firefox scrollbar styling */
* {
  scrollbar-width: thin;
  scrollbar-color: #00ffff #121212;
}