/* =====================================================
   CAROLYN LUGER VERMES
   PREMIUM MUSIC PAGE CLEAN CSS
===================================================== */

/* ===========================
   ROOT VARIABLES
=========================== */

:root {
  --spotify: #c6a15b;
  --black: #121212;
  --dark: #181818;
  --light: #282828;
  --text: #ffffff;
  --gray: #b3b3b3;
  --gold: #d4af37;
}

/* ===========================
   MUSIC PAGE RESET ONLY
   (Footer Safe)
=========================== */

.music-page,
.music-page * {
  box-sizing: border-box;
}

/* ===========================
   BODY MUSIC OVERRIDES REMOVED

   DO NOT ADD:
   padding-bottom
   flex layout
   footer positioning

=========================== */

/* ===========================
   HERO SECTION
=========================== */

.music-hero {
  min-height: 69vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 0;

  background: url("Images/1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;

  margin-top: -80px;
  padding-top: 150px;

  position: relative;
}

/* Overlay */
.music-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(66, 60, 60, 0.26);
  z-index: 1;
}

/* Keep content above overlay */
.music-hero .container {
  position: relative;
  z-index: 2;
}

.music-hero .container {
  padding-top: 0;
}

/* ===========================
   ALBUM COVER
=========================== */

.album-cover {
  width: 250px;

  max-width: 100%;

  border-radius: 20px;

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.55);

  position: relative;

  top: 70px;

  animation: floatAlbum 5s ease-in-out infinite;

  transition: 0.4s;
}

.album-cover:hover {
  transform: scale(1.03);
}

@keyframes floatAlbum {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0);
  }
}

/* ===========================
   MUSIC DETAILS
=========================== */

.music-type {
  display: inline-block;

  font-size: 0.8rem;

  color: #f8b809;

  letter-spacing: 2px;

  margin-bottom: 15px;

  font-weight: 700;
}

.artist-name {
  font-family: "Cinzel", serif;

  font-size: 4rem;

  color: white;

  margin-bottom: 15px;
}

.artist-description {
  font-family: "Cormorant Garamond", serif;

  font-size: 2rem;

  font-style: italic;

  font-weight: 400;

  line-height: 1.8;

  letter-spacing: 0.4px;

  color: rgba(255, 255, 255, 0.9);

  max-width: 700px;

  margin-bottom: 30px;

  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

/* ===========================
   DROP TEXT ANIMATION
=========================== */

.artist-name.drop-text span {
  display: inline-block;

  opacity: 0;

  transform: translateY(-120px);

  animation: dropLetter 0.8s ease forwards;
}

@keyframes dropLetter {
  to {
    opacity: 1;

    transform: translateY(0);
  }
}

.artist-name.drop-text span:nth-child(1) {
  animation-delay: 0.05s;
}
.artist-name.drop-text span:nth-child(2) {
  animation-delay: 0.1s;
}
.artist-name.drop-text span:nth-child(3) {
  animation-delay: 0.15s;
}
.artist-name.drop-text span:nth-child(4) {
  animation-delay: 0.2s;
}
.artist-name.drop-text span:nth-child(5) {
  animation-delay: 0.25s;
}
.artist-name.drop-text span:nth-child(6) {
  animation-delay: 0.3s;
}
.artist-name.drop-text span:nth-child(7) {
  animation-delay: 0.35s;
}
.artist-name.drop-text span:nth-child(8) {
  animation-delay: 0.4s;
}
.artist-name.drop-text span:nth-child(9) {
  animation-delay: 0.45s;
}
.artist-name.drop-text span:nth-child(10) {
  animation-delay: 0.5s;
}
.artist-name.drop-text span:nth-child(11) {
  animation-delay: 0.55s;
}
.artist-name.drop-text span:nth-child(12) {
  animation-delay: 0.6s;
}
.artist-name.drop-text span:nth-child(13) {
  animation-delay: 0.65s;
}
.artist-name.drop-text span:nth-child(14) {
  animation-delay: 0.7s;
}
.artist-name.drop-text span:nth-child(15) {
  animation-delay: 0.75s;
}
.artist-name.drop-text span:nth-child(16) {
  animation-delay: 0.8s;
}
.artist-name.drop-text span:nth-child(17) {
  animation-delay: 0.85s;
}
.artist-name.drop-text span:nth-child(18) {
  animation-delay: 0.9s;
}

/* =====================================================
   HERO BUTTONS
===================================================== */

.hero-buttons {
  display: flex;

  gap: 15px;

  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 14px 30px;

  border-radius: 50px;

  font-weight: 600;

  transition: 0.3s;
}

.hero-buttons .btn-success {
  background: #c9a24d;

  border: none;
}

.hero-buttons .btn-success:hover {
  transform: scale(1.05);
}

.hero-buttons .btn-outline-light:hover {
  background: white;

  color: black;
}

/* =====================================================
   PLAYLIST SECTION
===================================================== */

.playlist-section {
  padding: 60px 0;
}

.playlist-header {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 35px;

  flex-wrap: wrap;

  gap: 20px;
}

.playlist-header h2 {
  font-family: "Cinzel", serif;

  font-size: 3rem;

  color: white;

  margin-bottom: 15px;
}

#searchSong {
  max-width: 320px;

  background: #242424;

  border: none;

  color: white;

  border-radius: 50px;

  padding: 12px 20px;
}

