/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Rajdhani', 'Arial', sans-serif;
  line-height: 1.6;
  color: #e8f4fd;
  overflow-x: hidden;
  background: #0a0a0a;
}

/* Stationary Background */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #2a2a2a 70%, #1a1a1a 100%);
  z-index: -2;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(0, 191, 255, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(102, 153, 255, 0.06) 0%, transparent 50%),
              linear-gradient(45deg, transparent 40%, rgba(0, 128, 255, 0.02) 50%, transparent 60%);
  z-index: -1;
}

/* Particle Effect Canvas */
#scene {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
}

/* Floating Promo Video */
.video-container {
  position: relative;
  top: auto;
  right: auto;
  width: 300px;
  height: 200px;
  z-index: 100;
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 191, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
  margin: 0 1rem 20px 1rem;
  border: 1px solid rgba(0, 191, 255, 0.3);
}

.video-container.second-video {
  top: auto;
}

.video-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-container:hover .video-overlay {
  opacity: 1;
}

.video-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: white;
  text-align: center;
}

.play-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #00bfff;
}

.video-text {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Main Content */
.content {
  position: relative;
  z-index: 10;
  padding: 0 5%;
}

/* Hero Section */
.hero {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
}

.hero-title {
  font-family: 'Orbitron', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #00bfff, #0080ff, #40e0d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 30px rgba(0, 191, 255, 0.5);
}

.hero-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  opacity: 1;
  letter-spacing: 3px;
  color: #40e0d0;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(64, 224, 208, 0.5);
}

