
</html>
💅 CSS FILE EXAMPLE (style.css):
/* ==== Base Styles ==== */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #000000;
  color: #ffffff;
}

html, body {
  background-color: #000000;
  color: #ffffff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.library-title-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.1rem 1rem 0.35rem;
}

.library-title-image {
  width: min(84vw, 430px);
  max-height: 150px;
  object-fit: contain;
  display: block;
}

.library-brand-tagline {
  width: min(100% - 2rem, 520px);
  margin: 0 auto 0.9rem;
  text-align: center;
}

.library-brand-kicker {
  margin: 0 0 0.15rem;
  color: #f5d485;
  font-family: 'Cinzel', serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.library-brand-lead {
  margin: 0;
  font-family: 'Great Vibes', cursive;
  color: #c8a66a;
  font-size: clamp(2.4rem, 8vw, 4.2rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: none;
  letter-spacing: 0;
  text-shadow: 0 0 14px rgba(0, 209, 178, 0.18);
}

.library-brand-copy {
  margin: 0.45rem auto 0;
  color: #b8cbc7;
  font-size: 0.92rem;
  line-height: 1.45;
}

.music-player {
  width: min(100% - 2rem, 520px);
  margin: 0 auto 0.9rem;
  text-align: center;
}

.hero-box {
  width: 90%;
  max-width: 800px;
  height: auto;
  margin: 2rem auto 1rem;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(7, 7, 7, 0.15); /* soft teal glow */
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.6rem;
  font-style: italic;
}

.hero-text {
  text-align: center;
  margin: 0 auto;
  padding: 1rem;
}

.tagline {
  font-style: italic;
  font-size: 1.6rem;
  color: #aee0d6;
  text-shadow: 0 0 5px #aee0d6;
}



/* ==== Library Section ==== */
.library {
  padding: 1.35rem 2rem 4rem;
  text-align: center;
}

.library h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.library-feature {
  width: min(100%, 760px);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(92px, 132px) minmax(0, 1fr);
  gap: 1.1rem;
  align-items: center;
  margin: 0 auto 2rem;
  padding: 1rem;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(0, 209, 178, 0.12), rgba(255, 215, 0, 0.07)),
    #101414;
  border: 1px solid rgba(245, 212, 133, 0.28);
  border-radius: 12px;
  box-shadow:
    0 0 24px rgba(0, 209, 178, 0.12),
    0 14px 28px rgba(0, 0, 0, 0.34);
}

.library-feature-cover {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
}

.library-feature-content {
  min-width: 0;
}

.library-feature-eyebrow {
  margin: 0 0 0.3rem;
  color: #f5d485;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.library-feature h3 {
  margin: 0;
  color: #ffffff;
  font-family: 'Cinzel', serif;
  font-size: clamp(1.2rem, 4.8vw, 1.75rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
  text-shadow: 0 0 12px rgba(0, 209, 178, 0.22);
}

.library-feature-meta {
  margin: 0.4rem 0 0;
  color: #aee0d6;
  font-size: 0.92rem;
  font-weight: 700;
}

.library-feature-description {
  margin: 0.55rem 0 0;
  color: #d7d7d7;
  font-size: 0.92rem;
  line-height: 1.45;
}

.library-feature-action {
  display: inline-block;
  max-width: 100%;
  box-sizing: border-box;
  margin-top: 0.85rem;
  padding: 0.65rem 1rem;
  color: #0d0d0d;
  background: linear-gradient(180deg, #ffe18d, #d4a73f);
  border: 1px solid rgba(255, 229, 153, 0.55);
  border-radius: 8px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 0 14px rgba(245, 212, 133, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.library-feature-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(245, 212, 133, 0.28);
}

body.library-overlay-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

.library-book-overlay[hidden] {
  display: none;
}

.library-book-overlay {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: flex;
  justify-content: center;
  align-items: stretch;
  box-sizing: border-box;
  padding: env(safe-area-inset-top, 0px) 0 env(safe-area-inset-bottom, 0px);
  background:
    radial-gradient(circle at top, rgba(0, 209, 178, 0.14), transparent 42%),
    rgba(0, 0, 0, 0.95);
  overflow-y: auto;
}

.library-book-panel {
  width: min(100%, 720px);
  min-height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(16, 24, 24, 0.98), rgba(5, 5, 5, 0.99)),
    #080808;
  border-left: 1px solid rgba(245, 212, 133, 0.16);
  border-right: 1px solid rgba(245, 212, 133, 0.16);
  box-shadow: 0 0 34px rgba(0, 0, 0, 0.65);
}

.library-overlay-close {
  position: sticky;
  top: 0;
  z-index: 2;
  align-self: flex-start;
  margin: 0.8rem 0 0 0.8rem;
  padding: 0.48rem 0.78rem;
  color: #f5d485;
  background: rgba(8, 8, 8, 0.86);
  border: 1px solid rgba(245, 212, 133, 0.34);
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(0, 209, 178, 0.12);
}

.library-overlay-scroll {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
  padding: 0.75rem 1.05rem calc(7rem + env(safe-area-inset-bottom, 0px));
}

.library-overlay-hero {
  width: min(72vw, 286px);
  padding: 0.48rem;
  border-radius: 18px;
  background: rgba(20, 20, 20, 0.95);
  box-shadow:
    0 0 18px rgba(0, 0, 0, 0.65),
    inset 0 0 0 1px rgba(245, 212, 133, 0.12);
}

.library-overlay-cover {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.62),
    0 0 28px rgba(245, 212, 133, 0.13);
}

.library-overlay-content {
  width: min(100%, 560px);
  min-width: 0;
  text-align: left;
}

.library-overlay-badges,
.library-overlay-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
  align-items: center;
  justify-content: center;
}

.library-overlay-status,
.library-overlay-badge,
.library-overlay-stat {
  display: inline-flex;
  align-items: center;
  min-height: 1.52rem;
  box-sizing: border-box;
  padding: 0.23rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 212, 133, 0.14);
  background: rgba(255, 255, 255, 0.035);
  color: #aee0d6;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
}

