:root {
  --bg: #07080d;
  --bg-soft: #10121a;
  --card: #141722;
  --text: #f5f5f7;
  --muted: #9b9eaa;
  --accent: #8b5cf6;
  --accent-2: #22d3ee;
  --border: rgba(255, 255, 255, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

  body {
    font-family: "Inter", sans-serif;
    h1,
h2,
h3,
.logo {
  font-family: "Space Grotesk", sans-serif;
}
  background:
    radial-gradient(circle at 20% 10%, rgba(139, 92, 246, 0.13), transparent 35%),
    radial-gradient(circle at 80% 30%, rgba(34, 211, 238, 0.08), transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, 90%);
  margin: 0 auto;
}

/* NAVIGATION */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 8, 13, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  gap: 30px;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-links a:hover {
  color: white;
}

/* HERO */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.2),
    rgba(34, 211, 238, 0.08)
  );
  filter: blur(110px);
  top: 10%;
  right: -250px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.eyebrow {
  color: var(--accent-2);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.hero h1 span {
  display: block;
  background: linear-gradient(90deg, #ffffff, #a78bfa, #67e8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.2rem;
  margin-top: 30px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.25s ease;
}

.btn-primary {
  background: white;
  color: #090a0f;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.07);
}

/* SECTIONS */

section {
  padding: 110px 0;
}

.section-label {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2.1rem, 5vw, 4rem);
  margin-bottom: 45px;
  line-height: 1;
}

/* RELEASES */

.release-grid,
.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.025)
  );
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.16);
}

.card-visual {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.35), transparent 35%),
    linear-gradient(135deg, #171826, #090a10);
  color: rgba(255, 255, 255, 0.22);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.card-content {
  padding: 22px;
}

.card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.card-content p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ABOUT */

.about {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-text {
  max-width: 800px;
  color: var(--muted);
  font-size: 1.2rem;
}

/* CONTACT */

.contact-box {
  padding: 50px;
  border-radius: 28px;
  background:
    linear-gradient(
      135deg,
      rgba(139, 92, 246, 0.12),
      rgba(34, 211, 238, 0.05)
    );
  border: 1px solid var(--border);
}

.contact-box p {
  color: var(--muted);
  margin: 15px 0 25px;
}

/* FOOTER */

footer {
  padding: 35px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* MOBILE */

@media (max-width: 800px) {
  .nav-links {
    display: none;
  }

  .release-grid,
  .artist-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 18vw, 5.5rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  section {
    padding: 80px 0;
  }

  .contact-box {
    padding: 30px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
