
:root {
  --primary-color: #0d1c3d;
  --primary-dark: #214394;
  --text-dark: #0d1c3d;
  --text-medium: #666;
  --text-light: #999;
  --shadow-light: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-medium: 0 8px 24px rgba(0,0,0,0.2);
}

body {
  font-family: 'Montserrat', sans-serif !important;
  padding-bottom: 90px;
  background-color: #ffffff;
  margin: 0;
}

.container {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
}

.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 40px 20px 100px;
  color: white;
  margin-bottom: 0;
}

.hero-flex-container {
  display: none;
}

.hero-logo {
  width: 300px;
  text-align: center;
}

.hero-logo img {
  width: 100%;
  height: auto;
}

.now-playing-hero {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 10000px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  background-color: transparent;
  border-radius: 0;
  padding: 20px 30px;
  box-shadow: none;
  color: white;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.container.hero-content {
  max-width: none;
}

.hero-artwork {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.hero-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s, background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-artwork:hover .hero-play-button,
.hero-play-button.playing {
  opacity: 1;
}

.hero-play-button:hover {
  background: rgba(0, 0, 0, 0.7);
}

.hero-track-info {
  color: white;
}

.hero-track-info h1 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
  opacity: 0.9;
  color: white;
}

.hero-track-title {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  color: white;
}

.hero-track-artist {
  font-size: 24px;
  opacity: 0.9;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.studio-message-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  color: white;
  text-decoration: none;
  transition: all 0.2s;
  backdrop-filter: blur(10px);
}

.studio-message-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px 0 20px;
}

.section-title {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-medium);
}

.tracks-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  padding: 0;
}

.track-column {
  display: flex;
  flex-direction: column;
}

.track-card {
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.track-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.track-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
}

.track-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.track-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
  line-height: 1.3;
}

.track-artist {
  font-size: 16px;
  color: var(--text-medium);
  margin-bottom: 10px;
}

.track-timestamp {
  font-size: 14px;
  color: var(--text-light);
  margin-top: auto;
}

.footer-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-color);
  padding: 15px 0;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.footer-player.compact {
  padding: 10px 0;
}

.footer-player-container {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-player-artwork {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-player.compact .footer-player-artwork {
  width: 50px;
  height: 50px;
}

.footer-player-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-player-info {
  flex: 1;
  min-width: 0;
  color: white;
}

.footer-player-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: white;
}

.footer-player.compact .footer-player-title {
  font-size: 14px;
}

.footer-player-artist {
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(255, 255, 255, 0.8);
}

.footer-player.compact .footer-player-artist {
  font-size: 12px;
}

.footer-player-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.footer-player-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-player.compact .footer-player-button {
  width: 40px;
  height: 40px;
}

.footer-player-button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
}

.volume-control.active {
  opacity: 1;
}

.volume-control i {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.volume-control input[type="range"] {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
}

.volume-control input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
}

.volume-control input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.loading {
  opacity: 0.7;
}

.spotify-icon-container {
  color: #1DB954;
  transition: all 0.2s ease;
  display: inline-block;
}

.spotify-icon-container:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

.track-title a:hover {
  text-decoration: underline !important;
}

.track-column {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 30px 15px 80px;
  }
  
  .hero-content {
    gap: 30px;
  }
  
  .now-playing-hero {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 15px;
  }
  
  .hero-artwork {
    width: 200px;
    height: 200px;
  }
  
  .hero-track-title {
    font-size: 32px;
  }
  
  .hero-track-artist {
    font-size: 18px;
  }
  
  .tracks-wrapper {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .footer-player-container {
    padding: 0 15px;
    gap: 15px;
  }
  
  .volume-control {
    display: none;
  }

  .hero-dj-info {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-artwork {
    width: 150px;
    height: 150px;
  }
  
  .hero-track-title {
    font-size: 24px;
  }
  
  .hero-track-artist {
    font-size: 16px;
  }
  
  .footer-player-container {
    gap: 10px;
  }
  
  .footer-player-artwork {
    width: 45px;
    height: 45px;
  }
  
  .footer-player-button {
    width: 40px;
    height: 40px;
  }

  .hero-dj-info {
    text-align: center;
  }
} 