.hero-description {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  margin-bottom: 3rem;
  opacity: 0.9;
  letter-spacing: 1px;
  color: #b8e0f0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(45deg, #0066ff, #00bfff);
  color: #ffffff;
  text-decoration: none;
  border-radius: 0;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(0, 191, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 191, 255, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(45deg, #0080ff, #40bfff);
  border-color: rgba(0, 191, 255, 0.5);
}

/* Content Sections */
section {
  padding: 6rem 0;
  max-width: 800px;
  margin: 0 auto;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

section h2 {
  font-family: 'Share Tech Mono', 'Orbitron', monospace;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 2rem;
  text-align: center;
  color: #00bfff;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(0, 191, 255, 0.8),
               0 0 40px rgba(0, 191, 255, 0.6);
  font-weight: 400;
}

section p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 1;
  text-align: center;
  color: #e0e0e0;
  font-weight: 400;
}

/* Music Section */
.music-card {
  background: rgba(10, 30, 60, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 0;
  clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
  padding: 3rem;
  text-align: center;
  border: 1px solid rgba(0, 191, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 191, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.album-cover {
  flex-shrink: 0;
}

.album-cover img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 0;
  clip-path: polygon(15px 0%, 100% 0%, calc(100% - 15px) 100%, 0% 100%);
  border: 4px solid rgba(0, 191, 255, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 191, 255, 0.3);
  transition: all 0.3s ease;
}

.album-cover img:hover {
  transform: scale(1.05);
  border-color: rgba(0, 191, 255, 0.7);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 191, 255, 0.5);
}

.music-info {
  flex: 1;
  text-align: left;
}

.music-info h3 {
  font-family: 'Share Tech Mono', 'Orbitron', monospace;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #00bfff;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 0 0 20px rgba(0, 191, 255, 0.8),
               0 0 40px rgba(0, 191, 255, 0.6),
               0 0 60px rgba(0, 191, 255, 0.4);
  font-weight: 400;
}

.music-link {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: rgba(0, 191, 255, 0.1);
  color: #00bfff;
  text-decoration: none;
  border-radius: 0;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  border: 2px solid #00bfff;
  transition: all 0.3s ease;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.music-link:hover {
  background: #00bfff;
  color: #000817;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.6);
}

/* Contact Section */
.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-link {
  padding: 0.8rem 1.5rem;
  background: rgba(10, 30, 60, 0.8);
  color: #e8f4fd;
  text-decoration: none;
  border-radius: 0;
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
  border: 1px solid rgba(0, 191, 255, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.social-link:hover {
  background: rgba(0, 191, 255, 0.2);
  border-color: #00bfff;
  color: #00bfff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 191, 255, 0.3);
}

/* Promo Videos Section */
.videos {
  text-align: center;
  padding: 4rem 0;
}

.videos .video-container {
  display: inline-block;
  margin: 0 1rem 20px 1rem;
  vertical-align: top;
}

.videos h2 {
  margin-bottom: 3rem;
}

.video-container {
  position: relative;
  top: auto;
  right: auto;
  width: 300px;
  height: 200px;
  z-index: 100;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
  margin: 0 auto 20px auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-container.second-video {
  top: auto;
}

.video-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Social Media Section */
.social-media {
  text-align: center;
  padding: 4rem 0;
}

.social-media h2 {
  margin-bottom: 3rem;
}

/* Social Section */
.social-section {
  text-align: center;
  padding: 4rem 0;
}

.social-section h2 {
  margin-bottom: 3rem;
}

.social-section .social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-section .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 0;
  background: transparent;
  border: none;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.social-section .social-link:hover {
  transform: translateY(-5px);
  background: rgba(40, 40, 40, 0.8);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.social-section .social-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
  filter: brightness(1);
}

.social-section .social-link:hover .social-icon {
  transform: scale(1.1);
}

/* Platform-specific hover effects */
.social-section .instagram:hover {
  box-shadow: 0 10px 30px rgba(193, 53, 132, 0.4);
}

.social-section .apple-music:hover {
  box-shadow: 0 10px 30px rgba(250, 35, 59, 0.4);
}

.social-section .youtube-music:hover {
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

.social-section .spotify:hover {
  box-shadow: 0 10px 30px rgba(29, 185, 84, 0.4);
}

.social-section .soundcloud:hover {
  box-shadow: 0 10px 30px rgba(255, 85, 0, 0.4);
}

.platform-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding: 0;
}

.platform-links .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 0;
  background: transparent;
  border: none;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.platform-links .social-link:hover {
  transform: translateY(-5px);
  background: rgba(40, 40, 40, 0.8);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.social-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.platform-links .social-link:hover .social-icon {
  transform: scale(1.1);
}

/* Platform-specific hover effects */
.platform-links .instagram:hover {
  box-shadow: 0 10px 30px rgba(193, 53, 132, 0.4);
}

.platform-links .apple-music:hover {
  box-shadow: 0 10px 30px rgba(250, 35, 59, 0.4);
}

.platform-links .youtube-music:hover {
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

.platform-links .spotify:hover {
  box-shadow: 0 10px 30px rgba(29, 185, 84, 0.4);
}

.platform-links .soundcloud:hover {
  box-shadow: 0 10px 30px rgba(255, 85, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .video-container {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 400px;
    margin: 2rem auto;
  }
  
  .content {
    padding: 0 1rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .social-links {
    gap: 1rem;
  }
  
  .social-link {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .social-section .social-links {
    gap: 1.5rem;
  }

  .social-section .social-link {
    width: 50px;
    height: 50px;
  }

  .social-section .social-icon {
    width: 35px;
    height: 35px;
  }

  .platform-links {
    gap: 1.5rem;
  }

  .platform-links .social-link {
    width: 50px;
    height: 50px;
  }

  .social-icon {
    width: 35px;
    height: 35px;
  }
}

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto 4rem auto;
}

.bio-photo {
  flex-shrink: 0;
}

.bio-photo img {
  width: 250px;
  height: 250px;
  border-radius: 0;
  clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
  object-fit: cover;
  border: 4px solid rgba(0, 191, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 191, 255, 0.3);
  transition: all 0.3s ease;
}

.bio-photo img:hover {
  transform: scale(1.05);
  border-color: rgba(0, 191, 255, 0.7);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 191, 255, 0.5);
}

.bio-main {
  flex: 1;
}

.hero-tagline h3 {
  font-family: 'Orbitron', serif;
  font-size: 1.8rem;
  color: #00bfff;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #00bfff, #40e0d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.bio-description p {
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 0;
  opacity: 1;
  color: #e0e0e0;
  font-weight: 400;
}

/* Vision Section */
.vision-section {
  margin: 4rem 0;
}

.vision-card {
  background: rgba(40, 40, 40, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00bfff, #0080ff, #40e0d0);
}

.vision-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.vision-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #00bfff;
  margin-bottom: 1.5rem;
}

.vision-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  color: #c0c0c0;
}

/* Production Section */
.production-section {
  margin: 4rem 0;
  text-align: center;
}

.production-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #00bfff;
  margin-bottom: 3rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-item {
  background: rgba(40, 40, 40, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.feature-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 68, 68, 0.1);
  border-color: rgba(255, 68, 68, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #00bfff;
  margin-bottom: 1rem;
}

.feature-item p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  color: #c0c0c0;
}

/* Mission Section */
.mission-section {
  margin: 4rem 0;
}

.mission-card {
  background: linear-gradient(135deg, rgba(255, 68, 68, 0.1), rgba(255, 68, 68, 0.05));
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 68, 68, 0.2);
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.mission-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.mission-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #00bfff;
  margin-bottom: 1.5rem;
}

.mission-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: #c0c0c0;
}

.mission-quote {
  background: rgba(40, 40, 40, 0.8);
  border-radius: 15px;
  padding: 2rem;
  border-left: 4px solid #00bfff;
  font-style: italic;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.mission-quote p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
  opacity: 0.95;
  color: #c0c0c0;
}

/* Futuristic Glitch Effects */
@keyframes glitch {
  0% { transform: translate(0); }
  2% { transform: translate(2px, 0); }
  4% { transform: translate(-2px, 0); }
  6% { transform: translate(0); }
  8% { transform: translate(0, 2px); }
  10% { transform: translate(0, -2px); }
  12% { transform: translate(0); }
  100% { transform: translate(0); }
}

@keyframes neon-glow {
  0%, 100% { 
    text-shadow: 0 0 5px rgba(0, 191, 255, 0.8),
                 0 0 10px rgba(0, 191, 255, 0.8),
                 0 0 15px rgba(0, 191, 255, 0.8);
  }
  50% { 
    text-shadow: 0 0 2px rgba(0, 191, 255, 0.8),
                 0 0 5px rgba(0, 191, 255, 0.8),
                 0 0 8px rgba(0, 191, 255, 0.8);
  }
}

@keyframes pulse-border {
  0%, 100% { 
    border-color: rgba(0, 191, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
  }
  50% { 
    border-color: rgba(0, 191, 255, 0.6);
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.6);
  }
}

.hero-title {
  animation: neon-glow 3s ease-in-out infinite;
}

.hero-title:hover {
  animation: glitch 0.3s ease-in-out;
}

section h2:hover {
  animation: glitch 0.2s ease-in-out;
}

.video-container,
.music-card {
  animation: pulse-border 4s ease-in-out infinite;
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .bio-photo img {
    width: 200px;
    height: 200px;
  }
  
  .bio-description p {
    text-align: center;
    font-size: 1rem;
  }

  .hero-tagline h3 {
    font-size: 1.5rem;
    text-align: center;
  }

  .vision-card,
  .mission-card {
    padding: 2rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-item {
    padding: 1.5rem;
  }

  /* Music Section Mobile */
  .music-card {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }

  .music-info {
    text-align: center;
  }

  .album-cover img {
    width: 180px;
    height: 180px;
  }
}

/* Music Player Styles */
.music-player {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  background: rgba(10, 20, 40, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 0;
  clip-path: polygon(15px 0%, 100% 0%, calc(100% - 15px) 100%, 0% 100%);
  border: 1px solid rgba(0, 191, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 191, 255, 0.2);
  z-index: 1000;
  animation: pulse-border 4s ease-in-out infinite;
  transition: all 0.3s ease;
}

/* Autoplay Status Messages */
.autoplay-status {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Share Tech Mono', 'Orbitron', monospace;
  font-size: 14px;
  font-weight: 600;
  z-index: 10000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  text-align: center;
  min-width: 300px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.autoplay-status.success {
  background: linear-gradient(135deg, rgba(0, 255, 0, 0.9), rgba(0, 200, 0, 0.9));
  color: #003300;
  border-color: rgba(0, 255, 0, 0.6);
  box-shadow: 0 8px 24px rgba(0, 255, 0, 0.3);
}

.autoplay-status.error {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.9), rgba(200, 0, 0, 0.9));
  color: #330000;
  border-color: rgba(255, 0, 0, 0.6);
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.3);
}

.autoplay-status.info {
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.9), rgba(0, 150, 200, 0.9));
  color: #003333;
  border-color: rgba(0, 191, 255, 0.6);
  box-shadow: 0 8px 24px rgba(0, 191, 255, 0.3);
}

.autoplay-status:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

/* Mobile responsive for autoplay status */
@media (max-width: 768px) {
  .autoplay-status {
    min-width: 280px;
    font-size: 12px;
    padding: 10px 20px;
    top: 15px;
  }
}

/* Player Status Indicator Animation */
@keyframes pulse {
  0%, 100% { 
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  50% { 
    opacity: 0.7;
    transform: translateX(-50%) scale(1.05);
  }
}

.player-status-indicator {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 191, 255, 0.9);
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  animation: pulse 2s ease-in-out infinite;
  z-index: 1001;
}

/* Call-to-Action Overlay */
.cta-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 20, 40, 0.95);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.cta-content {
  text-align: center;
  color: white;
  max-width: 500px;
  padding: 2rem;
  background: rgba(0, 191, 255, 0.1);
  border: 2px solid rgba(0, 191, 255, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  animation: cta-glow 3s ease-in-out infinite;
}

.cta-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: bounce 2s ease-in-out infinite;
}

.cta-content h3 {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00bfff;
  text-shadow: 0 0 20px rgba(0, 191, 255, 0.8);
}

.cta-content p {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #00bfff, #40e0d0);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 191, 255, 0.4);
  border: 2px solid rgba(0, 191, 255, 0.6);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 191, 255, 0.6);
  border-color: rgba(0, 191, 255, 0.8);
}

@keyframes cta-glow {
  0%, 100% { 
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.2);
  }
  50% { 
    box-shadow: 0 0 50px rgba(0, 191, 255, 0.4);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { 
    transform: translateY(0);
  }
  40% { 
    transform: translateY(-10px);
  }
  60% { 
    transform: translateY(-5px);
  }
}

/* Mobile responsive for CTA overlay */
@media (max-width: 768px) {
  .cta-content {
    max-width: 90%;
    padding: 1.5rem;
  }
  
  .cta-icon {
    font-size: 3rem;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

.music-player:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 191, 255, 0.4);
  border-color: rgba(0, 191, 255, 0.6);
}

.player-container {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.song-info {
  text-align: center;
  margin-bottom: 10px;
}

.song-title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.9rem;
  color: #00bfff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.8);
  margin-bottom: 5px;
}

.artist-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  color: #40e0d0;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.player-controls {
  display: flex;
  justify-content: center;
  align-items: center;
}

.control-btn {
  background: rgba(0, 191, 255, 0.1);
  border: 2px solid #00bfff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #00bfff;
}

.control-btn:hover {
  background: #00bfff;
  color: #000817;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.6);
}

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

.progress-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.time {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  color: #40e0d0;
  min-width: 35px;
}

.progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(0, 191, 255, 0.2);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00bfff, #40e0d0);
  width: 0%;
  transition: width 0.1s ease;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.6);
}

