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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 30%, #2d1b69 70%, #1a1a3e 100%);
  color: white;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Subtle grid background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,119,198,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,119,198,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  pointer-events: none;
}

/* Radial vignette */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(8,8,18,0.7) 100%);
  z-index: 0;
  pointer-events: none;
}

/* Navigation */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124, 119, 198, 0.2);
  z-index: 1000;
  padding: 20px 0;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Bruno Ace', sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  background: linear-gradient(135deg, #7c77c6 0%, #a8a4e3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.nav-brand:hover { transform: scale(1.05); }
.nav-brand i { color: #7c77c6; }

.brand-favicon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 6px rgba(124, 119, 198, 0));
  transition: filter 0.3s ease;
}

.nav-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nav-link:hover {
  color: #7c77c6;
  background: rgba(124, 119, 198, 0.1);
}


.btn-nav {
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95em;
}

.btn-login {
  background: rgba(255, 255, 255, 0.1);
  color: #7c77c6;
  border: 2px solid rgba(124, 119, 198, 0.3);
}

.btn-login:hover {
  background: rgba(124, 119, 198, 0.2);
  border-color: #7c77c6;
}

.btn-signup {
  background: linear-gradient(135deg, #7c77c6 0%, #a8a4e3 100%);
  color: white;
}

.btn-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(124, 119, 198, 0.4);
}

/* Hero Section */
.privacy-hero {
  padding: 140px 40px 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.privacy-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(124, 119, 198, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* ---- Hero Badge ---- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 100px;
  background: rgba(124, 119, 198, 0.12);
  border: 1px solid rgba(124, 119, 198, 0.3);
  font-size: 0.75em;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a8a4e3;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero-badge i { font-size: 0.9em; color: #7c77c6; }

.page-title {
  font-size: 4em;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #7c77c6 0%, #a8a4e3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease;
}

.page-subtitle {
  font-size: 1.5em;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.page-subtitle em {
  font-style: normal;
  color: #a8a4e3;
}

/* Section Layout — matches About Us */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #7c77c6;
}

.header-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #7c77c6, transparent);
  margin: 0 auto 20px;
}

.section-description {
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
}

/* Privacy Sections */
.privacy-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.privacy-section.alt-bg {
  background: rgba(0, 0, 0, 0.2);
}

/* Intro Band with Mascot */
.intro-section {
  padding: 60px 0;
  background: rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

.intro-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.intro-mascot {
  width: 140px;
  flex-shrink: 0;
}

.intro-mascot svg {
  width: 100%;
  height: auto;
}

.intro-text {
  max-width: 620px;
}

.intro-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 16px;
}

.intro-text p:first-child {
  font-size: 1.3em;
  font-weight: 600;
  color: #7c77c6;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

/* Privacy Content Blocks */
.privacy-content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-block {
  margin-bottom: 48px;
}

.privacy-block:last-child {
  margin-bottom: 0;
}

.privacy-block h3 {
  font-size: 1.3em;
  font-weight: 700;
  color: #a8a4e3;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.privacy-block h3 i {
  color: #7c77c6;
  font-size: 0.9em;
}

.privacy-block p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05em;
  line-height: 1.8;
  margin-bottom: 14px;
}

.privacy-block p:last-child {
  margin-bottom: 0;
}

.privacy-block ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.privacy-block ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05em;
  line-height: 1.7;
}

.privacy-block ul li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7c77c6;
  flex-shrink: 0;
  margin-top: 10px;
}

.privacy-block ul li strong {
  color: #a8a4e3;
  font-weight: 700;
}

/* Privacy Cards */
.privacy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.privacy-card {
  background: rgba(26, 26, 62, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(124, 119, 198, 0.2);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.privacy-card:hover {
  transform: translateY(-10px);
  border-color: rgba(124, 119, 198, 0.5);
  box-shadow: 0 15px 35px rgba(124, 119, 198, 0.2);
}

.privacy-card .card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #7c77c6 0%, #a8a4e3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.privacy-card .card-icon i {
  font-size: 2em;
  color: white;
}

.privacy-card h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #7c77c6;
}

