:root {
  color-scheme: dark;

  --bg: #020407;
  --bg-soft: #060b12;

  --text: #f5f8ff;
  --muted: #9ba8ba;

  --blue: #1da1ff;
  --blue-bright: #63c6ff;
  --blue-dim: rgba(29, 161, 255, .22);

  --line: rgba(64, 174, 255, .42);

  --max-width: 980px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(
      circle at 50% -20%,
      rgba(12, 97, 170, .20),
      transparent 38rem
    ),
    var(--bg);

  color: var(--text);

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.45;

  overflow-x: clip;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}


/* HEADER */

.site-header {
  position: relative;

  max-width: var(--max-width);

  margin: 0 auto;

  padding:
    max(22px, env(safe-area-inset-top))
    20px
    22px;
}

.menu-button {
  position: absolute;

  top: max(20px, env(safe-area-inset-top));
  left: 18px;

  width: 42px;
  height: 42px;

  display: grid;
  align-content: center;
  gap: 5px;

  border: 0;
  background: transparent;

  cursor: pointer;
}

.menu-button span {
  display: block;

  width: 27px;
  height: 3px;

  border-radius: 20px;

  background: #9edaff;

  box-shadow:
    0 0 8px rgba(45, 172, 255, .75);
}


.brand {
  width: min(760px, 86vw);

  margin: 8px auto 0;

  text-align: center;

  position: relative;
}







/* SEASON SLOT */

.seasonal-module {
  width: min(calc(100% - 28px), var(--max-width));

  margin: 16px auto 30px;
}


/* YEAR-ROUND SECTIONS */

.year-section {
  width: min(calc(100% - 36px), 920px);

  margin: 0 auto;

  padding: 30px 0;

  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 24px;

  color: var(--blue-bright);

  font-weight: 600;

  letter-spacing: .12em;

  text-align: center;
}

.section-heading::before,
.section-heading::after {
  content: "";

  height: 1px;

  flex: 1;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(54, 173, 255, .75)
    );
}

.section-heading::after {
  background:
    linear-gradient(
      90deg,
      rgba(54, 173, 255, .75),
      transparent
    );
}


/* CONTEST */



.contest-section h2 {
  margin: 3px 0 5px;

  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.contest-section p {
  max-width: 560px;

  margin: 0;

  color: var(--muted);
}



/* LISTEN */










/* NEIGHBORS — see final compact implementation below */

/* SOCIAL */





/* ABOUT */

.about-section p {
  max-width: 650px;

  margin: 0 auto 22px;

  color: var(--muted);

  text-align: center;
}



/* FOOTER */

.site-footer {
  width: min(calc(100% - 36px), 920px);

  margin: 10px auto 0;

  padding:
    22px 0
    max(24px, env(safe-area-inset-bottom));

  color: #667487;

  text-align: center;

  border-top: 1px solid rgba(60, 143, 201, .25);
}

.site-footer p {
  margin: 8px 0 0;

  font-size: .83rem;
}

.footer-pixels {
  width: 180px;
  height: 3px;

  margin: 0 auto;

  background:
    linear-gradient(
      90deg,
      #125ec3,
      #28a7ff,
      #902ee4,
      #ff7137,
      #29a8ff,
      #1760be
    );

  opacity: .65;
}


/* PERMANENT YEAR-ROUND LOGO */

.site-logo {
  display: block;

  width: min(100%, 720px);
  height: auto;

  margin: 0 auto;
}

/* Final-logo header refinement */
.site-header {
  padding-bottom: 8px;
}

.brand {
  width: min(92vw, 760px);
  margin-top: 0;
}

.site-logo {
  width: 100%;
  max-width: 760px;
}


/* =========================================================
   CONTEST VOTING — FINAL PHOTOGRAPHIC CTA
   ========================================================= */

.contest-section {
  padding: 18px 0 24px;
  border-top: 0 !important;
  border-bottom: 0 !important;
}

.contest-section + .year-section {
  border-top: 0 !important;
}

.contest-photo-button {
  position: relative;
  isolation: isolate;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  width: 100%;
  min-height: 150px;

  padding: 24px 30px;

  overflow: hidden;

  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;

  background-image:
    linear-gradient(
      90deg,
      rgba(0,0,0,.02) 20%,
      rgba(0,0,0,.22) 48%,
      rgba(0,0,0,.82) 78%,
      rgba(0,0,0,.94) 100%
    ),
    var(--contest-image);

  background-size: cover;
  background-position: var(--contest-image-position, center center);

  color: #fff;
  text-decoration: none;

  box-shadow: none;

  transition:
    transform .16s ease,
    border-color .16s ease;
}

.contest-photo-button::after {
  content: "";

  position: absolute;
  inset: 0;

  z-index: -1;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.04),
      rgba(0,0,0,.20)
    );

  pointer-events: none;
}

