/* ======================== SUPPORT BUTTON ======================== */
.btn-support {
  background-color: #ffc107; /* PC yellow */
  color: #000;
  border-radius: 30px;
  padding: 10px 18px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  position: relative;
  text-decoration: none;
}

.btn-support i {
  font-size: 1.1rem;
}

.btn-support:hover {
  background-color: #ffdb4d;
  transform: translateY(-2px);
  text-decoration: none;
}

/* ======================== TOOLTIP ======================== */
.support-tooltip {
  display: none;
  width: 260px; /* fixed width */
  background-color: #000; /* black background */
  color: #fff; /* white text */
  padding: 14px 16px;
  border-radius: 8px;
  position: absolute;
  top: 110%; /* below button */
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.5;
  font-family: Arial, sans-serif;
}

/* Show tooltip when active */
.support-tooltip.active {
  display: block;
  animation: slideFade 0.25s ease forwards;
}

/* Arrow pointing up */
.support-tooltip::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #000 transparent;
}

/* Tooltip list */
.support-tooltip ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.support-tooltip ul li {
  padding: 6px 0;
}

/* Force links to be white and professional */
.support-tooltip ul li a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.3s;
  font-weight: 500;
}

.support-tooltip ul li a i {
  margin-right: 6px;
  font-size: 1rem;
}

/* Hover effect for links */
.support-tooltip ul li a:hover {
  color: #ffcc00; /* subtle highlight */
  text-decoration: none;
}

/* ======================== TOOLTIP ANIMATION ======================== */
@keyframes slideFade {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
