@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Inter:wght@300;400;500&display=swap');

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue-glow: #3b82f6;
  --blue-bright: #60a5fa;
  --orange-fire: #f97316;
  --orange-warm: #fb923c;
  --bg-dark: #0a0a0f;
  --bg-card: #111118;
  --bg-card-hover: #16161f;
  --text-primary: #e8e8ed;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 80%, rgba(249, 115, 22, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-image-wrapper {
  position: relative;
  width: 260px;
  height: 260px;
  margin-bottom: 2rem;
  z-index: 1;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--blue-glow), transparent 30%, var(--orange-fire), transparent 60%, var(--blue-glow));
  opacity: 0.6;
  animation: spin 8s linear infinite;
  z-index: -1;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(59, 130, 246, 0.3);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-primary) 40%, var(--blue-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 1;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  z-index: 1;
}

.hero-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--spotify {
  background: #1db954;
  color: #fff;
  box-shadow: 0 4px 20px rgba(29, 185, 84, 0.3);
}

.btn--spotify:hover {
  box-shadow: 0 6px 28px rgba(29, 185, 84, 0.45);
}

.btn--apple {
  background: linear-gradient(135deg, #fc3c44, #a833b9);
  color: #fff;
  box-shadow: 0 4px 20px rgba(252, 60, 68, 0.3);
}

.btn--apple:hover {
  box-shadow: 0 6px 28px rgba(252, 60, 68, 0.45);
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-hint svg {
  width: 20px;
  height: 20px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- SECTION ---- */
section {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-title .accent-blue {
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title .accent-orange {
  background: linear-gradient(135deg, var(--orange-fire), var(--orange-warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-weight: 300;
}

/* ---- ALBUM CARD ---- */
.album {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
  transition: border-color 0.3s;
}

.album:hover {
  border-color: rgba(59, 130, 246, 0.2);
}

.album--upcoming {
  border-color: rgba(249, 115, 22, 0.15);
}

.album--upcoming:hover {
  border-color: rgba(249, 115, 22, 0.3);
}

.album-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.album-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.album-badge {
  display: inline-block;
  width: fit-content;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.album-badge--released {
  background: rgba(59, 130, 246, 0.15);
  color: var(--blue-bright);
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.album-badge--upcoming {
  background: rgba(249, 115, 22, 0.15);
  color: var(--orange-warm);
  border: 1px solid rgba(249, 115, 22, 0.25);
}

.album-title {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.album-meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.tracklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1.5rem;
}

.tracklist li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.tracklist li .track-num {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  min-width: 1.5rem;
  text-align: right;
}

/* ---- ABOUT ---- */
.about-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ---- FOOTER ---- */
.footer {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-primary);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .album {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .album-cover {
    max-width: 280px;
    margin: 0 auto;
  }

  .album-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .tracklist {
    grid-template-columns: 1fr;
  }

  .hero-image-wrapper {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .hero-links {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }
}
