* {
  -webkit-tap-highlight-color: transparent;
}

.support-overlay {
  position: fixed;
  inset: 0;
  overflow-y: auto; /* ✅ allow scrolling */
  -webkit-overflow-scrolling: touch; /* ✅ smooth iOS scroll */
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(4px);

}

.support-overlay.hidden {
  display: none;
}

.support-modal {
  width: 92%;
  margin: 0px 25px;
  max-width: 400px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  animation: scaleIn 0.25s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.support-header {
  position: relative;
  margin-bottom: 16px;
}

.support-header h2 {
  margin: 0;
  font-size: 20px;
}

.support-header p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #666;
}

.support-close {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

.support-card {
  display: block;
  text-decoration: none;
  border: 1px solid #eaeaea;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 10px;
  color: #111;
  transition: all 0.2s ease;
}

.support-card:hover {
  background: #f8f9fb;
  transform: translateY(-1px);
}

.support-card h3,
.support-card h4 {
  margin: 0;
  font-size: 16px;
}

.support-card span {
  display: block;
  margin-top: 4px;
  font-weight: 600;
}

.support-card small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #666;
}

.support-card.primary {
  border: 2px solid #2563eb;
  background: #f0f6ff;
  position: relative;
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #2563eb;
  color: #fff;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 20px;
}

.support-list {
  margin-top: 8px;
}
