@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;700;900&family=Playfair+Display:ital@0;1&display=swap');

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

:root {
  --green: #8dc63f;
  --green-dark: #6a9a2e;
  --green-glow: rgba(141, 198, 63, 0.4);
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #1a1a1a;
  --text: #f0f0f0;
  --text-muted: #888;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5%;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(141, 198, 63, 0.15);
  transition: all 0.3s;
}

nav.scrolled {
  padding: 12px 5%;
  background: rgba(10, 10, 10, 0.97);
}

.nav-logo img {
  height: 48px;
  filter: drop-shadow(0 0 8px var(--green-glow));
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-social {
  display: flex;
  gap: 14px;
}

.nav-social a {
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: color 0.3s, transform 0.3s;
}

.nav-social a:hover {
  color: var(--green);
  transform: translateY(-2px);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 60%, rgba(141, 198, 63, 0.07) 0%, transparent 70%),
    linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%);
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(141, 198, 63, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141, 198, 63, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 100px 20px 60px;
}

.hero-badge {
  display: inline-block;
  background: rgba(141, 198, 63, 0.12);
  border: 1px solid rgba(141, 198, 63, 0.3);
  color: var(--green);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}

.hero-band-logo {
  margin-bottom: 20px;
  animation: fadeInDown 0.9s 0.1s ease both;
}

.hero-band-logo img {
  height: 100px;
  filter: drop-shadow(0 0 20px var(--green-glow));
}

/* ── VINYL + ALBUM COVER WRAPPER ── */
.vinyl-wrapper {
  position: relative;
  margin: 30px auto;
  animation: fadeIn 1s 0.3s ease both;
  width: 660px;
  height: 360px;
  max-width: 90vw;
}

/* Album cover: LEFT side, bigger, in FRONT (z-index 2) */
.album-cover-wrap {
  width: 380px;
  height: 380px;
  /*border-radius: 14px;*/
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  box-shadow:
    6px 0 40px rgba(0, 0, 0, 0.9),
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(141, 198, 63, 0.2);
  animation: fadeIn 0.8s 0.2s ease both;
}

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

/* Shadow on right edge so vinyl looks like it emerges from inside */
.album-cover-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Vinyl: BEHIND album cover (z-index 1), slides out to the RIGHT */
.vinyl-container {
  position: absolute;
  width: 310px;
  height: 310px;
  left: 20px;
  /* final resting: overlaps cover's right edge ~25px */
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  animation: slideVinylRight 1.5s 0.5s cubic-bezier(0.34, 1.3, 0.64, 1) both;
}

@keyframes slideVinylRight {
  0% {
    left: 20px;
  }

  /* hidden behind album cover */
  100% {
    left: 310px;
  }

  /* slid out to the right, ~30px overlap with cover */
}

.vinyl-record {
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #1a1a1a 0%, #111 30%, #0d0d0d 50%, #111 70%, #0a0a0a 100%);
  box-shadow:
    0 0 0 2px #222,
    0 0 0 8px #111,
    0 0 0 10px #1a1a1a,
    0 0 40px rgba(0, 0, 0, 0.8),
    0 0 80px var(--green-glow);
  position: relative;
  animation: spinVinyl 8s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vinyl-record::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at center,
      transparent 0px,
      transparent 8px,
      rgba(141, 198, 63, 0.04) 8px,
      rgba(141, 198, 63, 0.04) 9px);
}

.vinyl-label {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, #1e2e10 0%, #111 100%);
  border: 3px solid var(--green-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(141, 198, 63, 0.3);
  overflow: hidden;
}

.vinyl-label img {
  width: 90px;
  object-fit: contain;
  filter: brightness(1.2);
}

.vinyl-hole {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0a0a0a;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  box-shadow: 0 0 0 2px #333;
}

.vinyl-needle {
  position: absolute;
  top: -20px;
  right: 20px;
  width: 4px;
  height: 120px;
  background: linear-gradient(180deg, #999 0%, #555 100%);
  border-radius: 2px;
  transform-origin: top center;
  transform: rotate(25deg);
  z-index: 10;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.vinyl-needle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green);
}

@keyframes spinVinyl {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ── MINI AUDIO PLAYER ── */
.mini-player {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeInUp 1s 0.8s ease both;
  width: 100%;
}

.player-label {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(141, 198, 63, 0.2);
  border-radius: 50px;
  padding: 10px 24px;
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 380px;
}

.play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #000;
  transition: all 0.3s;
  box-shadow: 0 0 20px var(--green-glow);
  flex-shrink: 0;
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 35px var(--green-glow);
}

.progress-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-grow: 1;
}

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

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  border-radius: 4px;
  transition: width 0.1s linear;
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.time-display {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  min-width: 38px;
}

