/* Privacy Policy Styles - Dark Theme */

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

:root {
  --bg: #0a0a0a;
  --bg-secondary: #141414;
  --text: #ffffff;
  --text-light: #9ca3af;
  --border: #2a2a2a;
  --primary: #00d4ff;
  --primary-dark: #0099cc;
  --primary-light: rgba(0,212,255,0.1);
  --accent: #00ff88;
  --shadow: 0 20px 60px rgba(0,0,0,0.8);
  --radius: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(0,212,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0,255,136,0.03) 0%, transparent 50%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  padding: 40px 0 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

.back-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.back-link:hover {
  color: var(--accent);
  transform: translateX(-4px);
}

/* Main Content */
.privacy-content {
  padding-bottom: 60px;
}

h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--text);
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0 12px;
  color: var(--primary);
}

p {
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.7;
}

.last-updated {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 40px;
  padding: 8px 16px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: inline-block;
}

/* Sections */
section {
  margin-bottom: 40px;
}

section:first-child h2 {
  border-top: none;
  padding-top: 0;
}

/* Lists */
ul {
  margin: 16px 0 24px 20px;
  color: var(--text-light);
}

li {
  margin-bottom: 8px;
  line-height: 1.7;
  position: relative;
  padding-left: 8px;
}

li::before {
  content: "▸";
  color: var(--primary);
  position: absolute;
  left: -16px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
}

.footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
  margin: 0 8px;
}

.footer a:hover {
  color: var(--primary);
}

/* Mobile Responsive */
@media (max-width: 640px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 20px;
  }
  
  h3 {
    font-size: 16px;
  }
  
  .privacy-content {
    padding-bottom: 40px;
  }
  
  ul {
    margin-left: 16px;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Selection */
::selection {
  background: var(--primary-light);
  color: var(--primary);
}

/* Focus styles for accessibility */
a:focus,
button:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  body {
    background: white;
    color: black;
  }
  
  .header {
    display: none;
  }
  
  h1, h2, h3 {
    color: black;
    -webkit-text-fill-color: black;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
}