@font-face {
  font-family: "Cobe Heavy Italic";
  src: url("/assets/fonts/Cobe-HeavyItalic.woff2") format("woff2"),
       url("/assets/fonts/Cobe-HeavyItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --blue: #0a8ed4;
  --green: #22e07b;
  --ink: #06101e;
  --cyan: #13bff0;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Cobe Heavy Italic", Arial Black, Impact, sans-serif;
  font-style: italic;
  background: url("/assets/img/hitsnowbg.png") center top / cover no-repeat fixed;
  text-transform: uppercase;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.04));
}

.shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px 18px 40px;
}

.hero {
  width: min(1280px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-logo {
  width: clamp(340px, 32vw, 560px);
  height: auto;
  display: block;
  margin-top: 0;
  filter: drop-shadow(0 16px 12px rgba(0,0,0,.2));
}

.player-panel {
  width: min(760px, 90vw);
  margin-top: clamp(36px, 5vh, 48px);
  margin-bottom: 18px;
  background: transparent;
  border-radius: 9px;
  padding: 0;
}

.player-shell {
  width: 100%;
  min-height: 79px;
  border-radius: 9px;
  background: var(--green);
  display: grid;
  grid-template-columns: 48px 1fr 132px;
  align-items: center;
  column-gap: 16px;
  padding: 10px 20px;
  box-shadow: none;
}

audio { display: none; }

.player-toggle {
  appearance: none;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  justify-self: start;
}

.pause-bars {
  width: 18px;
  height: 23px;
  display: block;
  background:
    linear-gradient(#06101e, #06101e) left center / 7px 23px no-repeat,
    linear-gradient(#06101e, #06101e) right center / 7px 23px no-repeat;
}

.player-toggle.is-paused .pause-bars {
  width: 0;
  height: 0;
  background: none;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #06101e;
}

.player-title {
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1;
  color: #06101e;
  white-space: nowrap;
  justify-self: center;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.volume-icon {
  position: relative;
  width: 24px;
  height: 22px;
  flex: 0 0 auto;
}

.volume-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 12px;
  background: #06101e;
  clip-path: polygon(0 30%, 42% 30%, 100% 0, 100% 100%, 42% 70%, 0 70%);
}

.volume-icon::after {
  content: ")))";
  position: absolute;
  left: 11px;
  top: -1px;
  color: #06101e;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -4px;
}

#volumeSlider {
  width: 82px;
  accent-color: #06101e;
  cursor: pointer;
}

.now-playing {
  width: min(760px, 90vw);
  margin: 0 0 28px;
  padding: 0;
}

.tabs {
  width: min(1270px, 100%);
  min-height: 79px;
  margin-top: 0;
  border-radius: 9px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 46px);
  padding: 12px 30px;
  flex-wrap: wrap;
}

.tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: #020b14;
  font: inherit;
  font-size: clamp(22px, 1.9vw, 34px);
  cursor: pointer;
  padding: 4px 6px;
}

.tab.active {
  color: #fff;
  text-shadow: 0 2px 0 rgba(0,0,0,.25);
}

.divider {
  font-size: clamp(24px, 2vw, 38px);
  line-height: 1;
}

.content-card {
  width: min(1270px, 100%);
  margin-top: 18px;
  padding: 0;
  display: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.content-card.open { display: block; }

.section-head {
  max-width: 760px;
  margin: 14px auto 18px;
  padding: 12px 18px 11px;
  background: rgba(255, 255, 255, .90);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 8px;
  text-align: center;
  min-height: 0;
}

.section-head h2 {
  margin: 0;
  padding: 0;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1;
  text-align: center;
}

.section-head p {
  display: block;
  margin: 7px 0 0;
  padding: 0;
  text-align: center;
  color: var(--blue);
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  font-style: italic;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.song-grid,
.song-grid.song-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.song-card,
#nowTitle.song-card,
#nowTitle.main-now-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 104px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .90);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 8px;
  text-align: left;
  box-sizing: border-box;
}

.art-wrap {
  position: relative;
  width: 84px;
  height: 84px;
  overflow: hidden;
  border-radius: 6px;
  background: linear-gradient(135deg, #0a8ed4, #22e07b);
}

.art-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #06101e;
  font-size: 34px;
}

.album-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .18s ease;
}

.album-art.loaded { opacity: 1; }

.song-copy { min-width: 0; }

.song-rank,
#nowTitle .song-rank {
  margin: 0 0 7px;
  color: var(--blue);
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  font-style: italic;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.song-card h3,
#nowTitle h3 {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  font-style: italic;
  letter-spacing: .02em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.song-card p,
#nowTitle p {
  margin: 0;
  color: rgba(9, 17, 32, .62);
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
  font-style: italic;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.song-meta {
  margin-top: 7px;
  color: var(--blue);
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
}

.view-more {
  display: block;
  margin: 22px auto 0;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: #06101e;
  font: inherit;
  font-size: 22px;
  padding: 10px 24px;
  cursor: pointer;
}

.empty-copy {
  text-align: center;
  color: #676767;
  font-size: 24px;
}

@media (max-width: 720px) {
  .shell { padding-inline: 12px; }
  .brand-logo { width: min(340px, 86vw); }
  .player-panel { width: min(440px, 90vw); margin-top: 28px; }
  .player-shell {
    min-height: 62px;
    grid-template-columns: 38px 1fr 86px;
    column-gap: 8px;
    padding: 8px 12px;
  }
  .player-title { font-size: 22px; }
  .volume-icon { display: none; }
  #volumeSlider { width: 76px; }
  .now-playing { width: min(440px, 90vw); }
  .tabs { gap: 7px; }
  .divider { display: none; }
  .tab { width: 100%; }
  .song-card,
  #nowTitle.song-card,
  #nowTitle.main-now-card { grid-template-columns: 82px minmax(0, 1fr); }
  .art-wrap { width: 82px; height: 82px; }
}

/* FINAL SIZE TWEAK: smaller logo + original-ish compact player */
.brand-logo {
  width: clamp(280px, 25vw, 430px) !important;
  max-height: 210px !important;
  object-fit: contain !important;
}

.player-panel {
  width: min(560px, 88vw) !important;
  max-width: 560px !important;
  margin-top: clamp(20px, 3vh, 30px) !important;
  margin-bottom: 18px !important;
}

.player-shell {
  width: 100% !important;
  max-width: 560px !important;
  min-height: 68px !important;
  grid-template-columns: 42px 1fr 118px !important;
  padding: 9px 16px !important;
}

.player-title {
  font-size: clamp(22px, 1.7vw, 30px) !important;
}

@media (max-width: 720px) {
  .brand-logo {
    width: min(300px, 78vw) !important;
    max-height: 170px !important;
  }

  .player-panel {
    width: min(360px, 88vw) !important;
    max-width: 360px !important;
    margin-top: 20px !important;
  }

  .player-shell {
    max-width: 360px !important;
    min-height: 60px !important;
    grid-template-columns: 36px 1fr 78px !important;
    padding: 8px 11px !important;
  }
}

/* FINAL TWEAK: restore larger logo and add breathing room before player */
.brand-logo {
  width: clamp(360px, 34vw, 560px) !important;
  max-height: 285px !important;
  object-fit: contain !important;
}

.player-panel {
  margin-top: clamp(34px, 5vh, 58px) !important;
}

@media (max-width: 720px) {
  .brand-logo {
    width: min(380px, 88vw) !important;
    max-height: 220px !important;
  }

  .player-panel {
    margin-top: 34px !important;
  }
}

/* FINAL TWEAK: slightly bigger logo + more space before player */
.brand-logo {
  width: clamp(390px, 38vw, 620px) !important;
  max-height: 320px !important;
  object-fit: contain !important;
}

.player-panel {
  margin-top: clamp(48px, 6.5vh, 76px) !important;
}

@media (max-width: 720px) {
  .brand-logo {
    width: min(420px, 92vw) !important;
    max-height: 250px !important;
  }

  .player-panel {
    margin-top: 46px !important;
  }
}

/* FINAL TWEAK: tighten HOT 6 title/date spacing */
.section-head h2 {
  margin-bottom: 3px !important;
}

.section-head p {
  margin-top: 3px !important;
  line-height: 1 !important;
}

/* FINAL TWEAK: tighter header subline and tighter song title/artist spacing */
.section-head h2 {
  margin-bottom: 1px !important;
}

.section-head p {
  margin-top: 1px !important;
  line-height: .95 !important;
}

.song-card h3,
#nowTitle h3 {
  margin-bottom: 3px !important;
}

