* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(-45deg, #1a1a2e, #16213e, #0f3460, #533483);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
  min-height: 100vh;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

nav .logo a img {
  height: 60px;
  width: auto;
}

.policy-container {
  display: flex;
  justify-content: center;
  padding: 120px 40px 80px;
  position: relative;
  z-index: 1;
}

.policy-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px;
  max-width: 800px;
  width: 100%;
}

.policy-box h1 {
  color: white;
  font-size: 36px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.last-updated {
  color: #a0aec0;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-section {
  margin-bottom: 35px;
}

.policy-section h2 {
  color: white;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.policy-section p {
  color: #a0aec0;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.policy-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 10px 0;
}

.policy-section ul li {
  color: #a0aec0;
  font-size: 14px;
  letter-spacing: 1px;
  padding-left: 10px;
}

.policy-section ul li::before {
  content: "→ ";
  color: white;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
