/**
 * Privacy Policy Page Styles
 * © 2025 Ophraxx
 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(-45deg, #1a1a2e, #16213e, #0f3460, #533483);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  color: #fff;
  line-height: 1.8;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
}

.logo {
  font-size: 2em;
  font-weight: bold;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 140px 40px 80px;
}

.header {
  text-align: center;
  margin-bottom: 60px;
}

h1 {
  font-size: 3.5em;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.last-updated {
  opacity: 0.7;
  font-size: 1.1em;
}

.content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 60px;
}

h2 {
  font-size: 2em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #667eea;
}

h2:first-child {
  margin-top: 0;
}

h3 {
  font-size: 1.5em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #8b9cff;
}

p {
  margin-bottom: 20px;
  opacity: 0.9;
}

ul,
ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

li {
  margin-bottom: 10px;
  opacity: 0.9;
}

strong {
  color: #667eea;
}

.highlight-box {
  background: rgba(102, 126, 234, 0.1);
  border-left: 4px solid #667eea;
  padding: 20px;
  margin: 30px 0;
  border-radius: 8px;
}

.back-link {
  display: inline-block;
  margin-top: 40px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s;
}

.back-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

@media (max-width: 768px) {
  .navbar {
    padding: 20px 30px;
  }

  .container {
    padding: 120px 20px 60px;
  }

  .content {
    padding: 40px 30px;
  }

  h1 {
    font-size: 2.5em;
  }

  h2 {
    font-size: 1.6em;
  }
}