#searchSong:focus {
  box-shadow: none;

  background: #2d2d2d;

  color: white;
}

#searchSong::placeholder {
  color: #8f8f8f;
}

/* =====================================================
   SONG LIST
===================================================== */

.playlist {
  max-height: 700px;

  overflow-y: auto;
}

.song {
  display: grid;

  grid-template-columns: 70px 1fr 90px;

  align-items: center;

  padding: 18px 25px;

  cursor: pointer;

  transition: 0.25s ease;

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);

  position: relative;
}

.song:last-child {
  border-bottom: none;
}

.song:hover {
  background: rgba(255, 255, 255, 0.05);
}

.song.active {
  background: rgba(196, 172, 37, 0.12);

  border-left: 4px solid var(--gold);
}

.song-number {
  font-size: 1.5rem;

  font-weight: 700;

  color: #ffffff;

  text-align: center;

  transition: 0.25s;
}

.song:hover .song-number {
  color: var(--gold);
}

.song-info {
  display: flex;

  flex-direction: column;

  justify-content: center;
}

.song-info h3 {
  font-size: 2rem;

  margin: 0;

  font-weight: 600;

  color: white;

  transition: 0.25s;
}

.song-info p {
  margin-top: 4px;

  margin-bottom: 0;

  color: #9e9e9e;

  font-size: 0.9rem;
}

.song-duration {
  text-align: right;

  color: #ffffff;

  font-size: 0.9rem;
}

/* PLAY ICON */

.song::before {
  content: "▶";

  position: absolute;

  left: 25px;

  opacity: 0;

  color: var(--spotify);

  font-size: 0.9rem;

  transition: 0.25s;
}

.song:hover::before {
  opacity: 1;
}

.song:hover .song-number {
  opacity: 0;
}

/* =====================================================
   SCROLLBAR
===================================================== */

.playlist::-webkit-scrollbar {
  width: 10px;
}

.playlist::-webkit-scrollbar-track {
  background: #111;
}

.playlist::-webkit-scrollbar-thumb {
  background: #444;

  border-radius: 20px;
}

.playlist::-webkit-scrollbar-thumb:hover {
  background: var(--spotify);
}

/* =====================================================
   DESCRIPTION TYPING ANIMATION
===================================================== */

.artist-description.typing span {
  display: block;

  overflow: hidden;

  white-space: nowrap;

  width: 0;

  animation: typing2 1s steps(45, end) forwards;
}

.artist-description.typing span:nth-child(1) {
  animation-delay: 1s;
}

.artist-description.typing span:nth-child(2) {
  animation-delay: 2s;
}

@keyframes typing2 {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* Move content slightly down */

.music-hero .col-lg-8 {
  transform: translateY(40px);
}

/* =====================================================
   MUSIC PLAYER
===================================================== */

.music-player {
  position: fixed;

  bottom: 30px;

  left: 50%;

  transform: translateX(-50%);

  width: 90%;

  max-width: 900px;

  background: #181818;

  border-radius: 25px;

  padding: 25px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 30px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);

  transition: 0.45s ease;

  z-index: 9999;
}

/* Hidden State */

.music-player.hidden {
  bottom: -420px;
}

/* Show Player */

.music-player.show {
  bottom: 30px;
}

/* Minimized */

.music-player.minimized {
  width: 380px;

  height: 80px;

  overflow: hidden;

  padding: 15px 20px;
}

/* =====================================================
   PLAYER LEFT
===================================================== */

.player-left {
  width: 30%;

  display: flex;

  align-items: center;

  gap: 18px;
}