.contest-photo-copy {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: flex-end;

  max-width: 55%;

  text-align: right;

  z-index: 1;
}

.contest-photo-title {
  font-size: clamp(1.65rem, 4vw, 2.45rem);
  font-weight: 850;

  line-height: 1;

  letter-spacing: .035em;
}

.contest-photo-subtitle {
  margin-top: 7px;

  color: rgba(255,255,255,.80);

  font-size: .88rem;
  font-weight: 600;

  letter-spacing: .04em;
}

.contest-photo-arrow {
  position: relative;

  margin-left: 18px;

  font-size: 2.3rem;
  font-weight: 300;

  line-height: 1;

  z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
  .contest-photo-button:hover {
    transform: translateY(-1px);
    border-color: rgba(255,255,255,.42);
  }
}

.contest-photo-button:active {
  transform: translateY(0);
}

@media (max-width: 720px) {

  .contest-section {
    padding: 12px 0 18px;
  }

  .contest-photo-button {
    min-height: 128px;

    padding: 18px;

    background-color: #09070d;

    background-image:
      linear-gradient(
        90deg,
        rgba(0,0,0,.88) 0%,
        rgba(0,0,0,.66) 15%,
        rgba(0,0,0,.24) 32%,
        rgba(0,0,0,.08) 52%,
        rgba(0,0,0,.18) 70%,
        rgba(0,0,0,.52) 100%
      ),
      var(--contest-image);

    background-size:
      100% 100%,
      cover;

    background-position:
      center,
      center center;

    background-repeat:
      no-repeat,
      no-repeat;
  }

  .contest-photo-copy {
    max-width: 58%;
  }

  .contest-photo-title {
    font-size: clamp(1.4rem, 7vw, 1.8rem);
  }

  .contest-photo-subtitle {
    font-size: .74rem;
  }

  .contest-photo-arrow {
    margin-left: 10px;
    font-size: 2rem;
  }
}

/* =========================================================
   HOW TO LISTEN — CONTEMPORARY ROW LAYOUT
   ========================================================= */

.listen-section[hidden],
.listen-method[hidden] {
  display: none !important;
}

.listen-section {
  padding-top: 26px;
  padding-bottom: 26px;
}

.listen-heading {
  margin-bottom: 10px;
}

.listen-heading h2 {
  margin: 0;

  color: #f4f5f7;

  font-size: clamp(1.15rem, 3vw, 1.35rem);
  font-weight: 800;

  letter-spacing: .09em;
}

.listen-grid {
  display: block;
}

.listen-method {
  position: relative;

  display: grid;

  grid-template-columns: 68px 1fr;
  align-items: center;

  gap: 18px;

  min-height: 88px;

  padding: 15px 4px;

  border: 0;
  border-top: 1px solid rgba(255,255,255,.15);

  color: inherit;
  text-decoration: none;

  background: transparent;
}

.listen-method:last-child {
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.listen-method-icon {
  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;
}


/* RADIO */

.listen-radio-icon {
  position: relative;
}

.radio-antenna {
  position: absolute;

  width: 32px;
  height: 2px;

  top: 5px;
  left: 24px;

  background: #aeb4bd;

  transform: rotate(-45deg);
  transform-origin: left center;
}

.radio-body {
  position: relative;

  display: block;

  width: 52px;
  height: 38px;

  margin-top: 10px;

  border: 2px solid #b8bec7;
  border-radius: 3px;
}

.radio-dial {
  position: absolute;

  width: 10px;
  height: 10px;

  right: 6px;
  top: 6px;

  border: 2px solid #b8bec7;
  border-radius: 50%;
}

.radio-speaker {
  position: absolute;

  width: 22px;
  height: 22px;

  left: 6px;
  top: 7px;

  border: 2px solid #b8bec7;
  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      #b8bec7 0 1px,
      transparent 1.5px
    );

  background-size: 5px 5px;
}


