.app-footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ffffff;
  padding: 2rem 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

/* App Download Section */
.app-download {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
}

.play-store-badge {
  width: 140px;
  height: auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.download-link:hover .play-store-badge {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Quick Links */
.quick-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
  min-width: 60px;
  backdrop-filter: blur(10px);
}

.link-item i {
  font-size: 1.2rem;
  opacity: 0.8;
}

.link-item span {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
}

.link-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  color: #ffffff;
}

.link-item:hover i,
.link-item:hover span {
  opacity: 1;
}

/* Social Section */
.social-section {
  padding: 0.5rem 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link i {
  font-size: 1.1rem;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Legal Links */
.legal-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0.8;
}

.legal-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.legal-link:hover {
  color: #ffffff;
}

.separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

/* Copyright */
.copyright {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.app-name {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.copyright-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
  .app-footer {
    padding: 2.5rem 2rem 1.5rem;
  }

  .footer-content {
    max-width: 500px;
    gap: 2rem;
  }

  .quick-links {
    gap: 1.5rem;
  }

  .link-item {
    padding: 1rem;
    min-width: 70px;
  }

  .link-item i {
    font-size: 1.3rem;
  }

  .link-item span {
    font-size: 0.8rem;
  }

  .play-store-badge {
    width: 160px;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    max-width: 600px;
  }
}
