:root {
  --navy: #1F1744;
  --cyan: #38BACC;
  --orange: #F1882D;
  --white: #FFFFFF;
  --blue: #293283;
  --steel: #3980BC;
  --site-brightness: 100%;
  --site-grayscale: 0%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  filter: brightness(var(--site-brightness)) grayscale(var(--site-grayscale));
  transition: filter 0.05s linear;
  background-color: #000000;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: #f4f6f8;
  overflow-x: hidden;
}

/* ─── SHARED BUTTONS ──────────────────────────────────── */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 24px rgba(241, 136, 45, .4);
  cursor: pointer;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(241, 136, 45, .5);
  color: #fff;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, .4);
  transition: background .2s, border-color .2s;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--white);
  color: #fff;
}

/* ─── SHARED SECTION HEADERS ──────────────────────────── */
.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .22em;
  color: var(--orange);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--orange);
  display: block;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 40px;
}

/* ─── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}

.anim-fade-up  { animation: fadeInUp .6s ease both; }
.anim-slide-l  { animation: slideInLeft .6s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .22s; }
.delay-3 { animation-delay: .34s; }
.delay-4 { animation-delay: .46s; }

/* ─── BACK TO TOP ────────────────────────────────────── */
#backToTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  border: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(241, 136, 45, .45);
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s;
}

#backToTop.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ─── LIVE STREAM WIDGET ─────────────────────────────── */
.live-stream-widget {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 9998;
  width: min(380px, calc(100vw - 32px));
  font-family: 'Open Sans', sans-serif;
}

.live-stream-chip {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 0;
  border-radius: 8px;
  padding: 14px 16px;
  background: #1F1744;
  color: #FFFFFF;
  box-shadow: 0 16px 38px rgba(31, 23, 68, .24);
  cursor: pointer;
  text-align: left;
}

.live-stream-chip span:nth-child(2) {
  flex: 1;
  min-width: 0;
  font-size: .9rem;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-stream-chip strong {
  display: block;
  color: #F1882D;
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.live-stream-chip i {
  transition: transform .2s ease;
}

.live-stream-widget.is-open .live-stream-chip i {
  transform: rotate(180deg);
}

.live-stream-pulse {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-radius: 50%;
  background: #F1882D;
  box-shadow: 0 0 0 0 rgba(241, 136, 45, .55);
  animation: livePulse 1.5s infinite;
}

.live-stream-panel {
  margin-bottom: 8px;
  overflow: hidden;
  border-radius: 8px;
  background: #FFFFFF;
  box-shadow: 0 20px 48px rgba(31, 23, 68, .28);
  border: 1px solid rgba(31, 23, 68, .08);
}

.live-stream-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px 10px;
  background: #1F1744;
  color: #FFFFFF;
}

.live-stream-header span {
  display: block;
  margin-bottom: 3px;
  color: #38BACC;
  font-family: 'Montserrat', sans-serif;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.live-stream-header strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}

.live-stream-header button {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #FFFFFF;
  cursor: pointer;
}

.live-stream-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111111;
  overflow: hidden;
}

.live-stream-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.live-stream-panel p {
  margin: 0;
  padding: 10px 12px 0;
  color: #4f5565;
  font-size: .84rem;
  line-height: 1.35;
}

.live-stream-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 8px 12px 12px;
  color: #293283;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
}

.live-stream-link:hover {
  color: #F1882D;
}

@keyframes livePulse {
  70% {
    box-shadow: 0 0 0 10px rgba(241, 136, 45, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(241, 136, 45, 0);
  }
}

@media (max-width: 575.98px) {
  .live-stream-widget {
    left: 12px;
    right: 12px;
    bottom: 14px;
    width: auto;
  }

  .live-stream-chip {
    padding: 12px 14px;
  }

  #backToTop.visible {
    bottom: 82px;
  }
}