.library-overlay-status {
  color: #0d0d0d;
  background: linear-gradient(180deg, rgba(245, 212, 133, 0.92), rgba(189, 143, 52, 0.92));
  border-color: rgba(255, 231, 165, 0.42);
  text-transform: uppercase;
}

.library-overlay-content h2 {
  margin: 0.72rem auto 0;
  color: #ffffff;
  font-family: 'Cinzel', serif;
  font-size: clamp(1.58rem, 7vw, 2.45rem);
  line-height: 1.1;
  text-align: center;
  overflow-wrap: anywhere;
  text-shadow:
    0 0 14px rgba(245, 212, 133, 0.2),
    0 0 18px rgba(0, 209, 178, 0.08);
}

.library-overlay-subtitle {
  max-width: 34rem;
  margin: 0.52rem auto 0;
  color: #aee0d6;
  font-size: 0.96rem;
  line-height: 1.42;
  text-align: center;
  font-style: italic;
  text-wrap: balance;
}

.library-overlay-stats {
  margin-top: 0.8rem;
}

.library-overlay-stat {
  color: #f5d485;
}

.library-overlay-description {
  max-width: 42rem;
  margin: 1.05rem auto 0;
  color: #dedbd0;
  font-size: 0.96rem;
  line-height: 1.6;
}

