* {
  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: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(220, 38, 38, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

nav.scrolled {
  background: rgba(220, 38, 38, 0.98);
  box-shadow: 0 2px 20px rgba(220, 38, 38, 0.3);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: white;
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #fecaca;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: white;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 600px;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero .subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
  font-weight: 300;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.8;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: white;
  color: #dc2626;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #dc2626;
  transform: translateY(-2px);
}

/* Features Section */
.features {
  padding: 100px 0;
  background: white;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #dc2626;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #dc2626, #991b1b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.feature-card p {
  color: #666;
  line-height: 1.7;
}

/* App Download Section */
.download {
  background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
  padding: 100px 0;
  text-align: center;
}

.download h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #dc2626;
  margin-bottom: 20px;
}

.download p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.playstore-btn {
  display: inline-block;
  transition: all 0.3s ease;
}

.playstore-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

.playstore-btn img {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(220, 38, 38, 0.2));
}

/* Content Section - for terms and privacy pages */
.content {
  padding: 120px 0 80px;
  background: white;
  min-height: 80vh;
}

.content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #dc2626;
  margin-bottom: 30px;
  text-align: center;
}

.content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin: 30px 0 15px;
}

.content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  margin: 25px 0 10px;
}

.content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 15px;
}

.content ul, .content ol {
  margin: 15px 0;
  padding-left: 30px;
}

.content li {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 8px;
}

.content strong {
  color: #333;
  font-weight: 600;
}

.content .last-updated {
  font-style: italic;
  color: #999;
  text-align: center;
  margin-bottom: 30px;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #dc2626;
}

.footer-section p {
  line-height: 1.7;
  color: #ccc;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #dc2626;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  text-align: center;
  color: #999;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Contact Page Styles */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-info {
  text-align: center;
  max-width: 600px;
  width: 100%;
  padding: 40px 20px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
}

.contact-icon {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 10px;
}

.contact-details {
  text-align: center;
}

.contact-details h3 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 2rem;
}

.contact-details p {
  color: #6c757d;
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 1.1rem;
}

.email-link {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 1.1rem;
}

.email-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
  text-decoration: none;
  color: white;
}



.community-section {
  padding: 80px 0;
  background: white;
  text-align: center;
}

.community-section h2 {
  color: #dc2626;
  margin-bottom: 15px;
  font-size: 2.5rem;
}

.community-section > p {
  color: #64748b;
  font-size: 1.2rem;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.community-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero .subtitle {
    font-size: 1.1rem;
  }

  .cta-buttons {
    justify-content: center;
  }

  .btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .download h2 {
    font-size: 2rem;
  }

  .content h1 {
    font-size: 2rem;
  }

  .content h2 {
    font-size: 1.5rem;
  }

  .content h3 {
    font-size: 1.2rem;
  }

  .contact-info {
    padding: 30px 20px;
  }
  
  .contact-icon {
    width: 70px;
    height: 70px;
  }
  
  .contact-details h3 {
    font-size: 1.8rem;
  }
  
  .contact-details p {
    font-size: 1rem;
  }
  
  .email-link {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .community-features {
    grid-template-columns: 1fr;
  }
}