.muisc-page-container {
  width: 100%;
  gap: 8px;
  padding-top: 20px;
}
.player-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: white;
  text-align: center;
  border-radius: 16px;
}

.album-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.album-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Status bar */
.status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px 8px;
  background: white;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
}

/* Nav bar */
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px 12px;
  background: white;
}
.nav-bar .back {
  font-size: 20px;
  color: var(--text);
  cursor: pointer;
}
.nav-bar .title {
  font-size: 16px;
  font-weight: 700;
}
.nav-bar .icons {
  display: flex;
  gap: 14px;
  font-size: 18px;
}

/* Album Art */
.album-section {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 20px 32px 16px;
}

.album-art {
  position: relative;
  width: 280px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(107, 44, 26, 0.35);
  overflow: hidden;
  background: linear-gradient(135deg, #6b2c1a 0%, #c47d1a 50%, #f0a500 100%);
  transition: transform 0.3s ease;
  border-radius: 16px;
}

.album-art:hover {
  transform: scale(1.02);
}

.album-art .flower {
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-size: 130px;
  opacity: 0.6;
  filter: saturate(1.5);
}

.album-art .album-title {
  z-index: 1;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* Spinning indicator when playing */
.vinyl-ring {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 60px;
  height: 60px;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-top-color: rgba(255, 255, 255, 0.9);
  animation: spin 2s linear infinite;
  animation-play-state: paused;
  border-radius: 50%;
}
.playing .vinyl-ring {
  animation-play-state: running;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Song info */
.song-info {
  margin-top: 16px;
  text-align: center;
}
.song-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.artist-name {
  margin-top: 4px;
  font-size: 13px;
  color: var(--green-mid);
  text-decoration: underline;
  cursor: pointer;
}

/* Progress bar */
.progress-section {
  padding: 12px 32px 4px;
}
.progress-bar {
  position: relative;
  width: 100%;
  height: 5px;
  overflow: hidden;
  background: #e0e0e0;
  cursor: pointer;
  border-radius: 99px;
}
.progress-fill {
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, var(--green-mid), var(--green-bright));
  transition: width 0.3s linear;
  border-radius: 99px;
}
.time-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}

/* Controls */
.controls {
  width: 100%;
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  padding: 16px 0 20px;
}
.ctrl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  font-size: 28px;
  color: var(--green-mid);
  transition:
    transform 0.15s,
    color 0.15s;
  cursor: pointer;
}
.ctrl-btn:hover {
  color: var(--green-dark);
  transform: scale(1.15);
}
.ctrl-btn:active {
  transform: scale(0.92);
}

.play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 48px;
  color: var(--green-400);
  cursor: pointer;
  border-radius: 50%;
  /* transition:
    transform 0.15s,
    box-shadow 0.15s; */
}
.play-btn:hover {
  transform: scale(1.08);
}
.play-btn:active {
  transform: scale(0.94);
}

/* Location card */
.music-memo {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--gray-100);
}
.location-card {
  width: 100%;
  position: relative;
  padding: 16px 20px;
  background: var(--green-700);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  text-align: left;
  opacity: 0.85;
}
.location-date-container {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.location-date,
.location-name {
  font-size: 24px;
}

.location-date-img {
  position: relative;
  width: 25%;
  height: auto;
}

/* Memo */
.memo-section {
  padding: 16px 24px 20px;
}
.memo-contianer {
  padding: 16px 20px;
  background-color: var(--white);
}

.memo-text {
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--green-light);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
}

/* Volume slider */
.volume-section {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 0 28px 16px;
}
.vol-icon {
  font-size: 16px;
  color: var(--muted);
}
.volume-slider {
  height: 4px;
  flex: 1;
  outline: none;
  background: #e0e0e0;
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 99px;
}
.volume-slider::-webkit-slider-thumb {
  width: 14px;
  height: 14px;
  background: var(--green-mid);
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 50%;
}

/* Audio visualizer */
.visualizer {
  height: 28px;
  display: flex;
  gap: 3px;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 6px;
  padding: 0 32px;
}
.bar {
  width: 4px;
  height: 4px;
  background: linear-gradient(to top, var(--green-mid), var(--green-bright));
  transition: height 0.1s ease;
  border-radius: 2px;
}
.playing .bar {
  animation: bounce var(--dur) ease-in-out infinite alternate;
}
@keyframes bounce {
  from {
    height: 4px;
  }
  to {
    height: var(--h);
  }
}

/* Toast */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  padding: 8px 20px;
  z-index: 999;
  background: rgba(0, 0, 0, 0.75);
  font-size: 13px;
  color: white;
  transition:
    opacity 0.3s,
    transform 0.3s;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
  border-radius: 20px;
  opacity: 0;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* 반응형 */
@media screen and (min-width: 768px) {
  .container {
    width: 100%;
    /* max-width: 720px; */
    /* max-width: 744px; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 24px;
  }
  .header {
    width: 100%;
    max-width: var(--container-max);
    height: var(--header-h-mobile);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
  }
  .button {
    width: 100%;
    padding-right: 24px;
    padding-bottom: 40px;
    padding-left: 24px;
  }
}

/* desktop */
@media screen and (min-width: 1024px) {
  .container {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
  }
  .header {
    width: 100%;
    max-width: var(--container-max);
    height: var(--header-h-mobile);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
  }
  .wrap-column {
    width: 100%;
  }

  .before {
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 0;
    border-bottom: none;
    color: #000000;
  }
  .before i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
  }
  .fa-angle-left {
    font-size: 24px;
  }
  .bottom-nav {
    display: none;
  }
}