.library-overlay-progress {
  max-width: 42rem;
  margin: 1.35rem auto 0;
  padding: 0.9rem;
  border: 1px solid rgba(0, 209, 178, 0.24);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(0, 209, 178, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(0, 209, 178, 0.045);
  box-shadow: 0 0 16px rgba(0, 209, 178, 0.08);
}

.library-overlay-section-label {
  margin: 0;
  color: #f5d485;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.library-overlay-progress-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.55rem;
  color: #eee8d8;
  font-size: 0.88rem;
  font-weight: 700;
}

.library-overlay-progress-track {
  height: 7px;
  margin-top: 0.65rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.library-overlay-progress-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #00d1b2, #f5d485);
  box-shadow: 0 0 12px rgba(0, 209, 178, 0.32);
}

.library-overlay-warnings {
  max-width: 42rem;
  margin: 1.35rem auto 0;
  color: #d7d2c3;
  font-size: 0.9rem;
  line-height: 1.45;
  border: 1px solid rgba(245, 212, 133, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  padding: 0.8rem;
}

.library-overlay-warnings summary {
  color: #f5d485;
  cursor: pointer;
  font-weight: 800;
}

.library-overlay-warnings p {
  margin: 0.65rem 0 0;
}

.library-overlay-related {
  max-width: 42rem;
  margin: 1.35rem auto 0;
}

.library-overlay-related-strip {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
}

.library-overlay-related-cover {
  flex: 0 0 auto;
  width: 54px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.42);
}

.library-overlay-action {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-top: 1.1rem;
  padding: 0.9rem 1rem;
  color: #0d0d0d;
  background: linear-gradient(180deg, #ffe18d, #d4a73f);
  border: 1px solid rgba(255, 229, 153, 0.6);
  border-radius: 10px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 0 18px rgba(245, 212, 133, 0.22);
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}

.book-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 1.5rem;
  min-width: 0;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.book-card:hover {
  transform: translateY(-5px);
}

.book-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.book-card {
  background-color: #121212; /* slightly softer black */
  border-radius: 10px;
  padding: 1.5rem;
  min-width: 0;
  text-align: center;
  box-shadow: 0 0 15px rgba(250, 249, 249, 0.05);
  transition: transform 0.3s ease;
  color: #ddd; /* soft text color for description */
}

.book-status {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
}

.book-status.ongoing {
  color: #ffffff; /* goldish-yellow */
}

.book-status.finished {
  color: #ffffff; /* soft teal */
}


.book-card h3 {
  font-size: 1.25rem;
  color: #f0f0f0; /* brighter title */
  font-family: 'Cinzel', serif;
  margin-bottom: 0.5rem;
  overflow-wrap: anywhere;
}

.book-desc {
  font-size: 0.95rem;
  color: #ccc; /* readable but not harsh */
  margin: 0.5rem 0 1rem;
  line-height: 1.5;
}


.read-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.2rem;
  background-color: #ffd700;
  color: #0d0d0d;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.book-card details {
  margin-top: 0.85rem !important;
  color: #cfcfcf !important;
  font-size: 0.82rem !important;
  line-height: 1.35;
}

.book-card summary {
  cursor: pointer;
  color: #f5d485;
  list-style-position: inside;
}

.book-card .book-desc,
.book-card .read-btn,
.book-card details {
  display: none !important;
}
 
.read-btn:hover {
  background-color: #6788f7;
}


.read-btn.coming-soon {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* ==== Book Titiles ==== */

.book-card:nth-of-type(1) h3 {
  color: #ffffff;
  text-shadow:
    0 0 5px #ff9d9d,
    0 0 10px #ff5e5e,
    0 0 20px #cca12c;
}

.book-card:nth-of-type(2) h3 {
  color: #000000;
  text-shadow:
    0 0 5px #c0f0ff,
    0 0 10px #87d6ff,
    0 0 20px #3ac7ff;
}

.book-card:nth-of-type(3) h3 {
  color: #000000;
  text-shadow:
    0 0 5px #aefcfb,
    0 0 10px #72e7e4,
    0 0 20px #ffd700;
}

.book-card:nth-of-type(4) h3 {
  color: #ffffff;
  text-shadow:
    0 0 5px #ff8dad,
    0 0 10px #ff4d6d,
    0 0 20px #ff0739;
}

/* ==== Footer ==== */
footer {
  padding: 2rem;
  text-align: center;
  background-color: #111;
  font-size: 0.9rem;
  color: #888;
}

/* ==== Navigation Bar (Sticky to bottom, scrolls with content) ==== */
.top-nav {
  width: 100vw; /* Full viewport width to avoid boxed-in look */
  background-color: #0d0d0d;
  box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  position: sticky;
  bottom: 52px;
  z-index: 999;
}

.top-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 1.5rem;
}

.top-nav li {
  margin: 0;
}

.top-nav a {
  color: #60b1fc;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: bold;
  transition: color 0.3s ease;
}

.top-nav a:hover {
  color: #f5c400;
}

/* 📱 Mobile Fix */
@media (max-width: 600px) {
  .top-nav ul {
    flex-wrap: nowrap;            /* 👈 Force it to stay in one row */
    overflow-x: auto;             /* 👈 Scrolls if needed */
    justify-content: flex-start;  /* 👈 Aligns to the left initially */
    gap: 0.5rem;                  /* 👈 Smaller spacing between links */
    padding: 0.5rem 1rem;
  }

  .top-nav a {
    font-size: 0.85rem;           /* 👈 Make the text smaller on mobile */
    white-space: nowrap;          /* 👈 Prevents links from breaking */
  }
}



/* ===== MOBILE TWEAKS ===== */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .library-title-header {
    padding: 0.85rem 0.75rem 0.2rem;
  }

  .library-title-image {
    width: min(88vw, 340px);
    max-height: 118px;
  }

  .library-brand-tagline {
    width: min(100% - 1.5rem, 360px);
    margin-bottom: 0.75rem;
  }

  .library-brand-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .library-brand-copy {
    font-size: 0.84rem;
    line-height: 1.38;
  }

  .library {
    padding: 1.1rem 0.75rem 1.75rem;
  }

  .library-feature {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 0.85rem;
    margin-bottom: 1.4rem;
    padding: 0.8rem;
    border-radius: 10px;
  }

  .library-feature-eyebrow {
    font-size: 0.66rem;
  }

  .library-feature h3 {
    font-size: 1.08rem;
  }

  .library-feature-meta {
    font-size: 0.78rem;
  }

  .library-feature-description {
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .library-feature-action {
    width: 100%;
    margin-top: 0.65rem;
    padding: 0.55rem 0.45rem;
    font-size: 0.8rem;
  }

  .library-overlay-scroll {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .library-overlay-hero {
    width: min(58vw, 210px);
  }

  .library-overlay-description {
    font-size: 0.92rem;
  }

  .book-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    padding: 0;
  }

  .book-card {
    padding: 0.75rem;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(245, 212, 133, 0.08);
  }

  .book-card img {
    border-radius: 6px;
    margin-bottom: 0.65rem;
  }

  .book-status {
    margin: 0.1rem 0 0.25rem;
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .book-card h3 {
    font-size: 0.92rem;
    line-height: 1.18;
    margin: 0.25rem 0 0.4rem;
  }

  .book-desc {
    font-size: 0.74rem;
    line-height: 1.35;
    margin: 0.35rem 0 0.65rem;
  }

  .read-btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-top: 0.6rem;
    padding: 0.52rem 0.4rem;
    font-size: 0.78rem;
    line-height: 1.15;
    border-radius: 6px;
  }

  .book-card details {
    margin-top: 0.65rem !important;
    font-size: 0.7rem !important;
    line-height: 1.3;
  }

  .book-card details p {
    margin-top: 0.35rem !important;
  }

  footer {
    font-size: 0.8rem;
    padding: 1.5rem;
  }
}

@media (max-width: 340px) {
  .library-feature {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .library-overlay-scroll {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .library-overlay-hero {
    width: min(62vw, 188px);
  }

  .book-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .top-nav {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .top-nav ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 1rem;
    padding: 0.5rem 1rem;
  }

  .top-nav li {
    flex: 0 0 auto; /* ensures no squish */
  }

  .top-nav::-webkit-scrollbar {
    height: 8px;
  }

  .top-nav::-webkit-scrollbar-thumb {
    background-color: #00d1b2;
    border-radius: 10px;
    border: 2px solid #000;
  }

  .top-nav::-webkit-scrollbar-track {
    background: transparent;
  }

  .top-nav a {
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .top-nav::-webkit-scrollbar-thumb {
  background: radial-gradient(circle, #00d1b2 30%, #008080 90%);
  border-radius: 50px;
}

}

#toggle-music {
  display: block;
  margin: 2rem auto; /* 👈 this centers it horizontally */
  padding: 0.6rem 1.4rem;
  background: linear-gradient(145deg, #1e1e1e, #0d0d0d);
  color: #00d1b2;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: bold;
  border: 2px solid #00d1b2;
  border-radius: 12px;
  cursor: pointer;
  text-shadow: 0 0 4px #00d1b2;
  box-shadow: 0 0 12px rgba(0, 209, 178, 0.3);
  transition: all 0.3s ease-in-out;
  text-align: center;
}

#toggle-music:hover {
  background-color: #00d1b2;
  color: #0d0d0d;
  box-shadow: 0 0 20px #00d1b2;
  text-shadow: none;
  transform: scale(1.05);
}


#toggle-music:hover {
  background-color: #00d1b2;
  color: #0d0d0d;
  box-shadow: 0 0 20px #00d1b2;
  text-shadow: none;
  transform: scale(1.05);
}
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 10px #00d1b2;
  }
  50% {
    box-shadow: 0 0 20px #00d1b2;
  }
  100% {
    box-shadow: 0 0 10px #00d1b2;
  }
}

#toggle-music.playing {
  animation: pulse-glow 2s infinite;
}

