#fw-section-rich-text-167932150359439 {
--font-heading-scale: 1.0;
--font-body-scale: 2.0;
}



#fw-section-links-list-6dee2eb8-5809-4f5b-a894-af532ab25e2f {

.button--primary {
  /* Colors */
  background-color: #000000; /* Black Background */
  color: #ffffff;            /* White Text */
  
  /* Border & Glow */
  border: 2px solid #ffffff; /* White Outline */
  box-shadow: 0 0 0px rgba(255, 40, 0, 0.8); /* Red Glow */
  
  /* Layout & Spacing (Preserving standard button looks) */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 30px; /* Rounded corners match Spotify style */
  font-weight: bold;
  transition: all 0.3s ease; /* Smooth hover effect */
}

/* Optional: Make the glow stronger on hover */
.button--primary:hover {
  box-shadow: 0 0 25px rgba(255, 40, 0, 1);
  transform: scale(1.05);
}

}