/* RED SIGNPOST BUTTON */

.listen-red-button {
  position: relative;

  display: block;

  width: 38px;
  height: 38px;

  border: 4px solid #650b0b;
  border-radius: 50%;

  background:
    radial-gradient(
      circle at 38% 32%,
      #ff6a5e 0%,
      #ed2119 27%,
      #a40707 68%,
      #570000 100%
    );

  box-shadow:
    0 0 9px rgba(255,35,25,.72),
    0 0 20px rgba(255,20,15,.28),
    inset 0 2px 4px rgba(255,255,255,.25);
}

.listen-red-button::after {
  content: "";

  position: absolute;
  inset: -8px;

  border: 2px solid #5d6269;
  border-radius: 50%;

  z-index: -1;
}


/* PHONE */

.phone-body {
  position: relative;

  display: block;

  width: 30px;
  height: 49px;

  border: 2px solid #b8bec7;
  border-radius: 5px;
}

.phone-speaker {
  position: absolute;

  width: 9px;
  height: 2px;

  top: 5px;
  left: 50%;

  background: #b8bec7;

  transform: translateX(-50%);
}

.phone-wave {
  position: absolute;

  border: 2px solid #b8bec7;
  border-left: 0;
  border-bottom: 0;

  border-radius: 0 100% 0 0;

  transform: rotate(45deg);
}

.phone-wave-one {
  width: 10px;
  height: 10px;

  left: 9px;
  top: 20px;
}

.phone-wave-two {
  width: 18px;
  height: 18px;

  left: 5px;
  top: 16px;

  opacity: .55;
}


/* COPY */

.listen-method-copy h3 {
  margin: 0 0 4px;

  color: #f5f6f8;

  font-size: 1rem;
  font-weight: 800;

  letter-spacing: .055em;
}

#listen-radio-station {
  margin-left: 7px;

  color: #bfc4cb;

  font-weight: 600;

  letter-spacing: .025em;
}

.listen-method-copy p {
  margin: 0;

  color: #b9bec6;

  font-size: .91rem;
  line-height: 1.4;
}

.listen-method-copy strong {
  color: #f3f4f6;
}

.listen-method-note {
  margin-top: 4px !important;

  color: #858c96 !important;

  font-size: .79rem !important;
}

.listen-method-link {
  grid-template-columns: 68px 1fr 20px;

  cursor: pointer;
}

.listen-method-arrow {
  color: #bfc4cb;

  font-size: 1.9rem;
  font-weight: 300;

  line-height: 1;
}

@media (hover: hover) and (pointer: fine) {
  .listen-method-link:hover {
    background: rgba(255,255,255,.035);
  }
}


@media (max-width: 720px) {

  .listen-section {
    padding-top: 22px;
    padding-bottom: 24px;
  }

  .listen-heading {
    margin-bottom: 8px;
  }

  .listen-method {
    grid-template-columns: 58px 1fr;

    gap: 14px;

    min-height: 82px;

    padding: 13px 2px;
  }

  .listen-method-link {
    grid-template-columns: 58px 1fr 18px;
  }

  .listen-method-icon {
    width: 52px;
    height: 52px;
  }

  .listen-method-copy h3 {
    font-size: .94rem;
  }

  .listen-method-copy p {
    font-size: .86rem;
  }

  .listen-method-note {
    font-size: .76rem !important;
  }

}


/* HOW TO LISTEN — RADIO COMPACT ROW */

#listen-radio {
  min-height: 64px;
  padding-top: 8px;
  padding-bottom: 8px;
}

#listen-radio .listen-method-icon {
  height: 46px;
}

.listen-radio-copy h3 {
  margin: 0;

  font-size: 1.08rem;
  letter-spacing: .04em;
}


/* HOW TO LISTEN — RADIO VISUAL REFINE */

.listen-radio-copy h3,
#listen-radio-station {
  color: #f5f6f8;
  font-weight: 800;
}

/* Shorter radio antenna */
.radio-antenna {
  width: 22px;
  left: 28px;
}