.player-left img {
  width: 70px;

  height: 70px;

  object-fit: cover;

  border-radius: 10px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.player-left h5 {
  margin: 0;

  font-size: 25px;

  font-weight: 600;

  color: white;
}

.player-left p {
  margin: 0;

  color: #9e9e9e;

  font-size: 14px;
}

/* =====================================================
   PLAYER CENTER
===================================================== */

.player-center {
  width: 40%;

  display: flex;

  flex-direction: column;

  align-items: center;
}

.controls {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 18px;

  margin-bottom: 10px;
}

.controls button {
  border: none;

  background: none;

  color: white;

  font-size: 22px;

  cursor: pointer;

  transition: 0.25s;
}

.controls button:hover {
  color: var(--spotify);

  transform: scale(1.15);
}

#playPauseBtn {
  width: 55px;

  height: 55px;

  border-radius: 50%;

  background: var(--spotify);

  color: white;

  font-size: 24px;
}

#playPauseBtn:hover {
  transform: scale(1.08);
}

/* =====================================================
   PROGRESS BAR
===================================================== */

#progressBar {
  width: 100%;

  cursor: pointer;

  accent-color: var(--spotify);
}

/* =====================================================
   PLAYER RIGHT
===================================================== */

.player-right {
  width: 20%;

  display: flex;

  justify-content: flex-end;

  align-items: center;

  gap: 12px;
}

.player-right i {
  font-size: 18px;
}

#volume {
  width: 120px;

  accent-color: var(--spotify);

  cursor: pointer;
}

/* =====================================================
   PLAYER ACTION BUTTONS
===================================================== */

.player-actions {
  position: absolute;

  top: 15px;

  right: 20px;

  display: flex;

  gap: 10px;
}

.player-actions button {
  border: none;

  background: none;

  color: white;

  font-size: 18px;

  cursor: pointer;
}

/* =====================================================
   ALBUM SECTION
===================================================== */

.music-albums-section {
  padding: 90px 0;

  background: url("Images/my.png") center center / cover no-repeat;
}

.music-albums-heading {
  text-align: center;

  margin-bottom: 55px;
}

.music-albums-heading span {
  display: block;

  margin-bottom: 10px;

  font-size: 12px;

  letter-spacing: 3px;

  text-transform: uppercase;

  opacity: 0.6;
}

.music-albums-heading h2 {
  font-family: "Cinzel", serif;

  font-size: 3.5rem;

  color: #c9a24d;

  margin-bottom: 15px;
}

.music-albums-heading p {
  max-width: 600px;

  margin: 0 auto;

  font-size: 18px;

  line-height: 1.7;

  opacity: 0.7;
}

/* =====================================================
   ALBUM GRID
===================================================== */

.album-folder-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 30px;

  justify-content: center;
}

.album-folder-card {
  max-width: 380px;

  width: 100%;

  margin: 0 auto;

  padding: 15px;

  text-align: center;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 12px;

  transition: 0.4s ease;
}

.album-folder-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.album-folder-cover {
  width: 100%;

  height: 280px;

  overflow: hidden;

  border-radius: 8px;
}

.album-folder-cover img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.6s ease;
}

.album-folder-card:hover .album-folder-cover img {
  transform: scale(1.06);
}

/* =====================================================
   ALBUM INFORMATION
===================================================== */

.album-folder-info {
  padding: 20px 5px 5px;
}

.album-folder-info h3 {
  margin: 0 0 7px;

  font-size: 21px;

  font-weight: 600;
}

.album-folder-info p {
  margin: 0 0 8px;

  font-size: 13px;

  opacity: 0.7;
}

.album-song-count {
  display: block;

  margin-bottom: 18px;

  font-size: 12px;

  letter-spacing: 1px;

  text-transform: uppercase;

  opacity: 0.5;
}

/* =====================================================
   ALBUM BUTTON
===================================================== */

.album-folder-button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 7px;

  padding: 9px 20px;

  border: 1px solid rgba(255, 255, 255, 0.35);

  border-radius: 30px;

  background: transparent;

  color: white;

  font-family: inherit;

  font-size: 12px;

  cursor: pointer;

  transition: 0.3s ease;
}

.album-folder-button:hover {
  background: rgba(255, 255, 255, 0.1);

  border-color: rgba(255, 255, 255, 0.7);

  transform: translateY(-2px);
}

.album-folder-button i {
  font-size: 15px;
}

/* =====================================================
   ALBUM MODAL
===================================================== */

