.app-store-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: white;
  padding: 12px 20px;
  border: 2px solid white;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease;
  min-width: 160px;
  gap: 10px;
}

.app-store-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.app-store-badge.ios {
  border-color: white;
  color: white;
}

.app-store-badge.android {
  border-color: white;
  color: white;
}

.app-store-badge.ios:hover {
  border-color: white;
  color: white;
}

.app-store-badge.android:hover {
  border-color: white;
  color: white;
}

.badge-icon {
  font-size: 24px;
  margin-right: 8px;
}

.badge-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge-text {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-bottom: 2px;
  line-height: 1;
}

.badge-app {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}