/* =========================================================
   BE KIND TO OUR NEIGHBORS — COMPACT ICON GROUP
   ========================================================= */

.neighbor-section {
  padding-top: 26px;
  padding-bottom: 28px;
}

.neighbor-heading {
  margin-bottom: 20px;
}

.neighbor-heading h2 {
  margin: 0;

  color: #f4f5f7;

  font-size: clamp(1.15rem, 3vw, 1.35rem);
  font-weight: 800;

  letter-spacing: .07em;
}

.neighbor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 26px;
}

.neighbor-item {
  min-height: 0;

  display: flex;
  flex-direction: column;

  align-items: flex-start;
  justify-content: flex-start;

  gap: 9px;

  padding: 0;

  text-align: left;

  border: 0 !important;
}

.neighbor-item + .neighbor-item {
  border: 0 !important;
}

.neighbor-icon,
.neighbor-item > div {
  font-size: 1.7rem;

  line-height: 1;

  filter:
    grayscale(1)
    brightness(1.65);

  opacity: .82;
}

.neighbor-item p {
  margin: 0;

  color: #d5d8dd;

  font-size: .91rem;
  line-height: 1.35;
}

.neighbor-thanks {
  margin: 20px 0 0;

  color: #858c96;

  font-size: .83rem;

  text-align: left;
}


@media (max-width: 720px) {

  .neighbor-section {
    padding-top: 22px;
    padding-bottom: 24px;
  }

  .neighbor-heading {
    margin-bottom: 17px;
  }

  .neighbor-grid {
    grid-template-columns: repeat(3, 1fr);

    gap: 14px;
  }

  .neighbor-item {
    gap: 8px;
  }

  .neighbor-icon,
  .neighbor-item > div {
    font-size: 1.5rem;
  }

  .neighbor-item p {
    font-size: .78rem;
    line-height: 1.3;
  }

  .neighbor-thanks {
    margin-top: 17px;

    font-size: .79rem;
  }

}


/* NEIGHBORS — FINAL ALIGNMENT / SPACING REFINE */

.neighbor-section {
  border-top: 0 !important;
  border-bottom: 0 !important;
}

.neighbor-grid {
  align-items: start;
}

.neighbor-item {
  align-items: center;
  text-align: center;
}

.neighbor-icon,
.neighbor-item > div {
  font-size: 2.15rem;
}

.neighbor-item p {
  width: 100%;
  text-align: center;
}

.neighbor-thanks {
  text-align: center;
}

/*
 * Remove decorative separators surrounding
 * the neighbor section without affecting the
 * functional row dividers inside How to Listen.
 */
.listen-section {
  border-bottom: 0 !important;
}


@media (max-width: 720px) {

  .neighbor-icon,
  .neighbor-item > div {
    font-size: 2rem;
  }

}


/* =========================================================
   ACTIVE-SEASON CLOSING + ABOUT
   ========================================================= */

.neighbor-section[hidden] {
  display: none !important;
}

/* ABOUT */

.about-section {
  border-top: 0 !important;
}

.about-heading {
  margin-bottom: 14px;
}

.about-heading h2 {
  margin: 0;

  color: #f4f5f7;

  font-size: clamp(1.15rem, 3vw, 1.35rem);
  font-weight: 800;

  letter-spacing: .09em;
}

.about-section .about-intro {
  max-width: 650px;

  margin: 0;

  color: #aeb4bf;

  font-size: .94rem;
  line-height: 1.5;

  text-align: left;
}

.about-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 12px 24px;

  margin-top: 18px;
}

.about-link,

.about-link span,





@media (max-width: 720px) {

  .about-actions {
    flex-direction: column;
    align-items: flex-start;

    gap: 12px;
  }

}


/* =========================================================
   PERMANENT CONTENT — TIGHTER PAGE RHYTHM
   ========================================================= */

.listen-section,
.neighbor-section,
.about-section {
  padding-top: 18px;
  padding-bottom: 18px;
}


/* Neighbors — tighter internal spacing */

.neighbor-heading {
  margin-bottom: 14px;
}

.neighbor-thanks {
  margin-top: 14px;
}


/* Warm closing sentiment */

