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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #e5e7eb;
  background: #0a0a0a;
  overflow-x: hidden;
}

/* Animated background */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at 20% 80%, #ff6b6b22 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, #4ecdc422 0%, transparent 50%),
              radial-gradient(circle at 40% 40%, #45b7d122 0%, transparent 50%);
  animation: bgShift 15s ease-in-out infinite;
}

@keyframes bgShift {
  0%, 100% { 
    background: radial-gradient(circle at 20% 80%, #ff6b6b22 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, #4ecdc422 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, #45b7d122 0%, transparent 50%);
  }
  33% { 
    background: radial-gradient(circle at 60% 10%, #ff6b6b22 0%, transparent 50%),
                radial-gradient(circle at 10% 60%, #4ecdc422 0%, transparent 50%),
                radial-gradient(circle at 90% 90%, #45b7d122 0%, transparent 50%);
  }
  66% { 
    background: radial-gradient(circle at 90% 30%, #ff6b6b22 0%, transparent 50%),
                radial-gradient(circle at 30% 90%, #4ecdc422 0%, transparent 50%),
                radial-gradient(circle at 10% 10%, #45b7d122 0%, transparent 50%);
  }
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(20px);
  background: rgba(10, 10, 10, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #4ecdc4;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.privacy-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 6rem 1rem 2rem;
  background: linear-gradient(135deg, 
    rgba(255, 107, 107, 0.05) 0%, 
    rgba(78, 205, 196, 0.05) 50%, 
    rgba(69, 183, 209, 0.05) 100%);
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #4ecdc4;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  opacity: 0.6;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; background: #ff6b6b; }
.particle:nth-child(2) { left: 20%; animation-delay: 0.5s; background: #4ecdc4; }
.particle:nth-child(3) { left: 30%; animation-delay: 1s; background: #45b7d1; }
.particle:nth-child(4) { left: 40%; animation-delay: 1.5s; background: #ff6b6b; }
.particle:nth-child(5) { left: 50%; animation-delay: 2s; background: #4ecdc4; }
.particle:nth-child(6) { left: 60%; animation-delay: 2.5s; background: #45b7d1; }
.particle:nth-child(7) { left: 70%; animation-delay: 3s; background: #ff6b6b; }
.particle:nth-child(8) { left: 80%; animation-delay: 3.5s; background: #4ecdc4; }
.particle:nth-child(9) { left: 90%; animation-delay: 4s; background: #45b7d1; }

@keyframes float {
  0%, 100% { transform: translateY(100vh) rotate(0deg); }
  50% { transform: translateY(-100px) rotate(180deg); }
}

.hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 10;
  position: relative;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 50%, #45b7d1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { filter: drop-shadow(0 0 20px rgba(78, 205, 196, 0.3)); }
  to { filter: drop-shadow(0 0 30px rgba(255, 107, 107, 0.4)); }
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: #9ca3af;
  margin-bottom: 2rem;
  font-weight: 300;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #6b7280;
  margin-bottom: 3rem;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Content Section */
.privacy-content {
  padding: 6rem 0;
}

.content-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.content-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.content-box:hover::before {
  opacity: 1;
}

.content-box:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(78, 205, 196, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.content-box h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  color: #f3f4f6;
  position: relative;
  z-index: 1;
}

.content-box h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin: 1.5rem 0 1rem;
  color: #e5e7eb;
}

.content-box p {
  color: #9ca3af;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.content-box ul, .content-box ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.content-box li {
  margin-bottom: 0.5rem;
}

.toc {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin: 1.5rem 0 1rem;
  color: #e5e7eb;
}

.toc + ol {
  list-style-type: decimal;
  padding-left: 1.5rem;
}

.toc + ol li {
  margin-bottom: 0.75rem;
}

.toc + ol li a {
  color: #4ecdc4;
  text-decoration: none;
}

.toc + ol li a:hover {
  color: #ff6b6b;
  text-decoration: underline;
}

.privacy-link {
  color: #4ecdc4;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.privacy-link:hover {
  color: #ff6b6b;
  text-decoration: underline;
}

/* CTA Section */
.cta-section {
  text-align: center;
  margin: 6rem 0;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(78, 205, 196, 0.1), transparent);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-section > * {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #e5e7eb 0%, #9ca3af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-section p {
  color: #9ca3af;
  max-width: 600px;
  margin: 2rem auto 3rem;
  font-size: 1.25rem;
  line-height: 1.7;
}

.btn {
  display: inline-block;
  padding: 1.25rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  min-width: 200px;
  text-align: center;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 107, 107, 0.4);
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  padding: 3rem 2rem;
  margin-top: 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

footer p {
  color: #6b7280;
  margin-bottom: 1rem;
}

footer p:first-child {
  font-size: 1.25rem;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #e5e7eb;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }

  .content-box {
    padding: 1.5rem;
  }

  .privacy-hero {
    padding: 4rem 1rem 2rem;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 6vw, 4rem);
  }

  .cta-section {
    padding: 3rem 1rem;
  }
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}