.song-card p,
#nowTitle p {
  margin-top: 0 !important;
  line-height: .95 !important;
}

.song-copy {
  gap: 0 !important;
}

/* FINAL TWEAK: even tighter header and song text spacing */
.section-head h2 {
  margin-bottom: 0 !important;
  line-height: .92 !important;
}

.section-head p {
  margin-top: 0 !important;
  line-height: .9 !important;
}

.song-rank {
  margin-bottom: 4px !important;
}

.song-card h3,
#nowTitle h3 {
  margin-bottom: 0 !important;
  line-height: .92 !important;
}

.song-card p,
#nowTitle p {
  margin-top: -1px !important;
  line-height: .9 !important;
}

.song-copy {
  gap: 0 !important;
}

/* FINAL TWEAK: NOW PLAYING label matches green player */
#nowTitle .song-rank {
  color: #8BC53F !important;
}

.now-playing .song-rank {
  color: #8BC53F !important;
}

/* FINAL TWEAK: NOW PLAYING label exact player green */
#nowTitle .song-rank,
.now-playing .song-rank {
  color: #6bdd85 !important;
}

/* FINAL TWEAK: real Request A Song form */
.request-form {
  width: min(760px, 92vw);
  margin: 18px auto 0;
  padding: 22px;
  border: 1px solid rgba(12, 24, 40, .1);
  border-radius: 10px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 10px 26px rgba(15, 23, 42, .06);
}

