:root {
  --neon-pink: #ff2a6d;
  --neon-blue: #05d9e8;
  --neon-purple: #d300c5;
  --dark-bg: #0d0221;
  --text-light: #f8f8f8;
  --text-dim: #b8b8b8;
  --accent-yellow: #f9f002;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Courier New', monospace;
}

body {
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  padding-top: 80px;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(13, 2, 33, 0.95);
  border-bottom: 1px solid var(--neon-purple);
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--neon-blue);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px var(--neon-blue);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: var(--neon-pink);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--neon-pink);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: var(--neon-blue);
  margin: 5px;
  transition: all 0.3s ease;
}

section {
  padding: 4rem 2rem;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--neon-blue);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h2 {
  color: var(--neon-pink);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.policy-section h3 {
  color: var(--neon-blue);
  margin: 1.5rem 0 0.5rem;
  font-size: 1.2rem;
}

.policy-section p, .policy-section ul {
  margin-bottom: 1rem;
  color: var(--text-dim);
}

.policy-section ul {
  padding-left: 2rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
}

.disclaimer {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
  padding: 1rem;
  border-top: 1px solid var(--neon-purple);
  margin-top: 3rem;
}

footer {
  background-color: rgba(13, 2, 33, 0.95);
  padding: 3rem 2rem;
  border-top: 1px solid var(--neon-purple);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--neon-blue);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-links h3 {
  color: var(--neon-pink);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--neon-blue);
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: var(--text-dim);
}

.contact-info i {
  color: var(--neon-blue);
  margin-right: 0.5rem;
}

.copyright {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(211, 0, 197, 0.3);
  color: var(--text-dim);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    right: 0;
    top: 80px;
    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;
    pointer-events: none;
    border-bottom: 1px solid var(--neon-purple);
  }

  .nav-links.active {
    clip-path: circle(1000px at 90% -10%);
    pointer-events: all;
  }

  .nav-links 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);
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
}

