/* Support & contacts section */
.support-section {
  position: relative;
  z-index: 10;
  padding: 1rem 1.5rem 6rem;
  pointer-events: auto;
}

.support-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.support-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.25rem;
}

.support-eyebrow {
  font-family: "Consolas", "Courier New", monospace;
  font-size: 0.78rem;
  color: rgba(180, 170, 175, 0.65);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  text-transform: lowercase;
}

.support-title {
  font-family: var(--font);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.65rem;
}

.support-lead {
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  color: var(--text-muted);
  font-weight: 500;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.support-card {
  background: rgba(22, 22, 28, 0.8);
  border: 1px solid rgba(232, 90, 120, 0.1);
  border-radius: 1.35rem;
  padding: 1.75rem 1.85rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.support-card-help {
  position: relative;
  overflow: hidden;
}

.support-card-help::before {
  content: "";
  position: absolute;
  left: -20%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  height: 120%;
  background: radial-gradient(
    ellipse at center,
    rgba(232, 90, 120, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.support-card-help > * {
  position: relative;
  z-index: 1;
}

.support-badge {
  display: inline-block;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 0.72rem;
  color: rgba(180, 170, 175, 0.7);
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(232, 90, 120, 0.15);
  border-radius: 999px;
  background: rgba(18, 18, 22, 0.6);
  margin-bottom: 1.25rem;
  width: fit-content;
}

.support-card-title {
  font-family: var(--font);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.65rem;
  line-height: 1.2;
}

.support-card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.btn-discord-support {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  width: fit-content;
  padding: 0.7rem 1.5rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: #121216;
  background: #ffffff;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-discord-support:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(255, 255, 255, 0.35);
}

.support-card-contacts {
  gap: 1.25rem;
}

.support-contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  flex: 1;
  align-content: start;
  margin-top: 0.25rem;
}

.support-contact-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1.25rem 1.15rem;
  background: rgba(14, 14, 18, 0.85);
  border: 1px solid rgba(232, 90, 120, 0.1);
  border-radius: 1.1rem;
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.support-contact-tile:hover {
  border-color: rgba(232, 90, 120, 0.3);
  background: rgba(20, 20, 26, 0.95);
  transform: translateY(-2px);
}

.support-contact-icon {
  color: var(--text);
  display: flex;
  line-height: 0;
}

.support-contact-name {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.support-contact-user {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-card {
    min-height: auto;
  }
}

@media (max-width: 420px) {
  .support-contacts-grid {
    grid-template-columns: 1fr;
  }

  .support-section {
    padding: 1rem 1rem 4rem;
  }
}
