@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
  --bg-color: #0d0d12;
  --text-color: #f1f1f1;
  --primary: #ff007f;
  --secondary: #00e5ff;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Background Glowing Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.4;
  animation: float 10s infinite alternate ease-in-out;
}
.orb-1 { 
  width: 500px; 
  height: 500px; 
  background: var(--primary); 
  top: -150px; 
  left: -150px; 
}
.orb-2 { 
  width: 450px; 
  height: 450px; 
  background: var(--secondary); 
  bottom: -100px; 
  right: -100px; 
  animation-delay: -5s;
}

@keyframes float {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(50px) scale(1.1); }
}

header {
  padding: 30px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(15px);
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(13, 13, 18, 0.7);
}

.logo { 
  font-size: 2rem; 
  font-weight: 800; 
  letter-spacing: -1px; 
  text-decoration: none; 
  color: white;
}
.logo span { color: var(--primary); }

nav a { 
  color: var(--text-color); 
  text-decoration: none; 
  margin-left: 30px; 
  font-weight: 600; 
  transition: color 0.3s;
}
nav a:hover { color: var(--secondary); }

.hero {
  padding: 120px 10%;
  text-align: center;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 { 
  font-size: 4.5rem; 
  font-weight: 800; 
  margin-bottom: 20px; 
  background: linear-gradient(to right, var(--primary), var(--secondary)); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  line-height: 1.1;
}

.hero p { 
  font-size: 1.3rem; 
  max-width: 650px; 
  margin: 0 auto 40px; 
  color: #a0a0a0; 
}

.btn {
  display: inline-block;
  padding: 16px 45px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 800;
  font-size: 1.2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 10px 25px rgba(255, 0, 127, 0.3);
}

.btn:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 15px 35px rgba(255, 0, 127, 0.5); 
}

.features {
  padding: 80px 10%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.card:hover { 
  transform: translateY(-10px); 
  border-color: var(--secondary); 
  box-shadow: 0 15px 30px rgba(0, 229, 255, 0.1);
}

.card h3 { 
  font-size: 1.6rem; 
  margin-bottom: 15px; 
  color: var(--secondary); 
}

.card p {
  color: #a0a0a0;
  font-size: 1.05rem;
}

/* Privacy Policy Content Styles */
.content { 
  padding: 80px 10%; 
  max-width: 900px; 
  margin: 0 auto; 
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  margin-top: 50px;
  margin-bottom: 50px;
  backdrop-filter: blur(10px);
}

.content h1 { 
  font-size: 2.8rem; 
  margin-bottom: 10px; 
  color: var(--secondary); 
}

.content h2 { 
  font-size: 1.8rem; 
  margin: 40px 0 20px; 
  color: white;
}

.content p, .content li { 
  font-size: 1.15rem; 
  color: #b0b0b0; 
  margin-bottom: 15px; 
}

.content ul { 
  margin-left: 25px; 
  margin-bottom: 20px; 
}

footer {
  text-align: center;
  padding: 40px;
  border-top: 1px solid var(--glass-border);
  margin-top: 50px;
  color: #666;
}

footer p {
  margin-bottom: 10px;
}

/* Screenshots Gallery */
.screenshots {
  padding: 80px 10%;
  text-align: center;
}

.screenshots h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--secondary);
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.screenshot {
  width: 100%;
  max-width: 280px;
  border-radius: 20px;
  border: 2px solid var(--glass-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
  object-fit: cover;
}

.screenshot:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 25px 50px rgba(255, 0, 127, 0.3);
}

@media (max-width: 768px) {
  .hero h1 { font-size: 3rem; }
  header { flex-direction: column; gap: 20px; }
  nav a { margin: 0 10px; }
  .gallery { gap: 20px; }
  .screenshot { max-width: 250px; }
}
