/* =========================================================
   JAM Audio Live - Clean Full Stylesheet
   Replace your entire style.css with this file.
   Then bump index.html to /style.css?v=100
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #050505;
  color: #ffffff;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

/* ---------------- NAVIGATION ---------------- */

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 118, 206, 0.24);
  box-shadow: 0 0 24px rgba(0, 118, 206, 0.14);
}

.top-nav a {
  color: #e8eef7;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.top-nav a:hover {
  color: #8dc9ff;
  text-shadow: 0 0 14px rgba(0, 118, 206, 0.6);
}

.status-strip {
  position: fixed;
  top: 51px;
  left: 0;
  width: 100%;
  z-index: 99;
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 6px 12px;
  background: rgba(0, 118, 206, 0.18);
  border-bottom: 1px solid rgba(0, 118, 206, 0.22);
  color: #8dc9ff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------------- HERO ---------------- */

.hero {
  position: relative;
  min-height: 62vh;
  padding: 118px 20px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.76), rgba(0,0,0,0.94)),
    radial-gradient(circle at 50% 35%, rgba(0,118,206,0.35), transparent 58%),
    url("/images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
}

.hero-upgraded {
  min-height: 62vh;
  padding: 118px 20px 46px;
}

.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.7;
  pointer-events: none;
}

.glow {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(82px);
  opacity: 0.38;
  pointer-events: none;
}

.glow-one {
  width: 360px;
  height: 360px;
  background: #0076ce;
  top: 10%;
  left: 8%;
  animation: driftOne 9s ease-in-out infinite;
}

.glow-two {
  width: 300px;
  height: 300px;
  background: #1b8fe4;
  right: 7%;
  bottom: 8%;
  animation: driftTwo 11s ease-in-out infinite;
}

@keyframes driftOne {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(32px, 22px); }
}

@keyframes driftTwo {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-28px, -18px); }
}

.hero-eq {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 7%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 150px;
  opacity: 0.14;
  pointer-events: none;
}

