.footer {
  background: #000;
  color: #fff;
  font-family: sans-serif;
  padding: 20px 10px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-logo img {
  max-width: 50px;
  margin-top: -22px;
  height: auto;
  display: block;
}

.footer-nav {
  flex: 1 1 auto;
  max-width: 800px;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #00ffcc;
}

.footer-actions {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.social-icon {
  width: 15px;
  filter: brightness(0) invert(1);
  transition: filter 0.2s;
}

.social-icon:hover {
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(150deg);
}

.store-buttons {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.store-badge {
  height: 40px;
  transition: transform 0.2s ease;
}

.store-badge:hover {
  transform: scale(1.05);
}

.footer-cta {
  display: flex;
  gap: 10px;
}

.footer-cta .btn {
  padding: 6px 14px;
  font-size: 14px;
  border: 1px solid #00ffcc;
  border-radius: 4px;
  background: transparent;
  color: #00ffcc;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.footer-cta .btn:hover {
  background: #00ffcc;
  color: #000;
}

.footer-cta .signup {
  background: #00ffcc;
  color: #000;
}

.footer-divider {
  border: 0;
  border-top: 1px solid #444;
  margin: 15px auto;
  max-width: 1200px;
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: #666;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 10px;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  .footer-nav ul {
    gap: 10px;
  }
  .footer-actions {
    align-items: center;
  }
}
