body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #e6d7ea;
  text-align: center;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}

.logo {
  width: 300px;
  max-width: 80%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.fusion {
  font-size: 62px;
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #7c5cff, #ff4db8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 10px;
}

.hero-social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4db8, #5b6dff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hero-social-icon:hover {
  transform: scale(1.15);
  box-shadow: 0 0 25px rgba(255, 77, 184, 0.6);
}

@media (max-width: 768px) {
  .fusion {
    font-size: 42px;
  }

  .hero-social-icon {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
}
