.custom-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.custom-buttons.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.custom-button {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: 180px; /* even tighter */
  padding: 12px 18px;
  border-radius: 50px; /* rounded like a badge */
  font-weight: 600;
  text-decoration: none;
  color: white;
  font-size: 15px;
  background: #555; /* fallback */
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  transition: background 0.3s, transform 0.3s;
}

.custom-button img {
  height: 24px;
  width: 24px;
}

.playstore-button {
  background: linear-gradient(135deg, #34a853, #2c8c43);
}

.youtube-button {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.telegram-button {
  background: linear-gradient(135deg, #0088cc, #006699);
}

.custom-button:hover {
  transform: scale(1.05);
  opacity: 0.95;
}
@media (prefers-color-scheme: dark) {
  .custom-button {
    color: white;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
  }
  .custom-buttons {
    box-shadow: none;
  }
}
.custom-button img {
  height: 24px;
  width: 24px;
  transition: transform 0.3s ease;
}

.custom-button:hover img {
  transform: scale(1.2) rotate(10deg);
}

.custom-button:hover {
  transform: scale(1.05);
  opacity: 0.95;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); /* new soft floating glow */
}