.progress-handle {
  position: absolute;
  top: -4px;
  left: 0%;
  width: 12px;
  height: 12px;
  background: #00bfff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.8);
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.progress-bar:hover .progress-handle {
  opacity: 1;
}

.volume-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.volume-container .control-btn {
  width: 30px;
  height: 30px;
  border-width: 1px;
}

.volume-container .control-btn svg {
  width: 16px;
  height: 16px;
}

.volume-slider {
  flex: 1;
  height: 3px;
  background: rgba(0, 191, 255, 0.2);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.volume-fill {
  height: 100%;
  background: linear-gradient(90deg, #00bfff, #40e0d0);
  width: 70%;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(0, 191, 255, 0.6);
}

.volume-handle {
  position: absolute;
  top: -3px;
  left: 70%;
  width: 9px;
  height: 9px;
  background: #00bfff;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 191, 255, 0.8);
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.volume-slider:hover .volume-handle {
  opacity: 1;
}

/* Mobile responsive for music player */
@media (max-width: 768px) {
  .music-player {
    width: 280px;
    bottom: 15px;
    right: 15px;
  }
  
  .player-container {
    padding: 15px;
    gap: 12px;
  }
  
  .song-title {
    font-size: 0.8rem;
  }
  
  .artist-name {
    font-size: 0.7rem;
  }
  
  .control-btn {
    width: 45px;
    height: 45px;
  }
  
  .control-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* Social Section */
.social-section {
  text-align: center;
  padding: 6rem 0;
  background: rgba(10, 20, 40, 0.3);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 191, 255, 0.2);
  margin-top: 2rem;
}

.social-section .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.social-section h2 {
  font-family: 'Share Tech Mono', 'Orbitron', monospace;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 3rem;
  text-align: center;
  color: #00bfff;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(0, 191, 255, 0.8),
               0 0 40px rgba(0, 191, 255, 0.6);
  font-weight: 400;
}

.social-section .social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.social-section .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  padding: 0;
  background: rgba(10, 30, 60, 0.8);
  backdrop-filter: blur(15px);
  border-radius: 0;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  border: 2px solid rgba(0, 191, 255, 0.3);
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 191, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.social-section .social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.social-section .social-link:hover::before {
  transform: translateX(100%);
}

.social-section .social-link:hover {
  transform: translateY(-10px) scale(1.1);
  border-color: rgba(0, 191, 255, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 191, 255, 0.4);
}

.social-section .social-icon {
  width: 48px;
  height: 48px;
  transition: transform 0.3s ease;
  z-index: 2;
  position: relative;
}

.social-section .social-link:hover .social-icon {
  transform: scale(1.1);
}

/* Platform-specific hover effects for social section */
.social-section .instagram:hover {
  box-shadow: 0 20px 40px rgba(193, 53, 132, 0.4), 0 0 30px rgba(193, 53, 132, 0.3);
  border-color: rgba(193, 53, 132, 0.6);
}

.social-section .apple-music:hover {
  box-shadow: 0 20px 40px rgba(250, 35, 59, 0.4), 0 0 30px rgba(250, 35, 59, 0.3);
  border-color: rgba(250, 35, 59, 0.6);
}

.social-section .youtube-music:hover {
  box-shadow: 0 20px 40px rgba(255, 0, 0, 0.4), 0 0 30px rgba(255, 0, 0, 0.3);
  border-color: rgba(255, 0, 0, 0.6);
}

.social-section .spotify:hover {
  box-shadow: 0 20px 40px rgba(29, 185, 84, 0.4), 0 0 30px rgba(29, 185, 84, 0.3);
  border-color: rgba(29, 185, 84, 0.6);
}

.social-section .soundcloud:hover {
  box-shadow: 0 20px 40px rgba(255, 85, 0, 0.4), 0 0 30px rgba(255, 85, 0, 0.3);
  border-color: rgba(255, 85, 0, 0.6);
}

/* Mobile responsive for social section */
@media (max-width: 768px) {
  .social-section {
    padding: 4rem 0;
  }
  
  .social-section .container {
    padding: 0 1rem;
  }
  
  .social-section h2 {
    margin-bottom: 2rem;
  }
  
  .social-section .social-links {
    gap: 1.5rem;
  }
  
  .social-section .social-link {
    width: 70px;
    height: 70px;
  }
  
  .social-section .social-icon {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .social-section .social-links {
    gap: 1rem;
  }
  
  .social-section .social-link {
    width: 60px;
    height: 60px;
  }
  
  .social-section .social-icon {
    width: 36px;
    height: 36px;
  }
}

/* Comprehensive Mobile Responsive Styles */
@media (max-width: 768px) {
  /* General mobile adjustments */
  .content {
    padding-top: 1rem;
  }
  
  /* Hero section mobile */
  .hero {
    padding: 2rem 1rem;
    min-height: 40vh;
  }
  
  .hero-tagline h1 {
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
  }
  
  .hero-tagline p {
    letter-spacing: 1px;
    max-width: 100%;
  }
  
  /* Music section mobile */
  .music {
    padding: 2rem 1rem;
  }
  
  .music h2 {
    margin-bottom: 2rem;
  }
  
  .music-card {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    max-width: 100%;
  }
  
  .album-cover img {
    width: 150px;
    height: 150px;
  }
  
  .music-info h3 {
    margin-bottom: 0.75rem;
  }
  
  .music-info p {
    margin-bottom: 1.5rem;
    max-width: 100%;
  }
  
  .music-link {
    padding: 12px 24px;
  }
  
  /* Videos section mobile */
  .videos {
    padding: 2rem 1rem;
  }
  
  .videos h2 {
    margin-bottom: 2rem;
  }
  
  .video-container {
    width: 250px;
    height: 170px;
    margin: 0 0.5rem 1rem 0.5rem;
  }
  
  /* About section mobile */
  .about {
    padding: 2rem 1rem;
  }
  
  .about h2 {
    margin-bottom: 2rem;
  }
  
  .about-content {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    max-width: 100%;
  }
  
  .bio-photo img {
    width: 180px;
    height: 180px;
  }
  
  .bio-main {
    max-width: 100%;
  }
  
  .bio-main h3 {
    margin-bottom: 1rem;
  }
  
  /* Feature grid mobile */
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem;
  }
  
  .feature-item {
    padding: 1.5rem;
  }
  
  /* Music player mobile */
  .music-player {
    width: 280px;
    bottom: 15px;
    right: 15px;
  }
  
  .player-container {
    padding: 15px;
    gap: 12px;
  }
  
  .song-title {
    font-size: 0.8rem;
  }
  
  .artist-name {
    font-size: 0.7rem;
  }
  
  .control-btn {
    width: 45px;
    height: 45px;
  }
  
  .control-btn svg {
    width: 18px;
    height: 18px;
  }
  
  .progress-container {
    gap: 8px;
  }
  
  .time {
    font-size: 0.65rem;
    min-width: 32px;
  }
  
  .volume-container .control-btn {
    width: 28px;
    height: 28px;
  }
  
  .volume-container .control-btn svg {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 480px) {
  /* Small mobile devices */
  .hero {
    padding: 1.5rem 0.75rem;
    min-height: 35vh;
  }
  
  .music, .videos, .about {
    padding: 1.5rem 0.75rem;
  }
  
  .music-card, .about-content {
    padding: 1rem;
  }
  
  .album-cover img {
    width: 120px;
    height: 120px;
  }
  
  .bio-photo img {
    width: 140px;
    height: 140px;
  }
  
  .video-container {
    width: 200px;
    height: 140px;
    margin: 0 0.25rem 0.75rem 0.25rem;
  }
  
  .feature-grid {
    padding: 0.75rem;
  }
  
  .feature-item {
    padding: 1rem;
  }
  
  /* Compact music player */
  .music-player {
    width: 250px;
    bottom: 10px;
    right: 10px;
  }
  
  .player-container {
    padding: 12px;
    gap: 10px;
  }
  
  .song-title {
    font-size: 0.75rem;
  }
  
  .artist-name {
    font-size: 0.65rem;
  }
  
  .control-btn {
    width: 40px;
    height: 40px;
  }
  
  .control-btn svg {
    width: 16px;
    height: 16px;
  }
  
  .progress-container {
    gap: 6px;
  }
  
  .time {
    font-size: 0.6rem;
    min-width: 28px;
  }
  
  .volume-container .control-btn {
    width: 24px;
    height: 24px;
  }
  
  .volume-container .control-btn svg {
    width: 13px;
    height: 13px;
  }
}

@media (max-width: 360px) {
  /* Very small mobile devices */
  .hero {
    padding: 1rem 0.5rem;
    min-height: 30vh;
  }
  
  .music, .videos, .about {
    padding: 1rem 0.5rem;
  }
  
  .music-card, .about-content {
    padding: 0.75rem;
  }
  
  .album-cover img {
    width: 100px;
    height: 100px;
  }
  
  .bio-photo img {
    width: 120px;
    height: 120px;
  }
  
  .video-container {
    width: 180px;
    height: 120px;
    margin: 0 0.125rem 0.5rem 0.125rem;
  }
  
  .feature-grid {
    padding: 0.5rem;
  }
  
  .feature-item {
    padding: 0.75rem;
  }
  
  /* Ultra-compact music player */
  .music-player {
    width: 220px;
    bottom: 8px;
    right: 8px;
  }
  
  .player-container {
    padding: 10px;
    gap: 8px;
  }
  
  .song-title {
    font-size: 0.7rem;
  }
  
  .artist-name {
    font-size: 0.6rem;
  }
  
  .control-btn {
    width: 35px;
    height: 35px;
  }
  
  .control-btn svg {
    width: 14px;
    height: 14px;
  }
  
  .progress-container {
    gap: 5px;
  }
  
  .time {
    font-size: 0.55rem;
    min-width: 25px;
  }
  
  .volume-container .control-btn {
    width: 20px;
    height: 20px;
  }
  
  .volume-container .control-btn svg {
    width: 11px;
    height: 11px;
  }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 30vh;
    padding: 1.5rem 1rem;
  }
  
  .music, .videos, .about {
    padding: 1.5rem 1rem;
  }
  
  .music-card, .about-content {
    flex-direction: row;
    gap: 1.5rem;
  }
  
  .album-cover img {
    width: 120px;
    height: 120px;
  }
  
  .bio-photo img {
    width: 140px;
    height: 140px;
  }
  
  .video-container {
    width: 200px;
    height: 140px;
  }
}

/* Touch-friendly improvements for mobile */
@media (max-width: 768px) {
  .music-link, .control-btn, .social-link {
    min-height: 44px; /* iOS touch target minimum */
  }
  
  .progress-bar, .volume-slider {
    min-height: 20px; /* Larger touch targets */
  }
  
  .progress-handle, .volume-handle {
    min-width: 20px;
    min-height: 20px;
  }
  
  /* Improve touch scrolling */
  .content {
    -webkit-overflow-scrolling: touch;
  }
  
  /* Optimize for mobile performance */
  .background-overlay {
    background: radial-gradient(circle at 30% 20%, rgba(0, 191, 255, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(102, 153, 255, 0.04) 0%, transparent 50%);
  }
  
  /* Reduce animations on mobile for better performance */
  .hero-tagline h1, .hero-tagline p {
    animation: none;
  }
  
  .feature-item:hover {
    transform: none;
  }
  
  .video-container:hover {
    transform: none;
  }
}

/* High DPI mobile devices */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .music-player {
    border-width: 0.5px;
  }
  
  .progress-bar, .volume-slider {
    border-radius: 1px;
  }
  
  .control-btn {
    border-width: 1px;
  }
}

/* Mobile Audio Player Styles */
.mobile-music-player {
  display: none; /* Hidden by default, shown on mobile */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(10, 20, 40, 0.98);
  backdrop-filter: blur(20px);
  border-top: 2px solid rgba(0, 191, 255, 0.6);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8);
  z-index: 1001;
  padding: 15px;
}

.mobile-player-container {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.mobile-song-info {
  flex: 1;
  min-width: 0;
}

.mobile-song-title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.9rem;
  color: #00bfff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.8);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-artist-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  color: #40e0d0;
  opacity: 0.9;
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-controls {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.mobile-control-btn {
  background: rgba(0, 191, 255, 0.2);
  border: 2px solid #00bfff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #00bfff;
  flex-shrink: 0;
}

.mobile-control-btn:hover {
  background: #00bfff;
  color: #000817;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.6);
}

.mobile-control-btn svg {
  width: 20px;
  height: 20px;
}

.mobile-progress {
  flex: 1;
  min-width: 100px;
  max-width: 200px;
}

.mobile-progress-bar {
  height: 6px;
  background: rgba(0, 191, 255, 0.2);
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.mobile-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00bfff, #40e0d0);
  width: 0%;
  transition: width 0.1s ease;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.6);
}

/* Show mobile player on mobile devices */
@media (max-width: 768px) {
  .music-player {
    display: none; /* Hide desktop player on mobile */
  }
  
  .mobile-music-player {
    display: block; /* Show mobile player on mobile */
  }
}

/* Mobile player responsive adjustments */
@media (max-width: 480px) {
  .mobile-music-player {
    padding: 12px;
  }
  
  .mobile-player-container {
    gap: 12px;
  }
  
  .mobile-song-title {
    font-size: 0.8rem;
  }
  
  .mobile-artist-name {
    font-size: 0.7rem;
  }
  
  .mobile-control-btn {
    width: 45px;
    height: 45px;
  }
  
  .mobile-control-btn svg {
    width: 18px;
    height: 18px;
  }
  
  .mobile-progress {
    min-width: 80px;
    max-width: 150px;
  }
  
  .mobile-progress-bar {
    height: 5px;
  }
}

@media (max-width: 360px) {
  .mobile-music-player {
    padding: 10px;
  }
  
  .mobile-player-container {
    gap: 10px;
  }
  
  .mobile-song-title {
    font-size: 0.75rem;
  }
  
  .mobile-artist-name {
    font-size: 0.65rem;
  }
  
  .mobile-control-btn {
    width: 40px;
    height: 40px;
  }
  
  .mobile-control-btn svg {
    width: 16px;
    height: 16px;
  }
  
  .mobile-progress {
    min-width: 60px;
    max-width: 120px;
  }
  
  .mobile-progress-bar {
    height: 4px;
  }
}

/* Landscape mobile orientation for mobile player */
@media (max-width: 768px) and (orientation: landscape) {
  .mobile-music-player {
    padding: 10px 15px;
  }
  
  .mobile-player-container {
    gap: 12px;
  }
  
  .mobile-progress {
    min-width: 120px;
    max-width: 250px;
  }
}