/* ── Ultra Stream Register Banner ──────────────────────────────
   A full-width band across the foot of the page, centred, with the
   gold rule along the top it has always had. The flat black is now
   the site's gold/blue wash so it sits with everything above it,
   but the shape is unchanged: edge to edge, not a card.
   ────────────────────────────────────────────────────────────── */
#ultra-stream-register-banner {
  padding: 74px 5% 78px;
  border-top: 3px solid #c19114;
  text-align: center;
  background:
    radial-gradient(900px 340px at 88% -40%, rgba(193, 145, 20, 0.16), transparent 62%),
    radial-gradient(820px 380px at 6% 150%, rgba(47, 80, 111, 0.34), transparent 62%),
    linear-gradient(180deg, #1a1c22 0%, #101117 100%);
}
.register-banner-inner {
  max-width: 720px;
  margin: 0 auto;
}
.register-banner-text h2 {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 18px;
  font-size: 2.3em;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: #fff;
}
/* Centred gold rule instead of the left accent bar — the same mark the
   site's other centred headings use. */
.register-banner-text h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #d9a521, #a87d0f);
}
.register-banner-text p {
  margin: 0 auto 30px;
  max-width: 560px;
  font-size: 1.08em;
  font-weight: 300;
  color: #b9b9b9;
  line-height: 1.7;
}
.register-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.register-banner-btn {
  display: inline-block;
  padding: 15px 40px;
  background: #c19114;
  color: #000;
  font-weight: 700;
  font-size: 0.95em;
  text-decoration: none;
  border-radius: 8px;
  transition: background .2s ease;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}
.register-banner-btn:hover { background: #d9a521; color: #000; }
.register-banner-alt {
  font-size: 0.92em;
  color: #8f8f8f;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.register-banner-alt:hover {
  color: #dbbc6c;
  border-bottom-color: rgba(219, 188, 108, 0.5);
}

@media (max-width: 768px) {
  #ultra-stream-register-banner { padding: 52px 5% 56px; }
  .register-banner-text h2 { font-size: 1.7em; margin-bottom: 18px; }
  .register-banner-text p { font-size: 1em; margin-bottom: 26px; }
  .register-banner-actions {
    gap: 18px;
    flex-direction: column;
    align-items: stretch;
  }
  .register-banner-btn { display: block; text-align: center; }
  .register-banner-alt { text-align: center; }
}

/* ── Newsletter Banner (premium subscribe card) ── */
#newsletter-banner {
  background: transparent;
  padding: 48px 20px 0;
  margin-bottom: 7rem;
}
.newsletter-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 46px 36px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-top: 3px solid #c19114;
  background:
    radial-gradient(700px 280px at 90% -60%, rgba(193, 145, 20, 0.14), transparent 60%),
    radial-gradient(600px 300px at 0% 160%, rgba(47, 80, 111, 0.34), transparent 60%),
    linear-gradient(160deg, #1a1c22 0%, #121319 100%);
  box-shadow: 0 26px 54px -32px rgba(0, 0, 0, 0.9);
}
.newsletter-text p {
  margin: 0 0 22px;
  font-size: 1.5em;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}
#newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
#newsletter-email {
  flex: 1;
  min-width: 220px;
  max-width: 360px;
  padding: 12px 16px;
  border: 1px solid #333;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 0.95em;
  outline: none;
  transition: border-color .2s;
}
#newsletter-email:focus { border-color: #c19114; }
#newsletter-btn {
  padding: 12px 28px;
  background: #c19114;
  color: #000;
  font-weight: 700;
  font-size: 0.95em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity .2s;
  min-width: 120px;
  text-transform: uppercase;
}
#newsletter-btn:hover { opacity: .85; }
#newsletter-btn:disabled { opacity: .5; cursor: default; }
#newsletter-msg {
  margin: 16px 0 0;
  font-size: 0.9em;
  font-weight: 600;
}
#newsletter-msg.success { color: #4caf50; }
#newsletter-msg.error   { color: #f44336; }

@media (max-width: 768px) {
  #newsletter-banner {
    padding: 36px 20px 0;
    margin-bottom: 6rem;
  }
  .newsletter-text p  { font-size: 0.9em; }
  #newsletter-form    { flex-direction: column; align-items: stretch; gap: 12px; }
  #newsletter-email   {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    flex: 0 0 auto;
  }
  #newsletter-btn     {
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
  }
}

