:root {
      --primary: #6a00ff;
      --secondary: #00ff88;
      --dark: #0a0a0a;
      --light: #f0f0f0;
      --accent: #ff00aa;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Courier New', monospace;
    }
    body {
      background-color: var(--dark);
      color: var(--light);
    }
    header {
      position: fixed;
      top: 0;
      width: 100%;
      background-color: rgba(10, 10, 10, 0.9);
      padding: 1rem;
      z-index: 1000;
      border-bottom: 1px solid var(--primary);
    }
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo {
      color: var(--secondary);
      font-size: 1.5rem;
      font-weight: bold;
      text-decoration: none;
    }
    .nav-links {
      display: flex;
      gap: 2rem;
    }
    .nav-links a {
      color: var(--light);
      text-decoration: none;
      transition: color 0.3s;
    }
    .nav-links a:hover {
      color: var(--secondary);
    }
    .burger {
      display: none;
      cursor: pointer;
    }
    .burger div {
      width: 25px;
      height: 3px;
      background-color: var(--light);
      margin: 5px;
      transition: all 0.3s ease;
    }
    main {
      margin-top: 80px;
      padding: 2rem;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }
    h1 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
      color: var(--secondary);
    }
    h2 {
      font-size: 1.8rem;
      margin: 2rem 0 1rem;
      color: var(--primary);
    }
    p {
      line-height: 1.6;
      margin-bottom: 1rem;
    }
    ul {
      margin-bottom: 1rem;
      padding-left: 2rem;
    }
    li {
      margin-bottom: 0.5rem;
    }
    footer {
      background-color: rgba(10, 10, 10, 0.9);
      padding: 2rem;
      text-align: center;
      border-top: 1px solid var(--primary);
    }
    .footer-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 2rem;
      margin-bottom: 2rem;
    }
    .footer-links a {
      color: var(--light);
      text-decoration: none;
    }
    .footer-links a:hover {
      color: var(--secondary);
    }
    .footer-contact {
      margin-bottom: 2rem;
    }
    .disclaimer {
      font-size: 0.8rem;
      opacity: 0.7;
      margin-top: 2rem;
    }
    @media (max-width: 768px) {
      .nav-links {
        position: absolute;
        right: 0;
        top: 60px;
        background-color: rgba(10, 10, 10, 0.9);
        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);
      }
      main {
        padding: 1rem;
      }
      h1 {
        font-size: 2rem;
      }
    }