/* === Music Player Controls === */

#toggle-music {
  display: inline-block;
  margin: 2rem auto;
  padding: 0.6rem 1.4rem;
  background: linear-gradient(145deg, #1e1e1e, #0d0d0d);
  color: #00d1b2;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: bold;
  border: 2px solid #00d1b2;
  border-radius: 12px;
  cursor: pointer;
  text-shadow: 0 0 4px #00d1b2;
  box-shadow: 0 0 12px rgba(0, 209, 178, 0.3);
  transition: all 0.3s ease-in-out;
  text-align: center;
}

#toggle-music:hover {
  background-color: #00d1b2;
  color: #0d0d0d;
  box-shadow: 0 0 20px #00d1b2;
  text-shadow: none;
  transform: scale(1.05);
}

#toggle-music:active {
  background-color: #00d1b2;
  color: #ffffff;
  box-shadow: 0 0 20px #00d1b2;
  text-shadow: none;
  transform: scale(0.98);
}

@keyframes pulse-glow {
  0%   { box-shadow: 0 0 10px #00d1b2; }
  50%  { box-shadow: 0 0 20px #00d1b2; }
  100% { box-shadow: 0 0 10px #00d1b2; }
}

#toggle-music.playing {
  animation: pulse-glow 2s infinite;
}

/* Layout for prev / play / next */
.music-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin: 0.75rem auto 0;
}

.music-controls button {
  border-radius: 999px;
  padding: 0.4rem 0.6rem;
  border: none;
  cursor: pointer;
  background: #111;
  color: #e0e0e0;
  font-size: 0.9rem;
  box-shadow: 0 0 10px rgba(0, 255, 191, 0.3);
  margin: 0;
}

#music-title {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  opacity: 0.85;
  text-align: center;
}


/* === MUSIC PLAYER (CLEAN 3-ROW LAYOUT) === */

/* Row 1: Play Button centered */
.music-play-wrapper {
  text-align: center;
  margin-top: 1.5rem;
}

#toggle-music {
  display: inline-block;
}

/* Row 2: Track Title (closer gap) */
#music-title {
   margin-top: 0.15rem;      /* small gap below Play button */
  margin-bottom: 1.4rem;   /* small gap above skip buttons */
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Row 3: Skip Buttons centered */
.music-skip-wrapper {
  display: flex;
  justify-content: center;
  gap: 1.2rem;             /* tighten spacing between buttons */
}

.music-skip-wrapper button {
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  border: none;
  cursor: pointer;
  background: #111;
  color: #e0e0e0;
  font-size: 0.9rem;
  box-shadow: 0 0 10px rgba(0, 255, 191, 0.35);
}