.hero-eq span {
  width: 13px;
  border-radius: 999px;
  background: linear-gradient(to top, #0076ce, #8dc9ff);
  box-shadow: 0 0 22px rgba(0, 118, 206, 0.68);
  animation: eqMove 2.4s ease-in-out infinite;
}

.hero-eq span:nth-child(1) { height: 50px; animation-delay: 0s; }
.hero-eq span:nth-child(2) { height: 110px; animation-delay: .2s; }
.hero-eq span:nth-child(3) { height: 75px; animation-delay: .4s; }
.hero-eq span:nth-child(4) { height: 145px; animation-delay: .1s; }
.hero-eq span:nth-child(5) { height: 90px; animation-delay: .3s; }
.hero-eq span:nth-child(6) { height: 125px; animation-delay: .5s; }
.hero-eq span:nth-child(7) { height: 60px; animation-delay: .25s; }
.hero-eq span:nth-child(8) { height: 155px; animation-delay: .45s; }
.hero-eq span:nth-child(9) { height: 80px; animation-delay: .15s; }
.hero-eq span:nth-child(10) { height: 120px; animation-delay: .35s; }

@keyframes eqMove {
  0%, 100% { transform: scaleY(.72); opacity: .42; }
  50% { transform: scaleY(1.22); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(900px, 94vw);
  margin: 0 auto;
  padding: 34px 30px 38px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(5,8,20,0.90), rgba(10,18,42,0.74));
  border: 1px solid rgba(100, 217, 255, 0.20);
  box-shadow: 0 0 42px rgba(0, 118, 206, 0.20), 0 28px 90px rgba(0,0,0,0.38);
  backdrop-filter: blur(9px);
}

.hero-stage {
  margin: 0 auto;
}

.site-logo {
  width: auto;
  max-width: 165px;
  display: block;
  margin: 0 auto 16px;
  border-radius: 24px;
}

.tagline {
  margin: 0 0 10px;
  color: #8dc9ff;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  font-family: "Anton", Arial, Helvetica, sans-serif;
  font-size: clamp(3rem, 6vw, 5.15rem);
  line-height: 0.96;
  margin: 10px 0 12px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1 span {
  color: #8dc9ff;
  text-shadow: 0 0 28px rgba(0,118,206,0.75);
}

.intro,
.hero-subtitle {
  max-width: 700px;
  margin: 0 auto 22px;
  color: rgba(255,255,255,0.84);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* ---------------- BUTTONS ---------------- */

.buttons {
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  min-height: 48px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.03em;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.primary {
  background: linear-gradient(135deg, #0076ce, #1b8fe4);
  color: #ffffff;
  box-shadow: 0 0 24px rgba(0,118,206,0.34);
}

.primary:hover {
  box-shadow: 0 0 34px rgba(0,118,206,0.52);
}

.secondary {
  border: 1px solid rgba(255,255,255,0.24);
  color: #ffffff;
  background: rgba(255,255,255,0.07);
}

.secondary:hover {
  background: rgba(255,255,255,0.13);
}

/* ---------------- CURRENT ROTATION / LIVE PLAYER ---------------- */

.jam-originals {
  max-width: 1200px;
  margin: 34px auto 70px;
  padding: 0 20px;
}

.original-card {
  padding: 42px 30px;
  text-align: center;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(0,118,206,0.16), rgba(255,255,255,0.035));
  border: 1px solid rgba(0,118,206,0.26);
  box-shadow: 0 28px 80px rgba(0,0,0,0.42), 0 0 55px rgba(0,118,206,0.10);
  backdrop-filter: blur(10px);
}

.section-kicker {
  color: #8dc9ff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.original-card h2,
.jam-originals h2 {
  font-family: "Anton", Arial, Helvetica, sans-serif;
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: 1.02;
  margin-bottom: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.original-card > p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: rgba(255,255,255,0.82);
  font-size: 1.04rem;
  line-height: 1.7;
}

.current-rotation-player {
  width: min(760px, 100%);
  margin: 26px auto 0;
  padding: 20px;
  border-radius: 24px;
  background: rgba(0,0,0,0.42);
  border: 1px solid rgba(141,201,255,0.18);
  box-shadow: inset 0 0 20px rgba(255,255,255,0.03);
}

.current-rotation-player audio {
  width: 100%;
  display: block;
}

.now-playing-mini {
  margin-top: 14px;
  padding: 11px 13px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(141,201,255,0.18);
}

.np-label {
  display: block;
  margin-bottom: 4px;
  color: #8dc9ff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

#now-playing-title {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 900;
}

.track-item {
  max-width: 760px;
  margin: 28px auto 0;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.track-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255,149,0,0.24);
  box-shadow: 0 0 36px rgba(255,149,0,0.09);
}

.live-original-badge {
  color: #ff9500 !important;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin-bottom: 18px !important;
  animation: pulseLive 2.2s infinite;
}

@keyframes pulseLive {
  0% { opacity: 0.68; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
  100% { opacity: 0.68; transform: scale(1); }
}

.current-rotation-artwork {
  width: 145px;
  height: 145px;
  object-fit: cover;
  display: block;
  margin: 0 auto 24px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 0 30px rgba(0,0,0,0.36), 0 0 42px rgba(255,149,0,0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.current-rotation-artwork:hover {
  transform: scale(1.04);
  box-shadow: 0 0 42px rgba(255,149,0,0.22);
}

#originalTrackTitle {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

#originalTrackStatus {
  color: rgba(255,255,255,0.78);
  font-size: 1.02rem;
  margin-bottom: 20px;
}

.track-like {
  margin-top: 18px;
  padding: 13px 24px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6b00, #ff9500);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(255,149,0,0.36);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.track-like:not(:disabled):hover {
  transform: scale(1.035);
  box-shadow: 0 0 28px rgba(255,149,0,0.58);
}

.track-like:disabled {
  opacity: 0.82;
  cursor: default;
}

#originalTrackCount {
  display: inline-block;
  margin-left: 10px;
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
}

.now-playing-artist-action {
  margin-top: 14px;
  text-align: center;
}

.now-playing-artist-action p {
  color: #8dc9ff;
  font-size: 0.86rem;
  font-weight: 800;
  margin-bottom: 0;
}

.now-playing-artist-action a {
  display: inline-block;
  margin-top: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: #8dc9ff;
  color: #000000;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 900;
}

.now-playing-artist-action a:hover {
  background: #ffffff;
}

/* ---------------- ABOUT / BROADCASTING / SCHEDULE ---------------- */

.about-jam {
  max-width: 920px;
  margin: 40px auto 70px;
  padding: 30px 28px;
  text-align: center;
  border-radius: 24px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.07);
}

.about-jam h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.about-jam p {
  color: rgba(255,255,255,0.80);
  font-size: 1.04rem;
  line-height: 1.75;
}

.now-playing-section,
.schedule-section,
.top-shared-section,
.featured-artist-live-section {
  max-width: 1200px;
  margin: 40px auto 78px;
  padding: 0 20px;
}

.now-playing-card,
.schedule-card,
.top-shared-card,
.featured-artist-live-card {
  padding: 42px 32px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(0,118,206,0.18), rgba(255,255,255,0.04));
  border: 1px solid rgba(0,118,206,0.28);
  box-shadow: 0 28px 78px rgba(0,0,0,0.44);
  text-align: center;
}

.now-playing-card h2,
.schedule-card h2,
.top-shared-card h2,
.featured-copy h2,
.featured-artist-live-copy h2,
.section h2 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.06;
  margin-bottom: 20px;
}

.now-playing-card p,
.schedule-card p,
.top-shared-intro,
.featured-copy p,
.section p,
.featured-artist-live-text {
  max-width: 780px;
  margin: 0 auto 26px;
  color: #d0d0d0;
  font-size: 1.06rem;
  line-height: 1.75;
}

.broadcast-tags,
.artist-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.broadcast-tags span,
.artist-meta span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(141,201,255,0.22);
  color: #8dc9ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.show-block {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(141,201,255,0.12);
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.show-block:hover {
  transform: translateY(-4px);
  border-color: rgba(0,118,206,0.45);
  box-shadow: 0 0 32px rgba(0,118,206,0.18);
}

.show-time {
  display: inline-block;
  margin-bottom: 13px;
  color: #8dc9ff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.show-block h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 1.28rem;
}

.show-block p {
  margin: 0;
  color: #c9c9c9;
  line-height: 1.7;
}

/* ---------------- TOP SHARED / MOST BOOSTED ---------------- */

.top-shared-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.shared-artist-card {
  display: block;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(141,201,255,0.15);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.shared-artist-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,118,206,0.55);
  box-shadow: 0 0 35px rgba(0,118,206,0.20);
}

.shared-rank {
  display: inline-block;
  margin-bottom: 14px;
  color: #8dc9ff;
  font-size: 1.85rem;
  font-weight: 900;
}

.leaderboard-image {
  width: 100%;
  max-width: 135px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  margin: 0 auto 16px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0,170,255,0.32);
}

