.studio-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.3)), url("images/mixer.jpg") no-repeat center center/cover;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  margin-bottom: 40px;
  min-height: 370px;
  box-sizing: border-box;
}
.studio-hero h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.studio-hero p {
  color: #f0f0f0;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem auto;
}

.song-title {
  font-weight: bold;
  font-size: 1.1rem;
}

.audio-player {
  width: 100%;
  margin-top: 8px;
}

.pagination-controller {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 15px;
}

.page-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #fff;
  color: #007BFF;
  border: 1px solid #007BFF;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 0.8rem;
}
.page-link:hover {
  background-color: #007BFF;
  color: #fff;
}

.page-link.disabled {
  background-color: #e9ecef;
  color: #6c757d;
  pointer-events: none;
  border-color: #dee2e6;
}

.page-info {
  color: #666;
  font-weight: 600;
}

@media screen and (min-width: 680px) {
  .song-display {
    padding: 1.5rem 1.5rem 0 1.5rem;
  }
}
.song-thumb {
  position: relative;
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.song-thumb svg {
  width: 120px;
  height: 80px;
  color: #adb5bd;
}

.intro-section {
  border-top: none;
  margin-top: 0;
}

.skeleton-title {
  height: 24px;
  width: 80%;
  margin: 0 auto 10px;
}

.skeleton-text {
  height: 16px;
  width: 40%;
  margin: 0 auto 15px;
}

.skeleton-audio {
  height: 40px;
  width: 100%;
}

.pagination-info-container {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

.audio-visualizer {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 5;
  background: transparent;
}
.audio-visualizer:fullscreen {
  background: radial-gradient(circle, #1e272e 0%, #050505 100%);
  width: 100vw;
  height: 100vh;
  cursor: none;
}
.audio-visualizer:-webkit-full-screen {
  background: #000;
  width: 100%;
  height: 100%;
}

.status-tag {
  display: inline-block;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.status-tag.sold {
  background-color: #f1f2f6;
  color: #7f8c8d;
  border: 1px solid #dcdde1;
}

.status-tag.available {
  background-color: #e3f2fd;
  color: #1976d2;
  border: 1px solid #bbdefb;
}

.product-card.is-sold {
  border-left: 4px solid #bdc3c7;
}
.product-card.is-sold .song-title {
  color: #57606f;
}

.song-year {
  display: inline-flex;
  align-items: center;
  color: #eeeeee;
  padding: 1px 10px;
  border-radius: 10px;
  font-weight: normal;
  font-size: 0.75rem;
  text-transform: uppercase;
  height: 20px;
  line-height: 1;
  background-color: #171b18;
}

.song-status {
  display: inline-flex;
  align-items: center;
  color: #eeeeee;
  padding: 1px 10px;
  border-radius: 10px;
  font-weight: normal;
  font-size: 0.75rem;
  text-transform: uppercase;
  height: 20px;
  line-height: 1;
}

.song-status.available {
  background-color: #28a745;
}

.song-status.sold {
  background-color: #dc3545;
}

.song-info {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
  gap: 5px;
}

.authenticity-desc {
  font-size: 0.95rem;
  color: #555;
}

/* Custom Audio Player Styles */
.custom-audio-player {
  margin-top: 15px;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f1f3f5;
  padding: 6px 12px;
  border-radius: 24px;
}

.control-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.control-btn svg {
  width: 20px;
  height: 20px;
  fill: #495057;
}

.control-btn svg:hover {
  fill: #007BFF;
}

/* Play/Pause state */
.custom-audio-player .pause-icon {
  display: none;
}

.custom-audio-player.is-playing .play-icon {
  display: none;
}

.custom-audio-player.is-playing .pause-icon {
  display: block;
}

/* Mute/Volume state */
.volume-controls {
  display: flex;
  align-items: center;
  gap: 5px;
}

.custom-audio-player .mute-icon {
  display: none;
}

.custom-audio-player.is-muted .volume-icon {
  display: none;
}

.custom-audio-player.is-muted .mute-icon {
  display: block;
}

.time-display {
  font-size: 0.8rem;
  color: #495057;
  font-weight: 600;
  min-width: 35px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.seek-bar-container {
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* Slider Styles */
input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  height: 4px;
  background: #dee2e6;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  margin: 0;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  background: #007BFF;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

input[type=range]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: #007BFF;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  -moz-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

input[type=range]:hover::-webkit-slider-thumb {
  background: #0056b3;
}

input[type=range]:hover::-moz-range-thumb {
  background: #0056b3;
}

.volume-slider {
  width: 70px;
}

.gear-list {
  -moz-column-count: 1;
       column-count: 1;
  gap: 2rem;
}

@media (min-width: 768px) {
  .gear-list {
    -moz-column-count: 2;
         column-count: 2;
  }
}
.gear-category {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 2rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.gear-category h3 {
  color: #007BFF;
  border-bottom: 2px solid #eee;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.gear-category ul {
  list-style: none;
  padding: 0;
}

.gear-category li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  color: #444;
}

.gear-category li span {
  color: #888;
  font-size: 0.9rem;
  font-style: italic;
}

/* Collaboration Page Styles */
.collab-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("images/recording.jpg") no-repeat center center/cover;
}

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

.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.icon-wrapper {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.path-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.path-card.highlight {
  border: 2px solid #007BFF;
  background: #f8fbff;
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.15);
}

.path-card h3 {
  color: #007BFF;
  margin-bottom: 0.5rem;
}

.path-card p {
  text-align: left;
}

.path-subtitle {
  display: block;
  font-weight: bold;
  color: #555;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.path-card ul {
  list-style-type: disc;
  padding-left: 1.2rem;
  margin-top: 1rem;
  color: #666;
}

.journey-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.step-item {
  flex: 1;
  min-width: 150px;
  max-width: 200px;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #007BFF;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 1rem;
}

/* Pricing Page Styles */
.pricing-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("images/mixer.jpg") no-repeat center center/cover;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 1px solid #eee;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: #007BFF;
}

.pricing-card.featured {
  background: #f8fbff;
  border: 2px solid #007BFF;
  position: relative;
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.15);
}

.pricing-card.featured::before {
  content: "Terpopuler";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #007BFF;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.price-tag {
  font-size: 2rem;
  font-weight: bold;
  color: #007BFF;
  margin: 1rem 0;
}

.price-period {
  font-size: 1rem;
  color: #666;
  font-weight: normal;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  flex-grow: 1;
}

.pricing-features li {
  margin-bottom: 0.8rem;
  color: #555;
  border-bottom: 1px dashed #eee;
  padding-bottom: 0.5rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.product-action .btn.share-btn {
  width: auto;
  height: auto;
  border-radius: 50px;
  padding: 12px 25px;
  display: inline-block;
}/*# sourceMappingURL=studio.css.map */