* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --purple-dark: #2a1052;
  --purple-mid: #4a1a7a;
  --purple-light: #6b2a9e;
  --gold: #f5a623;
  --gold-light: #ffd700;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 20px;
  position: relative;
  overflow-x: hidden;
  color: #fff;
}

/* Animated pulsing background - smooth version */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(
    135deg,
    var(--purple-dark) 0%,
    var(--purple-mid) 50%,
    var(--purple-dark) 100%
  );
}

.background::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    ellipse at center,
    var(--purple-light) 0%,
    transparent 60%
  );
  opacity: 0.25;
  animation: breathe 8s ease-in-out infinite;
}

.background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(107, 42, 158, 0.3) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(90, 34, 144, 0.3) 0%,
      transparent 40%
    );
  opacity: 0.8;
  animation: drift 12s ease-in-out infinite;
}

@keyframes breathe {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.1);
  }
}

@keyframes drift {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* Main content */
.container {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* Title */
.title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 12vw, 6rem);
  letter-spacing: 0.15em;
  text-align: center;
  background: linear-gradient(
    180deg,
    var(--gold-light) 0%,
    var(--gold) 50%,
    #e8941a 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 60px rgba(245, 166, 35, 0.3);
  animation: titleGlow 4s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% {
    filter: drop-shadow(0 0 20px rgba(245, 166, 35, 0.2));
  }
  100% {
    filter: drop-shadow(0 0 40px rgba(245, 166, 35, 0.4));
  }
}

/* Cover image */
.cover-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 100px rgba(245, 166, 35, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  animation: coverFloat 6s ease-in-out infinite;
}

@keyframes coverFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.02);
  }
}

.cover-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 60%
  );
  animation: shimmer 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Subtitle */
.subtitle {
  font-size: clamp(1rem, 3vw, 1.3rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

.listen-text {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: -30px;
  font-style: italic;
}

/* Platform links */
.platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 20px 0;
}

.platform-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  text-decoration: none;
}

.platform-link:hover {
  transform: scale(1.2);
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(245, 166, 35, 0.3), 0 10px 40px rgba(0, 0, 0, 0.3);
}

.platform-link:active {
  transform: scale(1.15);
}

.platform-link svg,
.platform-link img {
  width: 28px;
  height: 28px;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.platform-link:hover svg,
.platform-link:hover img {
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(5deg);
  opacity: 1;
}

/* Player embed */
.player-container {
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.player-container iframe {
  display: block;
  width: 100%;
  min-height: 482px;
}

.social-link {
  margin: 25px 0;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.instagram-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.instagram-link img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

/* Footer */
.footer {
  margin-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}

.footer a {
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.description-content {
  max-width: 700px;
  width: 100%;
  margin-top: 0px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.description-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  text-align: left;
  margin: 0;
}

.footer a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  body {
    padding: 30px 15px;
  }

  .container {
    gap: 25px;
  }

  .cover-wrapper {
    max-width: 300px;
  }

  .platforms {
    gap: 18px;
  }

  .platform-link {
    width: 52px;
    height: 52px;
  }

  .platform-link svg {
    width: 24px;
    height: 24px;
  }

  .player-container iframe {
    min-height: 400px;
  }

  .footer {
    margin-top: 30px;
    font-size: 0.8rem;
  }
}

@media (max-width: 380px) {
  .cover-wrapper {
    max-width: 250px;
  }

  .subtitle {
    letter-spacing: 0.1em;
  }
}

/* Entry animations */
.container > *:not(.cover-wrapper) {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.container > *:nth-child(1) {
  animation-delay: 0.1s;
}
.container > *:nth-child(2) {
  animation-delay: 0.2s;
}
.container > *:nth-child(3) {
  animation-delay: 0.3s;
}
.container > *:nth-child(4) {
  animation-delay: 0.4s;
}
.container > *:nth-child(5) {
  animation-delay: 0.5s;
}
.container > *:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