.request-form label {
  display: block;
  margin-bottom: 14px;
  color: #071321;
  font-size: 13px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: .08em;
}

.request-form input,
.request-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 13px 14px;
  border: 1px solid rgba(12, 24, 40, .18);
  border-radius: 8px;
  background: #fff;
  color: #071321;
  font: inherit;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  box-sizing: border-box;
}

.request-form textarea {
  resize: vertical;
}

.request-submit {
  width: 100%;
  margin-top: 6px;
  padding: 15px 18px;
  border: 0;
  border-radius: 8px;
  background: #6bdd85;
  color: #071321;
  font-size: 18px;
  font-weight: 1000;
  font-style: italic;
  letter-spacing: .05em;
  cursor: pointer;
}

.request-submit:disabled {
  opacity: .72;
  cursor: wait;
}

.request-note {
  margin: 12px 0 0;
  color: rgba(7, 19, 33, .68);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

/* FINAL TWEAK: Request form text uppercase + bolder submit */
.request-form,
.request-form input,
.request-form textarea,
.request-form input::placeholder,
.request-form textarea::placeholder,
.request-note {
  text-transform: uppercase !important;
}

.request-submit {
  text-transform: uppercase !important;
  font-weight: 1000 !important;
  font-family: inherit !important;
  letter-spacing: .08em !important;
}

.request-form input,
.request-form textarea {
  font-weight: 900 !important;
}

/* FINAL TWEAK: request sent state */
.request-sent-panel {
  width: 100%;
}

.request-sent-button {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 1000 !important;
  text-transform: uppercase !important;
}

/* FINAL TWEAK: hide Request A Song helper note */
#requestSongNote {
  display: none !important;
}

/* FINAL TWEAK: logo acts as home button */
.brand-logo {
  cursor: pointer !important;
}

/* CLEAN NAV LOGO LAYOUT */
nav.tabs {
  width: fit-content !important;
  max-width: 92vw !important;
  margin-left: auto !important;
  margin-right: auto !important;

  position: relative !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: flex-start !important;

  height: 74px !important;
  min-height: 74px !important;
  box-sizing: border-box !important;

  padding-left: 180px !important;
  padding-right: 34px !important;
  gap: 20px !important;
  overflow: visible !important;
}

