/* General styles */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
  }
  
  h1, h2, h3 {
    margin: 0.5em 0;
  }
  
  /* Navbar */
  .navbar {
    position: fixed;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(to right, #7c3aed, #3b82f6);
    -webkit-background-clip: text;
    color: transparent;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  
  .nav-links::-webkit-scrollbar {
    display: none;
  }
  
  .nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: color 0.3s, transform 0.3s;
    padding: 0.5rem 0;
    position: relative;
  }
  
  .nav-links a:hover {
    color: #3b82f6;
    transform: translateY(-2px);
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, #7c3aed, #3b82f6);
    transition: width 0.3s;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  .contact-button {
    background: linear-gradient(to right, #7c3aed, #3b82f6);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
  }
  
  /* Hero Section */
  .hero-section {
    padding-top: 120px;
    padding-bottom: 80px;
    text-align: center;
    background: #000;
    position: relative;
    overflow: hidden;
  }
  
  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
    opacity: 0.3;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    background: linear-gradient(to right, #7c3aed, #3b82f6);
    -webkit-background-clip: text;
    color: transparent;
    animation: fadeInUp 1s ease-out;
  }
  
  .hero-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    font-size: 1.2rem;
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
  }
  
  .features-grid {
    margin-top: 4rem;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    animation: fadeInUp 1s ease-out 0.4s forwards;
    opacity: 0;
    position: relative;
    z-index: 2;
  }
  
  .feature-card {
    background: rgba(20, 20, 20, 0.7);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
  }
  
  .feature-card:hover {
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.2);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  .feature-card .glow-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #7c3aed, #3b82f6);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .feature-card:hover .glow-effect {
    opacity: 1;
  }
  
  .icon {
    width: 48px;
    height: 48px;
    color: #7c3aed;
    margin-bottom: 1rem;
  }
  
  /* Privacy Content */
  .privacy-content {
    padding: 4rem 1rem;
    background: #000;
    position: relative;
  }
  
  .privacy-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  .policy-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #7c3aed, #3b82f6);
    -webkit-background-clip: text;
    color: transparent;
  }
  
  .policy-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .privacy-block {
    background: rgba(20, 20, 20, 0.7);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s, box-shadow 0.5s;
    opacity: 0;
    transform: translateY(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
  }
  
  .privacy-block.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .privacy-block:hover {
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  .privacy-block .glow-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #7c3aed, #3b82f6);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .privacy-block:hover .glow-effect {
    opacity: 1;
  }
  
  .privacy-block h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
  }
  
  .privacy-block ul {
    padding-left: 1.5rem;
  }
  
  .privacy-block li {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .privacy-block p {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .privacy-block strong {
    color: #3b82f6;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 4rem 1rem;
    background: rgba(10, 10, 10, 0.9);
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
    opacity: 0.3;
  }
  
  .cta-content {
    position: relative;
    z-index: 1;
  }
  
  .cta-content h2 {
    font-size: 2rem;
    color: #fff;
  }
  
  .cta-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 1rem 0;
  }
  
  /* Footer */
  .footer {
    background: rgba(10, 10, 10, 0.9);
    color: rgba(255, 255, 255, 0.7);
    padding: 2rem 1rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
  }
  
  .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
    opacity: 0.3;
  }
  
  .footer-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .footer p {
    margin: 0.5rem 0;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Add floating animation for feature cards */
  .feature-card:nth-child(odd) {
    animation: float1 6s ease-in-out infinite;
    animation-delay: 0.5s;
  }
  
  .feature-card:nth-child(even) {
    animation: float2 7s ease-in-out infinite;
  }
  
  @keyframes float1 {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  @keyframes float2 {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-7px);
    }
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .nav-links {
      gap: 0.5rem;
    }
    
    .hero-content h1 {
      font-size: 2.2rem;
    }
    
    .privacy-block {
      padding: 1.5rem;
    }
    
    .features-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .nav-container {
      flex-direction: column;
      height: auto;
      padding: 1rem;
    }
    
    .nav-links {
      margin-top: 1rem;
      justify-content: center;
    }
    
    .hero-section {
      padding-top: 160px;
    }
  }