.album-modal {
  background: #161616;

  color: white;

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 15px;

  overflow: hidden;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

/* =====================================================
   MODAL HEADER
===================================================== */

.album-modal .modal-header {
  padding: 25px 30px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.album-modal-label {
  display: block;

  margin-bottom: 5px;

  font-size: 10px;

  letter-spacing: 3px;

  text-transform: uppercase;

  opacity: 0.5;
}

.album-modal .modal-title {
  margin: 0;

  font-size: 28px;

  font-weight: 600;
}

.album-modal-artist {
  margin: 5px 0 0;

  font-size: 13px;

  opacity: 0.6;
}

.album-modal .btn-close {
  filter: invert(1);

  opacity: 0.7;
}

.album-modal .btn-close:hover {
  opacity: 1;
}

/* =====================================================
   MODAL BODY
===================================================== */

.album-modal .modal-body {
  padding: 0;
}

.album-modal .playlist-section {
  padding: 25px 30px 30px;

  margin: 0;
}

.album-modal .playlist-section .container {
  width: 100%;

  max-width: 100%;

  padding: 0;
}

/* =====================================================
   MODAL PLAYLIST HEADER
===================================================== */

.album-modal .playlist-header {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  margin-bottom: 20px;
}

.album-modal .playlist-header h2 {
  margin: 0;
}

/* =====================================================
   MODAL SEARCH
===================================================== */

.album-modal #searchSong {
  max-width: 250px;

  background: rgba(255, 255, 255, 0.05);

  color: white;

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 25px;

  padding: 10px 16px;
}

.album-modal #searchSong::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.album-modal #searchSong:focus {
  background: rgba(255, 255, 255, 0.08);

  color: white;

  border-color: rgba(255, 255, 255, 0.4);

  box-shadow: none;
}

/* =====================================================
   MODAL PLAYLIST
===================================================== */

.album-modal .playlist {
  width: 100%;

  max-height: 450px;

  overflow-y: auto;

  padding-right: 5px;
}

.album-modal .playlist::-webkit-scrollbar {
  width: 5px;
}

.album-modal .playlist::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.album-modal .playlist::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);

  border-radius: 10px;
}

/* =====================================================
   MODAL SONG ROW
===================================================== */

.album-modal .song {
  display: flex;

  align-items: center;

  gap: 15px;

  width: 100%;

  padding: 14px 12px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 7px;

  cursor: pointer;

  transition: 0.3s ease;
}

.album-modal .song:hover {
  background: rgba(255, 255, 255, 0.07);
}

/* =====================================================
   MODAL SONG NUMBER
===================================================== */

.album-modal .song-number {
  width: 30px;

  flex-shrink: 0;

  text-align: center;

  font-size: 13px;

  opacity: 0.5;
}

/* =====================================================
   MODAL SONG INFO
===================================================== */

.album-modal .song-info {
  flex: 1;

  min-width: 0;
}

.album-modal .song-info h3 {
  margin: 0 0 4px;

  font-size: 20px;

  font-weight: 500;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;
}

.album-modal .song-info p {
  margin: 0;

  font-size: 12px;

  opacity: 0.5;
}

.album-modal .song-duration {
  flex-shrink: 0;

  font-size: 12px;

  opacity: 0.5;
}

/* =====================================================
   ACTIVE SONG
===================================================== */

.album-modal .song.active-song {
  background: rgba(255, 255, 255, 0.1);
}

/* =====================================================
   MODAL PLAY BUTTON
===================================================== */

.modal-song-play {
  width: 32px;

  height: 32px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.2);

  border-radius: 50%;

  background: transparent;

  color: white;

  cursor: pointer;

  transition: 0.3s ease;
}

.modal-song-play:hover {
  background: rgba(255, 255, 255, 0.15);

  transform: scale(1.08);
}

.modal-song-play i {
  font-size: 14px;
}

/* =====================================================
   MODAL BACKDROP
===================================================== */

.modal-backdrop.show {
  opacity: 0.8;
}

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

/* ===========================
   TABLET
=========================== */