.neighbor-enjoy {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  margin: 18px 0 0;

  color: #e4e6e9;

  font-size: clamp(.92rem, 3.8vw, 1.18rem);
  font-weight: 600;
  font-style: italic;

  letter-spacing: .025em;
  line-height: 1.2;

  text-align: center;
  white-space: nowrap;
}

.neighbor-enjoy::before,
.neighbor-enjoy::after {
  content: "";

  min-width: 24px;
  width: auto;
  height: 4px;

  flex: 1 1 50px;
  max-width: 90px;

  background: #858c96;

  opacity: .7;
}

.neighbor-enjoy::before {
  clip-path: polygon(
    0 50%,
    100% 0,
    100% 100%
  );
}

.neighbor-enjoy::after {
  clip-path: polygon(
    0 0,
    100% 50%,
    0 100%
  );
}


/* About follows the neighbor closing thought more closely */

.neighbor-section + .about-section {
  padding-top: 14px;
}

.about-intro {
  margin-bottom: 14px;
}


/* Footer doesn't need a huge runway either */

.site-footer {
  margin-top: 4px;
}


@media (max-width: 720px) {

  .listen-section,
  .neighbor-section,
  .about-section {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .neighbor-enjoy {
    margin-top: 16px;
    font-size: clamp(.88rem, 3.6vw, 1.05rem);
  }

  .neighbor-section + .about-section {
    padding-top: 12px;
  }

}


/* =========================================================
   YEAR-ROUND BACKGROUND — RFLIGHTS PIXEL FIELD
   Looser distribution using colors from the site logo.
   ========================================================= */

body {
  background:

    /* upper-mid scatter — sparse */
    radial-gradient(circle at 18% 45%,
      rgba(35,155,255,0.493) 0 2px,
      rgba(35,155,255,0.174) 4px 11px,
      transparent 27px),

    radial-gradient(circle at 82% 47%,
      rgba(95,65,225,0.435) 0 2px,
      rgba(95,65,225,0.145) 4px 11px,
      transparent 26px),

    radial-gradient(circle at 51% 49%,
      rgba(100,205,255,0.319) 0 2px,
      rgba(100,205,255,0.102) 4px 10px,
      transparent 24px),


    /* left / left-middle */
    radial-gradient(circle at 6% 55%,
      rgba(45,175,255,0.609) 0 2px,
      rgba(45,175,255,0.217) 4px 13px,
      transparent 30px),

    radial-gradient(circle at 13% 63%,
      rgba(105,70,220,0.507) 0 2px,
      rgba(105,70,220,0.174) 4px 12px,
      transparent 28px),

    radial-gradient(circle at 4% 73%,
      rgba(85,205,255,0.551) 0 2px,
      rgba(85,205,255,0.189) 4px 13px,
      transparent 30px),

    radial-gradient(circle at 16% 81%,
      rgba(230,235,255,0.348) 0 2px,
      rgba(110,175,255,0.116) 5px 13px,
      transparent 29px),

    radial-gradient(circle at 7% 90%,
      rgba(75,115,235,0.551) 0 2px,
      rgba(75,115,235,0.174) 5px 14px,
      transparent 32px),


    /* right / right-middle */
    radial-gradient(circle at 94% 56%,
      rgba(110,70,225,0.580) 0 2px,
      rgba(110,70,225,0.189) 4px 13px,
      transparent 30px),

    radial-gradient(circle at 84% 64%,
      rgba(45,185,255,0.580) 0 2px,
      rgba(45,185,255,0.203) 4px 13px,
      transparent 30px),

    radial-gradient(circle at 97% 73%,
      rgba(220,225,255,0.319) 0 2px,
      rgba(100,180,255,0.116) 5px 13px,
      transparent 29px),

    radial-gradient(circle at 87% 82%,
      rgba(125,65,215,0.551) 0 2px,
      rgba(125,65,215,0.174) 5px 14px,
      transparent 31px),

    radial-gradient(circle at 96% 91%,
      rgba(45,175,255,0.609) 0 2px,
      rgba(45,175,255,0.203) 5px 15px,
      transparent 33px),


    /* middle scatter — breaks up side-column look */
    radial-gradient(circle at 31% 58%,
      rgba(45,165,255,0.406) 0 2px,
      rgba(45,165,255,0.131) 4px 11px,
      transparent 27px),

    radial-gradient(circle at 58% 61%,
      rgba(115,65,220,0.392) 0 2px,
      rgba(115,65,220,0.131) 4px 11px,
      transparent 27px),

    radial-gradient(circle at 71% 69%,
      rgba(70,200,255,0.435) 0 2px,
      rgba(70,200,255,0.145) 4px 12px,
      transparent 28px),

    radial-gradient(circle at 39% 72%,
      rgba(235,240,255,0.261) 0 2px,
      rgba(110,180,255,0.087) 5px 11px,
      transparent 26px),

    radial-gradient(circle at 53% 77%,
      rgba(80,105,235,0.435) 0 2px,
      rgba(80,105,235,0.131) 5px 12px,
      transparent 28px),

    radial-gradient(circle at 24% 84%,
      rgba(55,190,255,0.464) 0 2px,
      rgba(55,190,255,0.145) 5px 13px,
      transparent 30px),

    radial-gradient(circle at 68% 86%,
      rgba(120,70,220,0.450) 0 2px,
      rgba(120,70,220,0.145) 5px 13px,
      transparent 30px),


    /* sparse warm accents from logo */
    radial-gradient(circle at 44% 88%,
      rgba(255,105,45,0.348) 0 2px,
      rgba(255,105,45,0.116) 4px 11px,
      transparent 25px),

    radial-gradient(circle at 76% 94%,
      rgba(255,85,55,0.290) 0 2px,
      rgba(255,85,55,0.102) 4px 11px,
      transparent 25px),

    radial-gradient(circle at 19% 96%,
      rgba(255,125,55,0.261) 0 2px,
      rgba(255,125,55,0.087) 4px 10px,
      transparent 24px),


    /* lower field */
    radial-gradient(circle at 28% 94%,
      rgba(45,170,255,0.551) 0 2px,
      rgba(45,170,255,0.174) 5px 14px,
      transparent 32px),

    radial-gradient(circle at 37% 98%,
      rgba(90,75,225,0.493) 0 2px,
      rgba(90,75,225,0.160) 5px 14px,
      transparent 31px),

    radial-gradient(circle at 49% 93%,
      rgba(225,235,255,0.334) 0 2px,
      rgba(110,180,255,0.116) 5px 13px,
      transparent 29px),

    radial-gradient(circle at 59% 98%,
      rgba(55,185,255,0.566) 0 2px,
      rgba(55,185,255,0.189) 5px 15px,
      transparent 33px),

    radial-gradient(circle at 83% 96%,
      rgba(100,70,220,0.507) 0 2px,
      rgba(100,70,220,0.160) 5px 14px,
      transparent 31px),


    /* broad frosted atmosphere */
    radial-gradient(circle at 8% 78%,
      rgba(40,145,255,0.145),
      transparent 90px),

    radial-gradient(circle at 92% 76%,
      rgba(95,60,190,0.160),
      transparent 95px),

    radial-gradient(circle at 34% 92%,
      rgba(45,135,220,0.102),
      transparent 100px),

    radial-gradient(circle at 66% 91%,
      rgba(95,65,185,0.116),
      transparent 105px),

    radial-gradient(ellipse at 50% 108%,
      rgba(50,110,190,0.116),
      transparent 42%),

    #000 !important;

  background-attachment: scroll;
}


/* ABOUT THE SHOW — FINAL */

.about-intro p {
  margin: 0 0 14px;
  text-align: left !important;
  font-weight: 400;
  line-height: 1.6;
}

.about-intro p:last-child {
  margin-bottom: 0;
}

.about-intro strong {
  color: inherit !important;
  font-weight: 400 !important;
}

.about-actions {
  margin-top: 18px;
}

.about-section {
  border-bottom: 0 !important;
}

.site-footer {
  border-top: 0 !important;
}



/* =========================================================
   ANNOUNCEMENTS
   Invisible when empty/disabled.
   ========================================================= */

.announcement-section[hidden] {
  display: none !important;
}

.announcement-section {
  width: min(calc(100% - 28px), var(--max-width));
  margin: 2px auto 10px;
  overflow: hidden;
}

.announcement-viewport {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.announcement-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: announcement-scroll 24s linear infinite;
}

.announcement-group {
  flex: none;
  padding-right: 1.25em;

  color: #d94a4a;

  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .045em;

  text-shadow:
    0 0 7px rgba(210, 35, 35, .25);
}

@keyframes announcement-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .announcement-track {
    animation: none;
  }
}


