/* page Policy Page Styles */

/* Base Styles */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header Styles */
.futuristic-header {
  position: relative;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 245, 255, 0.2);
  padding: 1rem 0;
}

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

.logo-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #00f5ff, #8b5cf6);
  border-radius: 8px;
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.1;
  }
}

.logo-text {
  font-family: "Orbitron", monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.logo-accent {
  color: #00f5ff;
}

/* page Section */
.page-section {
  min-height: 100vh;
}

.page-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 245, 255, 0.1);
  border: 1px solid rgba(0, 245, 255, 0.3);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #00f5ff;
  margin-bottom: 1.5rem;
}

.section-title-futuristic {
  font-family: "Orbitron", monospace;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #00f5ff, #8b5cf6, #ec4899);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.title-main {
  display: block;
}

.title-accent {
  display: block;
  color: #00f5ff;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.last-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* page Content */
.page-content {
  margin: 0 auto;
}

.page-card {
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.page-card:hover {
  border-color: rgba(0, 245, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 245, 255, 0.1);
}

.page-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Orbitron", monospace;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 245, 255, 0.2);
}

.page-title i {
  font-size: 1.25rem;
  color: #8b5cf6;
}

.page-text {
  color: var(--text-primary);
  line-height: 1.7;
}

.page-text p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.page-text ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.page-text li {
  margin-bottom: 0.5rem;
  position: relative;
}

.page-text li::marker {
  color: #00f5ff;
}

.contact-info {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(0, 245, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(0, 245, 255, 0.2);
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.contact-info i {
  color: #00f5ff;
  width: 20px;
}

/* Footer Styles */
.futuristic-footer {
  background: rgba(0, 0, 0, 0.9);
  border-top: 1px solid rgba(0, 245, 255, 0.2);
}

.footer-content-futuristic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section-futuristic h4 {
  font-family: "Orbitron", monospace;
  color: #00f5ff;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-logo-futuristic {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00f5ff, #8b5cf6);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}

.footer-logo-text {
  font-family: "Orbitron", monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.footer-logo-accent {
  color: #00f5ff;
}

.footer-description-futuristic {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.social-links-futuristic {
  display: flex;
  gap: 1rem;
}

.social-link-futuristic {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.social-link-futuristic:hover {
  background: rgba(0, 245, 255, 0.1);
  border-color: rgba(0, 245, 255, 0.3);
  color: #00f5ff;
  transform: translateY(-2px);
}

.footer-links-futuristic {
  list-style: none;
  padding: 0;
}

.footer-links-futuristic li {
  margin-bottom: 0.5rem;
}

.footer-links-futuristic a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links-futuristic a:hover {
  color: #00f5ff;
}

.contact-info-futuristic p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.contact-info-futuristic i {
  color: #00f5ff;
  width: 16px;
}

.footer-bottom-futuristic {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal-futuristic {
  display: flex;
  gap: 2rem;
}

.footer-legal-futuristic a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-legal-futuristic a:hover {
  color: #00f5ff;
}

.footer-bottom-futuristic p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .futuristic-nav {
    padding: 0 1rem;
  }

  .section-title-futuristic {
    font-size: 2rem;
  }

  .page-card {
    padding: 1.5rem;
  }

  .page-title {
    font-size: 1.25rem;
  }

  .footer-content-futuristic {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom-futuristic {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal-futuristic {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .page-section {
    padding: 2rem 0;
  }

  .page-header {
    margin-bottom: 2rem;
  }

  .section-title-futuristic {
    font-size: 1.75rem;
  }

  .page-card {
    padding: 1rem;
  }
}