@media (max-width: 992px) {
  .music-player {
    flex-direction: column;

    width: 90%;

    padding: 20px;

    gap: 20px;
  }

  .player-left,
  .player-center,
  .player-right {
    width: 100%;

    justify-content: center;
  }

  .artist-name {
    font-size: 2.5rem;

    text-align: center;
  }

  .artist-description {
    text-align: center;

    font-size: 1.6rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .music-hero .col-lg-8 {
    transform: translateY(20px);
  }

  .album-folder-grid {
    grid-template-columns: repeat(2, 250px);

    gap: 25px;
  }

  .album-folder-card {
    max-width: 250px;
  }
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {
  .music-hero {
    margin-top: -50px;

    padding-top: 100px;
  }

  .artist-name {
    font-size: 2rem;
  }

  .artist-description {
    font-size: 1.3rem;
  }

  .playlist-header {
    flex-direction: column;

    align-items: stretch;
  }

  #searchSong {
    max-width: 100%;
  }

  .song {
    grid-template-columns: 45px 1fr 60px;

    padding: 15px;
  }

  .song-info h3 {
    font-size: 1rem;
  }

  .song-duration {
    font-size: 12px;
  }

  .music-player {
    width: 95%;

    bottom: 15px;

    padding: 18px;

    border-radius: 20px;
  }

  .player-left img {
    width: 55px;

    height: 55px;
  }

  .player-left h5 {
    font-size: 18px;
  }

  #volume {
    width: 90px;
  }

  .album-folder-grid {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .album-folder-card {
    width: 280px;

    max-width: 100%;
  }

  .music-albums-heading h2 {
    font-size: 2.5rem;
  }

  .album-modal .playlist-section {
    padding: 20px 15px;
  }

  .album-modal .playlist-header {
    flex-direction: column;

    align-items: stretch;
  }

  .album-modal #searchSong {
    max-width: 100%;
  }
}

/* ===========================
   SMALL MOBILE
=========================== */

@media (max-width: 576px) {
  .music-hero {
    padding-left: 15px;

    padding-right: 15px;
  }

  .artist-name {
    font-size: 1.8rem;
  }

  .artist-description {
    font-size: 1.1rem;

    line-height: 1.6;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .song {
    grid-template-columns: 35px 1fr 50px;
  }

  .song-number {
    font-size: 1rem;
  }

  .album-modal .modal-title {
    font-size: 22px;
  }

  .album-modal .song-info h3 {
    font-size: 14px;
  }
}

/* =====================================================
   FINAL FOOTER CONFLICT PREVENTION
   DO NOT REMOVE
===================================================== */

/*
   These rules prevent music.css
   from affecting your premium footer
*/

.music-page footer,
.music-page .premium-footer {
  all: unset;
}

/*
   Keep music player above everything
*/

.music-player {
  z-index: 9999;
}

/*
   Prevent modal/player overflow
*/

.modal {
  z-index: 10000;
}

.modal-backdrop {
  z-index: 9998;
}

/* =====================================================
   MUSIC PLAYER
===================================================== */

.music-player {
  position: fixed;

  bottom: -420px;

  left: 50%;

  transform: translateX(-50%);

  width: 90%;

  max-width: 900px;

  background: #181818;

  border-radius: 25px;

  padding: 25px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 30px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);

  transition: 0.45s ease;

  z-index: 9999;

  opacity: 0;

  pointer-events: none;
}

/* SHOW PLAYER ONLY WHEN ACTIVE */

.music-player.show {
  bottom: 30px;

  opacity: 1;

  pointer-events: auto;
}

/* MINIMIZED PLAYER */

.music-player.minimized {
  width: 380px;

  height: 80px;

  padding: 15px 20px;

  overflow: hidden;
}

/* =====================================================
   END MUSIC CSS
===================================================== */

/* =====================================================
   MUSIC PLAYER BUTTON FIX
===================================================== */

/* Make player fully clickable */
.music-player {
  pointer-events: auto;
}

/* Controls container */
.controls {
  position: relative;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Previous and Next buttons */
#prevBtn,
#nextBtn {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: none;

  background: transparent;
  color: white;

  font-size: 24px;

  cursor: pointer;

  transition: all 0.3s ease;

  pointer-events: auto;
}

/* Hover effect */
#prevBtn:hover,
#nextBtn:hover {
  color: #c9a24d;
  transform: scale(1.15);
}

/* Play button */
#playPauseBtn {
  width: 60px;
  height: 60px;

  border-radius: 50%;

  border: none;

  background: #c9a24d;

  color: white;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 26px;

  cursor: pointer;

  pointer-events: auto;
}

#playPauseBtn:hover {
  transform: scale(1.1);

  background: #d4af37;
}

/* Prevent icon blocking clicks */
#prevBtn i,
#nextBtn i,
#playPauseBtn i {
  pointer-events: none;
}

/* Keep player above modal/footer */
.music-player {
  z-index: 99999;
}









