.volume-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  transition: color 0.3s;
  padding: 4px;
}

.volume-btn:hover {
  color: var(--green);
}

.hero-single-title {
  margin-top: 10px;
  animation: fadeInUp 0.9s 0.5s ease both;
}

.hero-single-title img {
  height: 80px;
  filter: drop-shadow(0 0 15px var(--green-glow));
}

.hero-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-top: 8px;
  animation: fadeInUp 0.9s 0.6s ease both;
}

/* ── PLATFORMS ── */
#platforms {
  padding: 80px 5%;
  background: var(--bg2);
  text-align: center;
}

.section-title {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-style: italic;
  margin-bottom: 50px;
  color: var(--text);
}

.platforms-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.platform-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--bg3);
  color: var(--text);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.platform-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.platform-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border-color: transparent;
}

.platform-btn:hover::before {
  opacity: 1;
}

.platform-btn:hover .btn-icon,
.platform-btn:hover .btn-text {
  position: relative;
  z-index: 1;
}

.platform-btn.amazon {
  --c1: #00A8E1;
  --c2: #007aaa;
}

.platform-btn.anghami {
  --c1: #8A2BE2;
  --c2: #4B0082;
}

.platform-btn.apple {
  --c1: #fc3c44;
  --c2: #b02c31;
}

.platform-btn.deezer {
  --c1: #a238ff;
  --c2: #7700cc;
}

.platform-btn.meta {
  --c1: #0668E1;
  --c2: #044b9e;
}

.platform-btn.pandora {
  --c1: #005483;
  --c2: #003655;
}

.platform-btn.qobuz {
  --c1: #222222;
  --c2: #000000;
}

.platform-btn.qqmusic {
  --c1: #25C271;
  --c2: #1e9959;
}

.platform-btn.spotify {
  --c1: #1DB954;
  --c2: #158a3e;
}

.platform-btn.tiktok {
  --c1: #ff0050;
  --c2: #00f2fe;
}

.platform-btn.vk {
  --c1: #4C75A3;
  --c2: #274b73;
}

.platform-btn.yandex {
  --c1: #FFCC00;
  --c2: #cc9900;
  color: #ffffff;
}

.platform-btn.youtube {
  --c1: #FF0000;
  --c2: #b30000;
}

.platform-btn::before {
  background: linear-gradient(135deg, var(--c1), var(--c2));
}

.btn-icon {
  font-size: 1.2rem;
  line-height: 1;
}

/* ── ABOUT ── */
#about {
  padding: 100px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-logo-wrap {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 198, 63, 0.1) 0%, transparent 70%);
  border: 1px solid rgba(141, 198, 63, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 3s ease-in-out infinite;
}

.about-logo-wrap img {
  width: 220px;
  filter: drop-shadow(0 0 20px var(--green-glow));
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 30px rgba(141, 198, 63, 0.2);
  }

  50% {
    box-shadow: 0 0 60px rgba(141, 198, 63, 0.4);
  }
}

.about-text .section-title {
  text-align: left;
}

.about-text .section-heading {
  text-align: left;
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.about-text p strong {
  color: var(--green);
}

/* ── SOCIAL ── */
#social {
  padding: 80px 5%;
  background: var(--bg2);
  text-align: center;
}

.social-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 32px;
  border-radius: 16px;
  background: var(--bg3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
  min-width: 120px;
}

.social-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: 0 12px 40px rgba(141, 198, 63, 0.2);
}

.social-icon {
  font-size: 2rem;
  line-height: 1;
}

.social-name {
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}

.social-card:hover .social-name {
  color: var(--green);
}

/* ── FOOTER ── */
footer {
  padding: 40px 5%;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 1px;
}

footer span {
  color: var(--green);
}

/* ── ANIMATIONS ── */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .vinyl-container {
    width: 260px;
    height: 260px;
  }

  .vinyl-record {
    width: 260px;
    height: 260px;
  }

  #about {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-text .section-title,
  .about-text .section-heading {
    text-align: center;
  }

  .about-logo-wrap {
    width: 220px;
    height: 220px;
  }

  .about-logo-wrap img {
    width: 160px;
  }
}