/* =========================================================
   SPECIAL EVENT — HOMEPAGE TEASER
   ========================================================= */

.special-event-section[hidden] {
  display: none !important;
}

.special-event-section {
  margin-top: 12px;
  margin-bottom: 24px;
}

.special-event-link {
  position: relative;

  display: block;

  overflow: hidden;

  padding: 18px 20px 17px 24px;

  border: 1px solid rgba(78, 177, 255, .28);

  background:
    linear-gradient(
      105deg,
      rgba(22, 75, 120, .16),
      rgba(8, 11, 17, .76) 42%,
      rgba(5, 6, 9, .86)
    );

  color: inherit;
  text-decoration: none;

  box-shadow:
    0 0 22px rgba(20, 105, 180, .07);
}

.special-event-accent {
  position: absolute;

  top: 0;
  bottom: 0;
  left: 0;

  width: 3px;

  background:
    linear-gradient(
      180deg,
      #68d5ff,
      #4777ff 55%,
      #7656dc
    );

  box-shadow:
    0 0 10px rgba(75, 175, 255, .45);
}

.special-event-copy {
  min-width: 0;
}

.special-event-eyebrow {
  display: block;

  margin-bottom: 5px;

  color: #69cfff;

  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .15em;
}

.special-event-title {
  display: block;

  color: #f4f7fb;

  font-size: 1.12rem;
  line-height: 1.2;
  letter-spacing: .015em;
}

