/* Same CSS as privacy.html */
    :root {
      --neon-blue: #0ff0fc;
      --neon-pink: #ff00ff;
      --dark-bg: #121212;
      --text-light: #f0f0f0;
      --accent-yellow: #f5d742;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Courier New', monospace;
    }
    body {
      background-color: var(--dark-bg);
      color: var(--text-light);
    }
    header {
      position: fixed;
      top: 0;
      width: 100%;
      background-color: rgba(18, 18, 18, 0.9);
      z-index: 1000;
      padding: 1rem;
      border-bottom: 1px solid var(--neon-blue);
    }
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: var(--neon-pink);
      text-decoration: none;
    }
    .nav-links {
      display: flex;
      gap: 2rem;
    }
    .nav-links a {
      color: var(--text-light);
      text-decoration: none;
      transition: color 0.3s;
    }
    .nav-links a:hover {
      color: var(--neon-blue);
    }
    .burger {
      display: none;
      cursor: pointer;
    }
    .burger div {
      width: 25px;
      height: 3px;
      background-color: var(--text-light);
      margin: 5px;
      transition: all 0.3s ease;
    }
    main {
      margin-top: 80px;
      padding: 2rem;
    }
    h1 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
      color: var(--neon-pink);
    }
    h2 {
      font-size: 1.8rem;
      margin: 2rem 0 1rem;
      color: var(--neon-blue);
    }
    p, li {
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 1rem;
    }
    ul {
      margin-left: 2rem;
      margin-bottom: 2rem;
    }
    footer {
      background-color: #000;
      padding: 2rem;
      text-align: center;
      border-top: 1px solid var(--neon-blue);
    }
    .footer-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-bottom: 1.5rem;
    }
    .footer-links a {
      color: var(--text-light);
      text-decoration: none;
    }
    .footer-links a:hover {
      color: var(--neon-pink);
    }
    @media (max-width: 768px) {
      .nav-links {
        position: absolute;
        right: 0;
        top: 70px;
        background-color: var(--dark-bg);
        flex-direction: column;
        width: 100%;
        align-items: center;
        padding: 1rem 0;
        clip-path: circle(0px at 90% -10%);
        transition: all 0.5s ease-out;
      }
      .nav-links.active {
        clip-path: circle(1000px at 90% -10%);
      }
      .burger {
        display: block;
      }
      .burger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
      }
      .burger.active div:nth-child(2) {
        opacity: 0;
      }
      .burger.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
      }
    }