nav.tabs .nav-logo {
  cursor: pointer !important;
  position: absolute !important;
  left: 22px !important;
  top: 50% !important;
  width: 136px !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 !important;
  transform: translateY(-50%) rotate(-6deg) !important;
  z-index: 5 !important;
  pointer-events: auto !important;
}

nav.tabs .tab {
  flex: 0 0 auto !important;
  white-space: nowrap !important;
  font-size: clamp(22px, 1.85vw, 34px) !important;
}

nav.tabs .tab-separator {
  flex: 0 0 auto !important;
  white-space: nowrap !important;
  font-size: 16px !important;
  line-height: 1 !important;
  margin: 0 3px !important;
  transform: translateY(-1px) !important;
}

@media (max-width: 980px) {
  nav.tabs {
    width: 94vw !important;
    max-width: 94vw !important;
    padding-left: 124px !important;
    padding-right: 12px !important;
    gap: 12px !important;
    overflow-x: auto !important;
  }

  nav.tabs .nav-logo {
    left: 18px !important;
    width: 92px !important;
  }

  nav.tabs .tab {
    font-size: 20px !important;
  }

  nav.tabs .tab-separator {
    font-size: 13px !important;
    margin: 0 1px !important;
  }
}

/* FINAL TWEAK: Hot Hits 6 At 6 date uses Now Playing green */
.section-head p {
  color: #6bdd85 !important;
}