.special-event-schedule {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;

  margin-top: 6px;

  color: #c4cad3;

  font-size: .78rem;
  font-weight: 600;
}

.special-event-separator {
  color: #5ecbff;
}

.special-event-teaser {
  margin: 10px 0 0;

  color: #9fa7b2;

  font-size: .82rem;
  line-height: 1.45;
}

.special-event-details {
  display: inline-block;

  margin-top: 12px;

  color: #71ceff;

  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .08em;
}

.special-event-link:hover,
.special-event-link:focus-visible {
  border-color: rgba(90, 195, 255, .48);
}



/* =========================================================
   TOP CONTENT — FINAL SPACING / ANNOUNCEMENT REFINEMENT
   ========================================================= */

/* Announcement — stronger but still bare text */
.announcement-group {
  color: #ff3b3b !important;

  font-size: .92rem !important;
  font-weight: 800 !important;
  letter-spacing: .035em;

  text-shadow:
    0 0 5px rgba(255, 30, 30, .45),
    0 0 11px rgba(220, 20, 20, .20);
}


/* Pull the seasonal content stack together */
.seasonal-module {
  margin-bottom: 18px !important;
}

.contest-section {
  margin-top: 0 !important;
  margin-bottom: 14px !important;
}

.special-event-section {
  margin-top: 0 !important;
  margin-bottom: 10px !important;

  /* No generic year-section divider below this component */
  border-bottom: 0 !important;
}


/* How to Listen should begin shortly after Special Event */
.special-event-section + .listen-section {
  margin-top: 0 !important;
  padding-top: 10px !important;
  border-top: 0 !important;
}


/* =========================================================
   TOP STACK — UNIFIED MOBILE SPACING
   Seasonal → Voting → Special Event → How to Listen
   ========================================================= */