.shared-artist-card h3 {
  margin-bottom: 10px;
  color: #ffffff;
}

.shared-artist-card p {
  color: #bfe9ff;
  font-weight: 900;
}

.view-spotlight-text {
  display: inline-block;
  margin-top: 14px;
  color: #8dc9ff;
  font-weight: 900;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.top-shared-note {
  margin-top: 24px;
  color: #8dc9ff;
  font-size: 0.94rem;
  font-weight: 900;
  text-align: center;
}

.featured-artist-live-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: center;
  text-align: left;
}

.featured-artist-live-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 0 40px rgba(0,170,255,0.32);
}

#featuredArtistBoosts {
  margin-bottom: 18px;
  color: #8dc9ff;
  font-size: 1.15rem;
  font-weight: 900;
}

.featured-artist-live-copy .btn {
  margin-top: 8px;
}

/* ---------------- FEATURED BROADCAST / GENERIC CARDS ---------------- */

.featured-broadcast {
  max-width: 1200px;
  margin: 40px auto 78px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: center;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(0,118,206,0.16), rgba(255,255,255,0.04));
  border: 1px solid rgba(0,118,206,0.26);
  box-shadow: 0 28px 76px rgba(0,0,0,0.42);
}

.featured-image img {
  width: 100%;
  display: block;
  border-radius: 26px;
  box-shadow: 0 0 38px rgba(0,118,206,0.24);
}

.featured-copy {
  padding: 18px;
}

.section {
  max-width: 1000px;
  margin: auto;
  padding: 78px 20px;
  text-align: center;
}

.cards {
  max-width: 1200px;
  margin: auto;
  padding: 20px 20px 76px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.card,
.artist-card {
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(0,118,206,0.16), rgba(255,255,255,0.04));
  border: 1px solid rgba(0,118,206,0.24);
  box-shadow: 0 22px 62px rgba(0,0,0,0.34);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card {
  min-height: 210px;
  padding: 32px;
  border-top: 3px solid #0076ce;
}

.card:hover,
.artist-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,118,206,0.65);
  box-shadow: 0 0 42px rgba(0,118,206,0.22);
}