.privacy-card p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* Rights Grid */
.rights-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.right-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(26, 26, 62, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(124, 119, 198, 0.2);
  border-radius: 16px;
  padding: 28px 32px;
  transition: all 0.3s ease;
}

.right-item:hover {
  border-color: rgba(124, 119, 198, 0.5);
  box-shadow: 0 8px 25px rgba(124, 119, 198, 0.15);
}

.right-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, #7c77c6 0%, #a8a4e3 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.right-icon i {
  font-size: 1.3em;
  color: white;
}

.right-item strong {
  display: block;
  font-size: 1.15em;
  color: #a8a4e3;
  margin-bottom: 6px;
}

.right-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95em;
  line-height: 1.6;
  margin: 0;
}

/* What We Don't Do Grid */
.dont-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.dont-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(26, 26, 62, 0.4);
  border: 1px solid rgba(124, 119, 198, 0.15);
  border-radius: 12px;
  padding: 20px 24px;
  transition: all 0.3s ease;
}

.dont-item:hover {
  border-color: rgba(124, 119, 198, 0.4);
}

.dont-item i {
  font-size: 1.3em;
  color: #e74c3c;
  flex-shrink: 0;
  opacity: 0.8;
}

.dont-item span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95em;
  line-height: 1.5;
}

/* Contact Box */
.contact-box {
  background: rgba(124, 119, 198, 0.08);
  border: 1px solid rgba(124, 119, 198, 0.2);
  border-radius: 14px;
  padding: 24px 28px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, #7c77c6 0%, #a8a4e3 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  color: white;
  font-size: 1.2em;
}

.contact-box p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95em;
  margin: 0;
  line-height: 1.6;
}

.contact-box p strong {
  color: #a8a4e3;
}

.contact-box a {
  color: #a8a4e3;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-box a:hover {
  color: #c4b8f8;
}

/* CTA Section */
.cta-section {
  padding: 100px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #7c77c6 0%, #a8a4e3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-cta {
  padding: 16px 32px;
  border-radius: 12px;
  border: none;
  font-weight: 700;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.btn-cta.btn-primary {
  background: linear-gradient(135deg, #7c77c6 0%, #a8a4e3 100%);
  color: white;
}

.btn-cta.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(124, 119, 198, 0.4);
}

.btn-cta.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Footer */
.main-footer {
  background: rgba(15, 15, 35, 0.95);
  border-top: 1px solid rgba(124, 119, 198, 0.2);
  padding: 60px 40px 30px;
  position: relative;
  z-index: 1;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Bruno Ace', sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  background: linear-gradient(135deg, #7c77c6 0%, #a8a4e3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand i { color: #7c77c6; }

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover { color: #7c77c6; }

.footer-links a.footer-active {
  color: #7c77c6;
  font-weight: 600;
  pointer-events: none;
  cursor: default;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  text-decoration: none;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #7c77c6;
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(124, 119, 198, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9em;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-badge {
    margin: 30px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .privacy-cards {
    grid-template-columns: 1fr;
  }

  .dont-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 15px;
  }

  .nav-brand {
    font-size: 1.2em;
    flex: 1;
  }

  .nav-actions {
    gap: 8px;
    width: 100%;
    justify-content: center;
  }

  .nav-link {
    display: none;
  }

  .btn-nav {
    padding: 8px 16px;
    font-size: 0.85em;
    flex: 1;
    justify-content: center;
  }

  .privacy-hero {
    padding: 120px 20px 60px;
  }

  .page-title {
    font-size: 2.5em;
  }

  .page-subtitle {
    font-size: 1.2em;
  }

  .section-container {
    padding: 0 20px;
  }

  .section-header h2 {
    font-size: 2em;
  }

  .intro-band {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .intro-mascot {
    width: 120px;
  }

  .privacy-section {
    padding: 60px 0;
  }

  .right-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 2em;
  }

  .nav-brand {
    font-size: 1.2em;
  }

  .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

/* Selection Styling */
::selection {
  background: rgba(124, 119, 198, 0.3);
  color: white;
}
