    html, body {
      margin: 0;
      padding: 0;
    }

    #dynamicBanner {
      display: flex;
      flex-wrap: nowrap;
      overflow: hidden;
      width: 100vw;
      height: min(20vh, 200px);
      min-height: 12.5vh;
      position: relative;
      margin: 0;
      padding: 0;
    }

    .banner-image {
      flex: 0 0 auto;
      width: auto;
      height: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      margin: 0;
      padding: 0;
    }

    #bannerOverlay {
      position: absolute;
      top: 40%;
      left: 30px;
      transform: translateY(-50%);
      z-index: 2;
      color: white;
      background: rgba(0, 0, 0, 0.4);
      padding: 1rem;
      border-radius: 8px;
      max-width: 90vw;
      overflow-wrap: break-word;
      word-wrap: break-word;
      hyphens: auto;
      box-sizing: border-box;
    }

	#gFirst {
	  font-size: clamp(2rem, 6vw, 4.25rem);
	  font-family: League Gothic, Ostrich Sans Rounded, sans;
	  display: block;
	  line-height: 1.1;
	  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
	  overflow-wrap: break-word;
	  word-wrap: break-word;
	  hyphens: auto;

	  margin-bottom: 0.5rem; /* 👈 Add this line */
	}

    #gSecond {
      font-size: clamp(1rem, 3vw, 1.5rem);
      font-family: League Gothic, sans;
      display: block;
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
      overflow-wrap: break-word;
      word-wrap: break-word;
      hyphens: auto;
      line-height: 1.2;
    }

    #DLButton {
      font-family: League Gothic, sans;
      font-size: 1.5rem;
      background-color: #e74c3c;
      padding: 0 0.7rem;
      color: white;
      border-radius: 3px;
      display: inline-block;
      margin-top: 0.5rem;
      text-decoration: none;
    }
