* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #07070b;
  color: #f4f5f8;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  -webkit-font-smoothing: antialiased;
}
a { color: #2BB3E5; text-decoration: none; transition: color 0.2s; }
a:hover { color: #ED0F7A; }
::selection { background: #ED0F7A; color: #fff; }

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(28px, 6vh, 64px) clamp(20px, 5vw, 60px);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.policy-header {
  margin-bottom: 3rem;
  position: relative;
}

.policy-home-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #2BB3E5;
  transition: color 0.2s;
}

.policy-home-link:hover {
  color: #ED0F7A;
}

.policy-header h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #f4f5f8;
  line-height: 1.2;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(43, 179, 229, 0.2);
}

.policy-content {
  flex: 1;
  line-height: 1.8;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
}

.policy-content section {
  margin-bottom: 2.5rem;
}

.policy-content section:last-child {
  margin-bottom: 0;
}

.policy-content h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 500;
  margin: 2rem 0 1rem 0;
  color: #2BB3E5;
  letter-spacing: -0.01em;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  margin: 1rem 0;
  color: rgba(244, 245, 248, 0.9);
}

.policy-content ul {
  margin: 1.5rem 0;
  padding-left: 2.5rem;
}

.policy-content li {
  margin: 0.75rem 0;
  color: rgba(244, 245, 248, 0.9);
}

.policy-content li strong {
  color: #ED0F7A;
}

.policy-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(43, 179, 229, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(244, 245, 248, 0.6);
}

.policy-footer-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-legal {
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(244, 245, 248, 0.45);
}

.footer-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #2BB3E5;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .policy-header h1 {
    font-size: 1.8rem;
  }

  .policy-content {
    font-size: 0.95rem;
  }

  .policy-content h2 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
  }

  .policy-content ul {
    padding-left: 2rem;
  }
}

@media (max-width: 480px) {
  .policy-container {
    padding: 20px 15px;
  }

  .policy-header h1 {
    font-size: 1.5rem;
    padding-bottom: 1rem;
  }

  .policy-content {
    font-size: 0.9rem;
  }

  .policy-content p {
    margin: 0.8rem 0;
  }

  .policy-content h2 {
    font-size: 1.1rem;
    margin-top: 1.2rem;
    margin-bottom: 0.8rem;
  }
}
