.shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: transparent;
  color: #e5e7eb;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.main {
  flex: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 16px 100px;
  width: 100%;
  box-sizing: border-box;
}

.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 14px 16px;
  text-align: center;
  opacity: .8;
  background: rgba(0,0,0,.2);
  backdrop-filter: blur(8px);
  width: 100%;
  box-sizing: border-box;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease;
  padding: 4px;
  border-radius: 6px;
}

.footer-social-link:hover {
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  transform: translateY(-2px);
}

.spotify-player {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
}

/* Coming Soon Styles */
.coming-soon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 2rem 1rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.coming-soon-title {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #fca5a5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 1rem 0;
  text-shadow: 0 0 30px rgba(220, 38, 38, 0.3);
  animation: titleGlow 2s ease-in-out infinite alternate;
}

.coming-soon-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 3rem 0;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.coming-soon-animation {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  border-radius: 50%;
  animation: pulseDot 1.5s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.4);
}

.pulse-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.pulse-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes titleGlow {
  0% {
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.3);
    transform: scale(1);
  }
  100% {
    text-shadow: 0 0 40px rgba(220, 38, 38, 0.6);
    transform: scale(1.02);
  }
}

@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

/* Social Links Styles */
.social-links {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(220, 38, 38, 0.3);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.2);
}

.social-link.instagram:hover {
  background: linear-gradient(135deg, #E4405F 0%, #C13584 100%);
  border-color: #E4405F;
  color: white;
}

.social-link.soundcloud:hover {
  background: linear-gradient(135deg, #FF5500 0%, #FF7700 100%);
  border-color: #FF5500;
  color: white;
}

.social-link svg {
  transition: transform 0.2s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
  .coming-soon-title {
    font-size: 2.5rem;
    word-wrap: break-word;
    hyphens: auto;
  }
  
  .coming-soon-subtitle {
    font-size: 1rem;
    word-wrap: break-word;
  }
  
  .coming-soon-container {
    min-height: 50vh;
    padding: 1rem;
    width: 100%;
    max-width: 100%;
  }
  
  .social-links {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    width: 100%;
    max-width: 100%;
  }
  
  .social-link {
    padding: 10px 16px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .footer-social {
    justify-content: center;
    width: 100%;
  }
  
  .main {
    padding: 16px 12px 80px;
  }
  
  .footer {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .coming-soon-title {
    font-size: 2rem;
  }
  
  .coming-soon-container {
    padding: 0.5rem;
  }
  
  .social-link {
    max-width: 100%;
  }
}

