* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, #123a63 0%, #081f38 60%, #061523 100%);
  min-height: 100vh;
}
.page-shell-outer {
  display: flex;
  justify-content: center;
  padding: 1.2rem;
}
.page-shell {
  width: min(1200px, 100%);
  border: 1px solid rgba(4, 21, 37, 0.25);
  border-radius: 1.2rem;
  background: rgba(9, 28, 48, 0.52);
  backdrop-filter: blur(5px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-height: calc(100vh - 2.4rem);
}
.top-row {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem 1.2rem 0;
}
.left-top { width: 50%; display: flex; flex-direction: column; gap: 0.9rem; }
.hero-block {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 1.2rem 1rem 1.4rem;
  background: radial-gradient(circle at top, rgba(255, 231, 174, 0.18), rgba(18, 58, 99, 0));
}
.hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,222,154,0.5) 0, rgba(255,222,154,0) 45%),
    radial-gradient(circle, rgba(255,255,255,0.28) 0, rgba(255,255,255,0) 45%),
    radial-gradient(circle, rgba(255,199,90,0.3) 0, rgba(255,199,90,0) 40%);
  background-position: 10% 20%, 70% 5%, 40% 80%;
  background-size: 220px 220px, 180px 180px, 260px 260px;
  pointer-events: none;
  opacity: 0.55;
}
.hero-block h1 {
  position: relative;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 6rem;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #fff1c5 0%, #f7c86c 40%, #d56c32 80%);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 4px 20px rgba(0,0,0,0.35);
  margin-bottom: 0.3rem;
}
.hero-block h2 {
  position: relative;
  font-size: 1.8rem;
  font-style: italic;
  background: linear-gradient(135deg, #fff1c5 0%, #f7c86c 35%, #f1aa58 80%);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 3px 12px rgba(0,0,0,0.12);
  margin-bottom: 0.5rem;
}
.hero-block .sub { position: relative; color: #dfeaff; margin-bottom: 0.35rem; }
.hero-block .credit { position: relative; color: #fff; font-size: 0.8rem; }
.action-buttons {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.nav-btn {
  border: none;
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
  font-size: 0.8rem;
}
.nav-btn.primary {
  background: radial-gradient(circle, #ffe59a 0%, #f3b447 50%, #ffe59a 100%);
  color: #0f2544;
  box-shadow: 0 0 15px rgba(244, 187, 85, 0.35);
}
.nav-btn.gold {
  background: linear-gradient(135deg, #ffe8a3 0%, #f6c264 35%, #fff0cf 100%);
  color: #091823;
}
.nav-btn:hover, .nav-btn.active {
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(0,0,0,0.25);
}
/* playlist */
.songs-left {
  background: rgba(11, 30, 53, 0.35);
  border: 1px solid rgba(255, 249, 240, 0.18);
  border-radius: 1rem;
  padding: 0.8rem 0.8rem 1rem;
}
.now-playing {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.8rem;
  padding: 0.45rem 0.6rem 0.55rem;
  margin-bottom: 0.5rem;
}
.np-label {
  font-size: 0.6rem;
  letter-spacing: 0.07em;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 0.2rem;
}
.np-title {
  margin: 0;
  color: #ffffff;
  font-weight: 600;
}
.np-sub {
  margin: 0.1rem 0 0.3rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
}
.np-controls button {
  border: none;
  background: rgba(255,255,255,0.4);
  color: #071120;
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  font-size: 0.7rem;
}
.songs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.4rem;
}
.songs-header h3 {
  margin: 0;
  color: #fff;
}
.song-pill {
  background: #fff;
  color: #0f2544;
  border: 1px solid rgba(246, 193, 97, 0.5);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
}
.songs-note {
  margin: 0.45rem 0 0.6rem;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
}
.song-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.song-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  background: rgba(6, 20, 37, 0.4);
  border-radius: 0.6rem;
  padding: 0.55rem 0.6rem;
}
.song-list h4 {
  margin: 0;
  color: #fff;
  font-size: 0.88rem;
}
.song-list p {
  margin: 0.2rem 0 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.68rem;
}
.song-actions {
  display: flex;
  gap: 0.4rem;
}
.song-btn {
  background: linear-gradient(135deg, #ffe8a3 0%, #f6c264 35%, #fff0cf 100%);
  border: 1px solid rgba(246, 193, 97, 0.8);
  color: #0f2544;
  border-radius: 999px;
  height: 30px;
  min-width: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.back-top {
  margin-top: 0.7rem;
  background: rgba(231, 192, 102, 0.85);
  border: none;
  border-radius: 999px;
  color: #0f2544;
  padding: 0.35rem 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

/* right poster */
.right-top {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.right-top img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}

/* centered panels */
.content-row {
  display: flex;
  justify-content: center;
  padding: 0 1.2rem 1.2rem;
}
.panel {
  display: none;
  width: min(900px, 100%);
  background: rgba(247, 249, 250, 0.98);
  border: 1px solid rgba(13, 49, 88, 0.12);
  border-radius: 1rem;
  padding: 1rem 1.1rem 1.2rem;
  box-shadow: 0 10px 35px rgba(0,0,0,0.18);
}
.panel.visible {
  display: block;
}
/* Hide the download warning text by default */
.download-note {
  display: none;        /* keeps it hidden for everyone unless JS activates it */
  font-size: 0.8rem;    /* small text */
  margin-top: 0.25rem;  /* gentle spacing below headings/buttons */
  opacity: 0.8;         /* slightly muted tone */
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.panel-header h3 {
  margin: 0;
  color: #14314e;
}
.download-btn {
  background: #fff;
  border: 1px solid rgba(246, 193, 97, 0.5);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  text-decoration: none;
  color: #12263e;
  font-size: 0.75rem;
  font-weight: 600;
}
.panel-body {
  margin-top: 0.7rem;
  color: #24394f;
  line-height: 1.5;
}

/* responsive */
@media (max-width: 1080px) {
  .top-row { flex-direction: column; }
  .left-top, .right-top { width: 100%; }
  .content-row { padding: 0 0.6rem 1.1rem; }
  .panel { width: 100%; }
  .song-list li { flex-direction: column; align-items: flex-start; }
  .song-actions { margin-top: 0.45rem; }
}


body.panel-open .top-row {
  max-height: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Mobile title safety */
@media (max-width: 430px) {
  .hero-block h1 {
    font-size: 2.8rem !important;
    letter-spacing: 0.04em !important;
  }
  .hero-block h2 {
    font-size: 1.2rem !important;
  }
}

.song-btn.gold, .play.gold { cursor: pointer; }


/* Force all Download buttons to be white with gold border */
.song-btn.download, .song-btn.white, .download.white {
  background: white !important;
  color: #0a2040 !important;
  border: 2px solid #d4af37 !important;
  box-shadow: none !important;
}


/* Unify all download buttons site-wide to white with gold border */
button.download, .download-btn, .dl-btn, .download.white, .song-btn.download, a.download, .btn.download {
  background: #ffffff !important;
  color: #0a2040 !important;
  border: 2px solid #d4af37 !important;
  box-shadow: none !important;
}


.hero-block .small-disclaimer {
  font-size: 0.8rem;
  opacity: 0.9;
  margin-top: 2px;
}


.site-footer p {
  margin: 2px 0;
}

.now-playing {
  margin-bottom: 8px;
}

.now-playing .np-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffe8a3;
  opacity: 0.85;
}

.now-playing .np-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffe8a3;
}

/* Footer styling */
.site-footer {
  margin-top: 32px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.9;
  color: #ffe8a3;
}

.site-footer p {
  margin: 2px 0;
}
/* CONTACT FORM STYLING */
.contact-form {
  margin-top: 0.8rem;
}

.contact-form label {
  font-size: 0.85rem;
  color: #14314e;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 380px;
  padding: 0.4rem 0.5rem;
  margin-top: 0.2rem;
  border-radius: 0.4rem;
  border: 1px solid rgba(13, 49, 88, 0.25);
  font-family: inherit;
  font-size: 0.85rem;
}

.contact-submit {
  margin-top: 0.6rem;
  background: #ffffff;
  border-radius: 999px;
  border: 2px solid #d4af37;
  padding: 0.45rem 1rem;
  font-weight: 600;
  font-size: 0.8rem;
  color: #0a2040;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.contact-submit:hover {
  background: #ffe8a3;
  color: #0a2040;
}