.card h3 {
  margin-bottom: 14px;
  color: #8dc9ff;
  font-size: 1.35rem;
}

.card p {
  color: #c9c9c9;
}

/* ---------------- ARTISTS HOMEPAGE SECTION ---------------- */

#artists {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: radial-gradient(circle at center, rgba(0,118,206,0.12), transparent 60%);
}

#artists .btn {
  margin-top: 24px;
}

.artist-links-section {
  padding: 60px 20px;
  text-align: center;
  background: #050505;
}

.artist-links-section h2 {
  color: #8dc9ff;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}

.artist-intro {
  max-width: 720px;
  margin: 0 auto 30px;
  color: #cccccc;
}

.artist-grid {
  max-width: 1300px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.artist-card {
  height: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.artist-card h3 {
  color: #ffffff;
  font-size: 1.55rem;
}

.artist-card p {
  color: #cccccc;
}

.artist-image {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto 18px;
  border-radius: 18px;
  box-shadow: 0 0 22px rgba(0,163,255,0.20);
  animation: artistGlow 4s ease-in-out infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.artist-card a:hover .artist-image {
  transform: scale(1.03);
  box-shadow: 0 0 35px rgba(0,170,255,0.42);
}

@keyframes artistGlow {
  0%, 100% { box-shadow: 0 0 18px rgba(0,163,255,0.18); }
  50% { box-shadow: 0 0 35px rgba(0,163,255,0.34); }
}

.artist-badge {
  margin-bottom: 10px;
  color: #8dc9ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.artist-description {
  max-width: 520px;
  margin: 10px auto 16px;
  color: #dddddd;
}

.artist-added {
  margin-bottom: 16px;
  color: #888888;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
}

.artist-card .artist-buttons {
  margin-top: auto;
}

.artist-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.artist-buttons a {
  padding: 10px 16px;
  border-radius: 999px;
  background: #00a3ff;
  color: #000000;
  text-decoration: none;
  font-weight: 900;
  transition: background 0.25s ease, transform 0.25s ease;
}

.artist-buttons a:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.artist-cta {
  max-width: 720px;
  margin: 60px auto 0;
  text-align: center;
}

.artist-cta h3 {
  color: #ffffff;
  font-size: 1.75rem;
}

.artist-cta p {
  margin-bottom: 24px;
  color: #cccccc;
}

/* ---------------- ARTIST SPOTLIGHT PAGES ---------------- */

.artist-page-hero {
  min-height: 85vh;
  padding: 120px 20px 70px;
  background: radial-gradient(circle at top, rgba(0,163,255,0.18), #050505 55%);
  color: #ffffff;
  text-align: center;
}

.artist-page-image {
  width: 100%;
  max-width: 340px;
  display: block;
  margin: 0 auto 24px;
  border-radius: 22px;
  box-shadow: 0 0 35px rgba(0,163,255,0.35);
  animation: artistGlow 4s ease-in-out infinite;
}

.artist-page-hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin: 10px 0;
}

.artist-page-subtitle {
  max-width: 650px;
  margin: 0 auto 15px;
  color: #dddddd;
  font-size: 1.15rem;
  line-height: 1.65;
}

.artist-page-section {
  padding: 70px 20px;
  text-align: center;
  background: #090909;
  color: #ffffff;
}

.artist-page-section h2 {
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.artist-page-section p {
  max-width: 720px;
  margin: 0 auto 30px;
  color: #cccccc;
  line-height: 1.75;
}

.live-energy {
  margin-top: 14px;
  color: #8ecfff;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.share-box,
.artist-page-hero .share-box {
  display: block;
  width: min(420px, 92vw);
  margin: 28px auto 0;
  padding: 22px 20px 18px;
  text-align: center;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0,170,255,0.14), rgba(0,0,0,0.45));
  border: 1px solid rgba(0,170,255,0.32);
  box-shadow: 0 0 30px rgba(0,170,255,0.16), inset 0 0 18px rgba(255,255,255,0.03);
}

.artist-page-hero .share-box button,
.signal-boost-btn {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.28);
  background: linear-gradient(135deg, #00aaff, #005eff);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(0,170,255,0.52), inset 0 0 8px rgba(255,255,255,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.artist-page-hero .share-box button:hover,
.signal-boost-btn:hover {
  transform: translateY(-2px) scale(1.03);
  background: linear-gradient(135deg, #58c9ff, #0076ce);
  box-shadow: 0 0 32px rgba(0,170,255,0.85), inset 0 0 10px rgba(255,255,255,0.2);
}

.share-box p,
.artist-page-hero .share-box p {
  margin-top: 11px;
  color: #8dc9ff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.about-jam-page {
  max-width: 900px;
  margin: 80px auto;
  padding: 32px;
  text-align: center;
}

.about-jam-page h1 {
  margin-bottom: 24px;
  font-size: 3rem;
}

.about-jam-page p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.1rem;
}

/* ---------------- FOOTER ---------------- */

footer {
  margin-top: 60px;
  padding: 34px 20px;
  text-align: center;
  color: #777777;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a,
.social-links a {
  color: #8dc9ff;
  text-decoration: none;
  font-weight: 800;
}

.footer-links a:hover,
.social-links a:hover {
  color: #ffffff;
  text-shadow: 0 0 14px rgba(0,118,206,0.7);
}

.social-links {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-station {
  margin-top: 18px;
  color: #777777;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

/* ---------------- MOBILE ---------------- */

@media (max-width: 800px) {
  .top-nav {
    gap: 10px;
    padding: 11px 8px;
    flex-wrap: wrap;
  }

  .top-nav a {
    font-size: 0.68rem;
  }

  .status-strip {
    top: 42px;
    gap: 8px;
    padding: 6px 8px;
    flex-wrap: wrap;
    font-size: 0.54rem;
  }

  .hero,
  .hero-upgraded {
    min-height: auto;
    padding: 108px 12px 34px;
  }

  .hero-content {
    width: 100%;
    padding: 26px 16px 30px;
    border-radius: 24px;
  }

  .site-logo {
    max-width: 132px;
    margin-bottom: 14px;
  }

  .tagline {
    font-size: 0.76rem;
    letter-spacing: 0.12em;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.8rem);
    line-height: 0.98;
  }

  .intro,
  .hero-subtitle {
    font-size: 0.96rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
    gap: 11px;
  }

  .btn {
    width: 100%;
    max-width: 270px;
    padding: 12px 20px;
  }

  .hero-eq {
    height: 110px;
    opacity: 0.10;
  }

  .hero-eq span {
    width: 9px;
  }

  .jam-originals,
  .now-playing-section,
  .schedule-section,
  .top-shared-section,
  .featured-artist-live-section {
    margin: 24px auto 54px;
    padding: 0 14px;
  }

  .original-card,
  .now-playing-card,
  .schedule-card,
  .top-shared-card,
  .featured-artist-live-card {
    padding: 26px 16px;
    border-radius: 24px;
  }

  .current-rotation-player {
    padding: 14px;
    border-radius: 18px;
  }

  .track-item {
    padding: 20px 14px;
  }

  .current-rotation-artwork {
    width: 122px;
    height: 122px;
  }

  .track-like {
    width: 100%;
  }

  #originalTrackCount {
    display: block;
    margin: 12px 0 0;
  }

  .broadcast-tags span,
  .artist-meta span {
    font-size: 0.66rem;
    padding: 8px 11px;
  }

  .schedule-grid,
  .cards,
  .artist-grid,
  .top-shared-grid {
    grid-template-columns: 1fr;
  }

  .show-block {
    text-align: center;
  }

  .featured-artist-live-content,
  .featured-broadcast {
    display: block;
    text-align: center;
  }

  .featured-artist-live-image {
    max-width: 220px;
    margin: 0 auto 22px;
    border-radius: 22px;
  }

  .featured-broadcast {
    margin: 30px 12px 58px;
    padding: 24px 16px;
  }

  .featured-copy {
    padding: 20px 0 0;
  }

  .artist-links-section {
    padding: 48px 14px;
  }

  .artist-card {
    padding: 22px 16px;
  }

  .artist-image {
    max-width: 240px;
  }

  .artist-page-hero {
    min-height: auto;
    padding: 108px 16px 54px;
  }

  .artist-page-image {
    max-width: 280px;
  }

  .artist-page-hero h1 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .artist-page-subtitle {
    font-size: 1rem;
  }

  .share-box,
  .artist-page-hero .share-box {
    width: 100%;
    padding: 18px 14px 16px;
  }

  .artist-page-hero .share-box button,
  .signal-boost-btn {
    width: 100%;
    min-width: 0;
    max-width: 280px;
    padding: 14px 20px;
    font-size: 0.9rem;
  }

  footer {
    padding: 28px 14px;
    font-size: 0.84rem;
  }
}
