/* ===========================
   SUPPORT Desktop
   =========================== */
body {
  margin: 0;
  height: 100vh;
  background:
    radial-gradient(circle at 20% 30%, #b45aa058, transparent 60%),
    radial-gradient(circle at 70% 20%, #8c46c04d, transparent 60%),
    radial-gradient(circle at 40% 70%, #c878be4d, transparent 60%),
    radial-gradient(circle at 80% 80%, #a03ca052, transparent 60%),
    radial-gradient(circle at 0% 100%, #c878aa40, transparent 70%),
    #121832;
  background-attachment: fixed;
  background-size: cover;
}

.support-hero {
  margin-top: 100px;
  margin-bottom: 10px;
  padding: 0 24px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  font-family: "Figtree-local", sans-serif;
}

.support-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 7px 18px;
  border-radius: 999px;

  background: rgba(0, 0, 0, 0.20);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);

  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.support-hero h1 {
  margin-top: 18px;

  font-weight: 800;
  font-size: 48px;
  line-height: 1.08;

  background: linear-gradient(90deg, #D47DF9, #F274C4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  text-shadow: 0 6px 28px rgba(0,0,0,0.55);
}

.support-subtitle {
  margin-top: 10px;
  max-width: 520px;

  font-size: 16px;
  line-height: 1.55;
  color: #f3d8ff;
  opacity: 0.95;
}

@media (max-width: 900px) {
  .support-hero {
    margin-top: 110px;
    padding: 0 18px;
  }

  .support-hero h1 {
    font-size: 30px;
    line-height: 1.15;
    text-shadow: 0 4px 18px rgba(0,0,0,0.55);
  }

  .support-subtitle {
    font-size: 14px;
    max-width: 100%;
  }
}

.support-options {
  max-width: 960px;
  margin: 60px auto 90px;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  padding: 0 20px;
}

.support-card {
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;

  padding: 22px 22px;
  border-radius: 22px;

  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);

  box-shadow: 0 14px 34px rgba(0,0,0,0.55);

  transition:
      transform 0.18s ease,
      background 0.18s ease,
      border-color 0.18s ease,
      box-shadow 0.18s ease;
}

.support-card:hover {
  transform: translateY(-4px);
  background: rgba(0, 0, 0, 0.36);
  border-color: rgba(208, 0, 255, 0.45);
  box-shadow: 0 18px 42px rgba(0,0,0,0.65);
}

.support-card.hover-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;

  background: linear-gradient(
      135deg,
      rgba(199,139,255,0.0),
      rgba(199,139,255,0.7),
      rgba(246,205,255,0.9),
      rgba(199,139,255,0.0)
  );

  -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0;
  transform: scale(0.98);
  transition:
      opacity 0.22s ease,
      transform 0.22s ease;
}

.support-card.hover-glow:hover::before {
  opacity: 1;
  transform: scale(1);
}

.support-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255,255,255,0.14);

  transition:
      background 0.18s ease,
      border-color 0.18s ease,
      transform 0.18s ease;
}

.support-card .icon img {
  width: 20px;
  height: 20px;
  display: block;
}

.support-card:hover .icon {
  background: rgba(0, 0, 0, 0.55);
  border-color: rgba(246,205,255,0.6);
  transform: translateY(-1px);
}

.support-card h3 {
  font-family: "Figtree-local", sans-serif;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
}

.support-card p {
  margin-top: 4px;
  font-size: 14px;
  opacity: 0.85;
}

.support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  margin-top: 16px;
  padding: 10px 22px;
  border-radius: 999px;

  background: rgba(0, 0, 0, 0.20);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);

  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  transition:
      background 0.15s ease,
      border-color 0.15s ease,
      transform 0.15s ease,
      box-shadow 0.15s ease;
}

.support-btn:hover {
  background: rgba(191, 59, 224, 0.3);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.55);
}

/* ===========================
   MOBILE
   =========================== */

@media (max-width: 900px) {

.support-hero {
  margin-top: 10px;
}


  .support-options {
    max-width: 100%;
    margin: 36px auto 70px;
    padding: 0 16px 130px 16px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .support-card {
    padding: 18px 18px;
    border-radius: 18px;
  }

  .support-card h3 {
    font-size: 17px;
  }

  .support-card p {
    font-size: 13px;
  }

  .support-btn {
    padding: 8px 18px;
    font-size: 13px;
    margin-top: 12px;
  }
}