/* Use Roboto for everything */
body, .navbar {
  font-family: 'Roboto', sans-serif;
}

/* Brand gradient text */
.brand-gradient {
  background: linear-gradient(90deg, magenta, purple, cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 1.5rem;
}

/* Button: Magenta outline */
.btn-outline-magenta {
  border: 2px solid magenta;
  color: magenta;
}
.btn-outline-magenta:hover {
  background-color: magenta;
  color: white;
}

/* Button: Discord-style outline */
.btn-outline-discord {
  border: 2px solid #5865F2;
  color: #5865F2;
}
.btn-outline-discord:hover {
  background-color: #5865F2;
  color: white;
}

/* Gradient shadow under navbar */
.custom-navbar {
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.custom-navbar::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 30px;
  background: linear-gradient(90deg, magenta, purple, cyan);
  filter: blur(20px);
  z-index: -1;
}
.hero-section {
  padding: 80px 0;
  background: url('images/ark-bg.jpg') no-repeat center center/cover;
  position: relative;
  z-index: 1;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.gradient-text {
  background: linear-gradient(to right, magenta, purple, cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.cluster-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.cluster-card h4 {
  font-weight: bold;
  margin-bottom: 15px;
}

.cluster-card ul {
  padding-left: 1rem;
  list-style: none;
}


.cluster-card:hover {
  transform: translateY(-5px);
}

/* Custom Colors */
.cluster-card.regular { border-left: 5px solid magenta; }
.cluster-card.omega { border-left: 5px solid cyan; }
.cluster-card.nemesis { border-left: 5px solid purple; }
.cluster-card.primal { border-left: 5px solid orange; }
.cluster-card.ps5 { border-left: 5px solid #5865F2; }
