:root {
      --primary: #6e44ff;
      --secondary: #ff2d75;
      --dark: #0a0338;
      --light: #f0e6ff;
      --accent: #00cfc8;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Arial', sans-serif;
    }
    body {
      background-color: var(--dark);
      color: var(--light);
      line-height: 1.6;
      padding-top: 80px;
    }
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(10, 3, 56, 0.9);
      backdrop-filter: blur(10px);
      z-index: 1000;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid var(--primary);
    }
    .logo {
      font-size: 1.8rem;
      font-weight: bold;
      color: var(--accent);
      text-decoration: none;
      display: flex;
      align-items: center;
    }
    .logo span {
      color: var(--light);
    }
    nav ul {
      display: flex;
      list-style: none;
    }
    nav ul li {
      margin-left: 2rem;
    }
    nav ul li a {
      color: var(--light);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
    }
    nav ul li a:hover {
      color: var(--accent);
    }
    .burger {
      display: none;
      cursor: pointer;
    }
    .burger div {
      width: 25px;
      height: 3px;
      background-color: var(--light);
      margin: 5px;
      transition: all 0.3s ease;
    }
    .privacy-container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 2rem;
    }
    .privacy-title {
      font-size: 2.5rem;
      color: var(--accent);
      margin-bottom: 2rem;
      text-align: center;
    }
    .privacy-section {
      margin-bottom: 3rem;
    }
    .privacy-section h2 {
      color: var(--primary);
      margin-bottom: 1rem;
      font-size: 1.8rem;
    }
    .privacy-section h3 {
      color: var(--accent);
      margin: 1.5rem 0 0.5rem;
    }
    .privacy-section p, .privacy-section ul {
      margin-bottom: 1rem;
    }
    .privacy-section ul {
      padding-left: 2rem;
    }
    footer {
      background: #05001a;
      padding: 3rem 2rem;
      text-align: center;
    }
    .footer-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-section {
      flex: 1;
      min-width: 250px;
      margin-bottom: 2rem;
    }
    .footer-section h3 {
      color: var(--accent);
      margin-bottom: 1rem;
    }
    .footer-links {
      list-style: none;
    }
    .footer-links li {
      margin-bottom: 0.5rem;
    }
    .footer-links a {
      color: var(--light);
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-links a:hover {
      color: var(--accent);
    }
    .copyright {
      margin-top: 2rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(110, 68, 255, 0.3);
      color: rgba(255, 255, 255, 0.5);
    }
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(10, 3, 56, 0.9);
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      transform: translateY(100%);
      transition: transform 0.3s;
    }
    .cookie-banner.show {
      transform: translateY(0);
    }
    .cookie-banner p {
      flex: 1;
      margin-right: 1rem;
    }
    .btn {
      display: inline-block;
      background: var(--primary);
      color: white;
      padding: 0.8rem 1.5rem;
      border: none;
      border-radius: 50px;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
    }
    .btn:hover {
      background: var(--secondary);
    }
    @media (max-width: 768px) {
      nav ul {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--dark);
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        clip-path: circle(0px at 90% -10%);
        transition: clip-path 0.5s ease-out;
        pointer-events: none;
      }
      nav ul.open {
        clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
      }
      nav ul li {
        margin: 1rem 0;
      }
      .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);
      }
      .privacy-title {
        font-size: 2rem;
      }
    }