@media (max-width: 600px) {

  :root {
    --mobile-feature-gap: 24px;
  }

  /* Seasonal → Voting */
  .seasonal-module {
    margin-bottom: var(--mobile-feature-gap) !important;
  }

  .contest-section {
    margin-top: 0 !important;
    margin-bottom: var(--mobile-feature-gap) !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Voting → Special Event */
  .special-event-section {
    margin-top: 0 !important;
    margin-bottom: var(--mobile-feature-gap) !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Special Event → How to Listen */
  .special-event-section + .listen-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .listen-section {
    margin-top: 0 !important;
  }

}


/* =========================================================
   SITE NAVIGATION DRAWER
   ========================================================= */

body.menu-open {
  overflow: hidden;
}


.menu-backdrop[hidden] {
  display: none !important;
}

.menu-backdrop {
  position: fixed;
  inset: 0;

  z-index: 90;

  background: rgba(0, 0, 0, .68);

  opacity: 0;

  transition:
    opacity .22s ease;

  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.menu-backdrop.is-visible {
  opacity: 1;
}


.site-menu {
  position: fixed;

  top: 0;
  bottom: 0;
  left: 0;

  z-index: 100;

  width: min(82vw, 330px);

  display: flex;
  flex-direction: column;

  padding:
    max(24px, env(safe-area-inset-top))
    22px
    max(22px, env(safe-area-inset-bottom));

  background:
    linear-gradient(
      150deg,
      rgba(13, 28, 42, .97),
      rgba(3, 7, 12, .99) 44%,
      #000 100%
    );

  border-right:
    1px solid rgba(93, 196, 255, .32);

  box-shadow:
    18px 0 42px rgba(0, 0, 0, .55),
    3px 0 22px rgba(35, 150, 255, .08);

  transform: translateX(-105%);

  transition:
    transform .24s ease;
}

.site-menu.is-open {
  transform: translateX(0);
}


.site-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-bottom: 18px;

  border-bottom:
    1px solid rgba(112, 199, 255, .18);
}

.site-menu-title {
  color: #8edaff;

  font-size: .72rem;
  font-weight: 800;

  letter-spacing: .16em;

  text-shadow:
    0 0 9px rgba(50, 175, 255, .30);
}


.menu-close {
  width: 40px;
  height: 40px;

  border: 0;
  background: transparent;

  color: #dceeff;

  font-size: 2rem;
  font-weight: 300;
  line-height: 1;

  cursor: pointer;
}


.site-menu-nav {
  display: flex;
  flex-direction: column;

  margin-top: 18px;
}


.site-menu-link {
  position: relative;

  display: block;

  padding: 16px 4px;

  border-bottom:
    1px solid rgba(120, 190, 235, .10);

  color: #e4ebf2;

  text-decoration: none;

  font-size: .92rem;
  font-weight: 700;

  letter-spacing: .065em;

  transition:
    color .15s ease,
    padding-left .15s ease;
}

.site-menu-link::after {
  content: "›";

  position: absolute;

  top: 50%;
  right: 4px;

  transform: translateY(-52%);

  color: rgba(105, 205, 255, .58);

  font-size: 1.35rem;
  font-weight: 400;
}

.site-menu-link:hover,
.site-menu-link:focus-visible {
  color: #72d3ff;
  padding-left: 8px;
}


.site-menu-footer {
  margin-top: auto;
  padding-top: 20px;

  color: #616a74;

  font-size: .68rem;

  letter-spacing: .045em;
}


@media (prefers-reduced-motion: reduce) {

  .site-menu,
  .menu-backdrop {
    transition: none;
  }

}


/* =========================================================
   MENU BUTTON — MOBILE HIT TARGET / STACKING FIX
   Keep visual hamburger unchanged; enlarge clickable area.
   ========================================================= */

.site-header {
  z-index: 20 !important;
}

.menu-button {
  z-index: 25 !important;

  /* Larger touch/click target */
  width: 56px !important;
  height: 56px !important;

  /* Keep existing bars positioned toward upper-left */
  padding: 7px !important;

  align-content: center;
  justify-items: start;

  touch-action: manipulation;
}

@media (max-width: 720px) {

  .menu-button {
    left: 4px !important;

    /* Do NOT shrink the touch target on mobile */
    transform: none !important;
  }

  .menu-button span {
    width: 27px;
    height: 3px;
  }

}


/* =========================================================
   FOOTER SOCIAL LINKS
   ========================================================= */

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;

  margin: 20px auto 4px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  opacity: .78;

  transition:
    opacity .15s ease,
    transform .15s ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-social-icon {
  display: block;

  width: 30px;
  height: 30px;

  object-fit: contain;
}

@media (max-width: 600px) {
  .footer-socials {
    gap: 20px;
  }

  .footer-socials a {
    width: 40px;
    height: 40px;
  }

  .footer-social-icon {
    width: 29px;
    height: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-socials a {
    transition: none;
  }

  .footer-socials a:hover,
  .footer-socials a:focus-visible {
    transform: none;
  }
}
