:root {
      --neon-pink: #ff2a6d;
      --cyber-teal: #05d9e8;
      --dark-purple: #1a1a2e;
      --matrix-green: #0f0;
      --electric-blue: #4dccff;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Courier New', monospace;
    }
    body {
      background-color: var(--dark-purple);
      color: white;
      overflow-x: hidden;
      line-height: 1.6;
    }
    header {
      position: fixed;
      top: 0;
      width: 100%;
      background-color: rgba(26, 26, 46, 0.9);
      backdrop-filter: blur(10px);
      z-index: 1000;
      padding: 1rem 2rem;
      border-bottom: 1px solid var(--neon-pink);
    }
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo {
      color: var(--neon-pink);
      font-size: 1.8rem;
      font-weight: bold;
      text-decoration: none;
      text-shadow: 0 0 5px var(--neon-pink);
    }
    .nav-links {
      display: flex;
      list-style: none;
      gap: 2rem;
    }
    .nav-links a {
      color: var(--electric-blue);
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s ease;
    }
    .nav-links a:hover {
      color: var(--neon-pink);
      text-shadow: 0 0 5px var(--neon-pink);
    }
    .burger {
      display: none;
      cursor: pointer;
    }
    .burger div {
      width: 25px;
      height: 3px;
      background-color: var(--electric-blue);
      margin: 5px;
      transition: all 0.3s ease;
    }
    main {
      margin-top: 80px;
      padding: 4rem 2rem;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }
    h1 {
      color: var(--neon-pink);
      margin-bottom: 2rem;
      text-align: center;
      font-size: 2.5rem;
    }
    h2 {
      color: var(--cyber-teal);
      margin: 2rem 0 1rem;
      font-size: 1.8rem;
    }
    p, li {
      margin-bottom: 1rem;
    }
    ul {
      padding-left: 2rem;
    }
    .disclaimer {
      background-color: rgba(0, 0, 0, 0.7);
      padding: 1rem;
      text-align: center;
      font-size: 0.8rem;
      color: var(--electric-blue);
      border-top: 1px solid var(--neon-pink);
    }
    footer {
      background-color: rgba(26, 26, 46, 0.9);
      padding: 3rem 2rem;
      border-top: 1px solid var(--cyber-teal);
    }
    .footer-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-section {
      flex: 1;
      min-width: 250px;
    }
    .footer-section h3 {
      color: var(--neon-pink);
      margin-bottom: 1.5rem;
      font-size: 1.3rem;
    }
    .footer-links {
      list-style: none;
    }
    .footer-links li {
      margin-bottom: 0.8rem;
    }
    .footer-links a {
      color: var(--electric-blue);
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .footer-links a:hover {
      color: var(--neon-pink);
      text-shadow: 0 0 5px var(--neon-pink);
    }
    .contact-info {
      list-style: none;
    }
    .contact-info li {
      margin-bottom: 0.8rem;
    }
    .footer-bottom {
      text-align: center;
      margin-top: 2rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(5, 217, 232, 0.3);
      color: var(--cyber-teal);
    }
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: rgba(26, 26, 46, 0.9);
      padding: 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      z-index: 1000;
      border-top: 1px solid var(--neon-pink);
    }
    .cookie-banner p {
      flex: 1;
      min-width: 250px;
    }
    .cookie-banner button {
      background-color: var(--neon-pink);
      color: white;
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .cookie-banner button:hover {
      background-color: var(--electric-blue);
    }
    @media (max-width: 768px) {
      .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(26, 26, 46, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        clip-path: circle(0px at 90% -10%);
        transition: all 0.5s ease-out;
        pointer-events: none;
      }
      .nav-links.active {
        clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
      }
      .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);
      }
    }