/* CLEAN FOOTER */
.site-footer {
  width: fit-content;
  max-width: 92vw;
  margin: 44px auto 34px;
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(10, 36, 72, .92);
  color: rgba(255, 255, 255, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(7, 19, 33, .12);
}

.footer-link {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.footer-link:hover {
  color: #6bdd85;
}

.footer-separator {
  color: #6bdd85;
  font-weight: 1000;
}

@media (max-width: 720px) {
  .site-footer {
    width: min(520px, 88vw);
    flex-wrap: wrap;
    gap: 8px 10px;
    padding: 14px 18px;
    border-radius: 18px;
    line-height: 1.25;
  }
}

/* FINAL TWEAK: smaller footer + green View More buttons */
.site-footer {
  margin: 34px auto 26px !important;
  padding: 9px 18px !important;
  gap: 9px !important;
  font-size: clamp(11px, .82vw, 13px) !important;
  letter-spacing: .07em !important;
  border-radius: 999px !important;
}

.footer-separator {
  font-size: 12px !important;
  color: #6bdd85 !important;
}

.footer-link {
  cursor: pointer !important;
}

.footer-link:hover {
  color: #6bdd85 !important;
}

.view-more,
.show-more {
  background: #6bdd85 !important;
  color: #071321 !important;
  border-color: #6bdd85 !important;
}

.view-more:hover,
.show-more:hover {
  filter: brightness(1.04) !important;
}

@media (max-width: 720px) {
  .site-footer {
    padding: 10px 14px !important;
    font-size: 11px !important;
    gap: 7px !important;
  }
}

/* FINAL TWEAK: official footer home link */
.footer-home {
  color: rgba(255, 255, 255, .92) !important;
}

.footer-home:hover {
  color: #6bdd85 !important;
}

/* FINAL TWEAK: tighten content-to-footer gap */
.site-footer {
  margin-top: 16px !important;
}

/* FINAL TWEAK: reduce only the content-to-footer gap */
.site-footer {
  margin-top: 6px !important;
}

/* FINAL TWEAK: footer gap 2px */
.site-footer {
  margin-top: 2px !important;
}

/* FINAL TWEAK: footer gap 0px */
.site-footer {
  margin-top: 0 !important;
}


/* HOT HITS 6 AT 6 date arrows */
.hot6-date-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 2px;
}

.hot6-date-label {
  display: inline-block;
  min-width: 230px;
  text-align: center;
}

.hot6-date-btn {
  appearance: none;
  border: 0;
  background: var(--blue);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  font-size: 24px;
  line-height: 26px;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 3px;
}

.hot6-date-placeholder {
  background: transparent;
  pointer-events: none;
  visibility: hidden;
}

@media (max-width: 520px) {
  .hot6-date-nav { gap: 6px; }
  .hot6-date-label { min-width: 190px; font-size: 12px; }
  .hot6-date-btn { width: 28px; height: 28px; font-size: 22px; }
}




/* Hot 6 date nav — normal card flow, matching other tabs */
.hot6-title-row {
  display: block;
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 0;
}

.hot6-title-main {
  display: grid;
  grid-template-columns: 64px 1fr 64px;
  align-items: center;
  gap: 12px;
}

.hot6-title-main h2 {
  margin: 0;
}

.hot6-date-label {
  margin-top: 4px;
  color: #59d978;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.hot6-date-btn {
  width: 54px;
  height: 54px;
  border: 0;
  background: transparent;
  color: #020817;
  font-size: 56px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hot6-date-btn:hover {
  color: #59d978;
}

.hot6-date-placeholder {
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 700px) {
  .hot6-title-main {
    grid-template-columns: 40px 1fr 40px;
    gap: 6px;
  }

  .hot6-date-btn {
    width: 36px;
    height: 36px;
    font-size: 40px;
  }

  .hot6-date-label {
    font-size: 10px;
  }
}

/* Hot 6 final: tighter date + bigger arrows */
.hot6-title-main {
  grid-template-columns: 90px 1fr 90px !important;
  align-items: center !important;
}

.hot6-title-main h2 {
  line-height: 0.82 !important;
  margin-bottom: 0 !important;
}

.hot6-date-label {
  margin-top: -4px !important;
  color: #59d978 !important;
  line-height: 0.95 !important;
}

.hot6-date-btn {
  width: 82px !important;
  height: 82px !important;
  font-size: 86px !important;
  line-height: 0.8 !important;
}

@media (max-width: 700px) {
  .hot6-title-main {
    grid-template-columns: 54px 1fr 54px !important;
  }

  .hot6-date-btn {
    width: 50px !important;
    height: 50px !important;
    font-size: 56px !important;
  }

  .hot6-date-label {
    margin-top: -2px !important;
  }
}

/* Hot 6 final height/spacing correction */
.content-card:has(.hot6-title-row) {
  padding-top: 22px !important;
  padding-bottom: 18px !important;
}

.hot6-title-row {
  margin: 0 !important;
  padding: 0 !important;
}

.hot6-title-main {
  grid-template-columns: 92px 1fr 92px !important;
  align-items: center !important;
  gap: 10px !important;
}

.hot6-title-main h2 {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0.78 !important;
}

.hot6-date-label {
  margin-top: -8px !important;
  margin-bottom: 0 !important;
  color: #59d978 !important;
  line-height: 0.95 !important;
}

.hot6-date-btn {
  width: 86px !important;
  height: 86px !important;
  font-size: 92px !important;
  line-height: 0.75 !important;
}

.content-card:has(.hot6-title-row) + .content-card {
  margin-top: 20px !important;
}

@media (max-width: 700px) {
  .content-card:has(.hot6-title-row) {
    padding-top: 18px !important;
    padding-bottom: 14px !important;
  }

  .hot6-title-main {
    grid-template-columns: 56px 1fr 56px !important;
  }

  .hot6-date-btn {
    width: 52px !important;
    height: 52px !important;
    font-size: 58px !important;
  }

  .hot6-date-label {
    margin-top: -4px !important;
  }
}

/* Hot 6 final center-stack layout */
.hot6-title-row {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.hot6-title-main {
  display: grid !important;
  grid-template-columns: 92px 1fr 92px !important;
  align-items: center !important;
  gap: 12px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.hot6-title-center {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

.hot6-title-center h2 {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0.82 !important;
}

.hot6-date-label {
  margin: -3px 0 0 !important;
  padding: 0 !important;
  color: #59d978 !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
}

.hot6-date-btn {
  width: 86px !important;
  height: 86px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #020817 !important;
  font-size: 92px !important;
  line-height: 0.8 !important;
  font-weight: 900 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.hot6-date-btn:hover {
  color: #59d978 !important;
}

.hot6-date-placeholder {
  visibility: hidden !important;
  pointer-events: none !important;
}

.content-card:has(.hot6-title-row) {
  padding-top: 34px !important;
  padding-bottom: 34px !important;
}

@media (max-width: 700px) {
  .hot6-title-main {
    grid-template-columns: 52px 1fr 52px !important;
    gap: 6px !important;
  }

  .hot6-date-btn {
    width: 48px !important;
    height: 48px !important;
    font-size: 54px !important;
  }

  .hot6-date-label {
    margin-top: -1px !important;
    font-size: 10px !important;
  }

  .content-card:has(.hot6-title-row) {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}

/* Hot 6 TRUE compact final override */
.content-card:has(.hot6-title-row) {
  padding: 18px 32px 16px !important;
  margin-top: 0 !important;
}

.hot6-title-row {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
}

.hot6-title-main {
  display: block !important;
  position: relative !important;
  width: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.hot6-title-center {
  display: block !important;
  text-align: center !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.hot6-title-center h2 {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0.72 !important;
}

.hot6-date-label {
  margin: -8px 0 0 !important;
  padding: 0 !important;
  color: #59d978 !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
}

.hot6-date-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 72px !important;
  height: 72px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #020817 !important;
  font-size: 90px !important;
  line-height: 0.75 !important;
  font-weight: 900 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.hot6-title-main > .hot6-date-btn:first-child {
  left: 28px !important;
}

.hot6-title-main > .hot6-date-btn:last-child {
  right: 28px !important;
}

.hot6-date-btn:hover {
  color: #59d978 !important;
}

.hot6-date-placeholder {
  visibility: hidden !important;
  pointer-events: none !important;
}

.content-card:has(.hot6-title-row) + .content-card {
  margin-top: 22px !important;
}

@media (max-width: 700px) {
  .content-card:has(.hot6-title-row) {
    padding: 16px 18px 14px !important;
  }

  .hot6-title-center h2 {
    line-height: 0.82 !important;
  }

  .hot6-date-label {
    margin-top: -2px !important;
    font-size: 10px !important;
  }

  .hot6-date-btn {
    width: 44px !important;
    height: 44px !important;
    font-size: 52px !important;
  }

  .hot6-title-main > .hot6-date-btn:first-child {
    left: 2px !important;
  }

  .hot6-title-main > .hot6-date-btn:last-child {
    right: 2px !important;
  }
}

/* Hot 6 arrow aligned to title text line */
.hot6-title-main {
  position: relative !important;
}

.hot6-date-btn {
  top: 0 !important;
  transform: none !important;
  height: 82px !important;
  line-height: 0.75 !important;
  align-items: center !important;
}

.hot6-title-main > .hot6-date-btn:first-child,
.hot6-title-main > .hot6-date-btn:last-child {
  top: 4px !important;
}

@media (max-width: 700px) {
  .hot6-title-main > .hot6-date-btn:first-child,
  .hot6-title-main > .hot6-date-btn:last-child {
    top: 2px !important;
  }
}

/* Hot 6 arrow vertical correction */
.hot6-date-btn {
  top: -12px !important;
  transform: none !important;
  height: 72px !important;
  font-size: 96px !important;
  line-height: 0.62 !important;
  align-items: flex-start !important;
}

.hot6-title-main > .hot6-date-btn:first-child,
.hot6-title-main > .hot6-date-btn:last-child {
  top: -12px !important;
}

@media (max-width: 700px) {
  .hot6-date-btn,
  .hot6-title-main > .hot6-date-btn:first-child,
  .hot6-title-main > .hot6-date-btn:last-child {
    top: -6px !important;
  }
}

/* Hot 6: nudge header text down to match other tabs */
.hot6-title-center {
  transform: translateY(10px) !important;
}

.hot6-date-btn {
  top: 8px !important;
}

/* Hot 6: measured alignment to other tab headers */
.hot6-title-center {
  transform: translateY(3px) !important;
}

.hot6-date-btn {
  top: 1px !important;
}
