body {
  margin: 0;
  padding: 0;
  background-color: #000; /* Keeps the rest of the page black */
  color: white;
  font-family: "Arial", sans-serif;
  padding-bottom: 100vh;
}

.hero-banner {
  width: 100%;
  height: 70vh; /* Adjust height as needed */

  /* Layer 1: The Fade-to-Black Gradient | Layer 2: Your Image */
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0) 50%, rgba(15, 23, 42, 1) 100%), url("banner.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* This makes your main title pop */
.tmtl-gradient {
  background-image: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
}

.card {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
