:root {
  --bg: #06030d;
  --card: rgba(255,255,255,0.05);
  --text: #f5f1ea;
  --muted: #c8bfd6;
  --gold: #f5c96b;
  --gold-2: #c98a1c;
  --neon-purple: #8f47ff;
  --neon-blue: #2ab9ff;
  --border: rgba(255,255,255,0.12);
  --shadow-gold: 0 0 25px rgba(245, 201, 107, 0.28);
  --shadow-purple: 0 0 35px rgba(143, 71, 255, 0.28);
  --max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(143,71,255,0.22), transparent 25%),
    radial-gradient(circle at 80% 25%, rgba(42,185,255,0.18), transparent 20%),
    radial-gradient(circle at 50% 70%, rgba(245,201,107,0.12), transparent 22%),
    linear-gradient(180deg, #030108 0%, #080312 50%, #030108 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 90px 90px, 45px 45px;
  background-position: 0 0, 20px 20px;
  pointer-events: none;
  opacity: .18;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px); // ultimate-css-ignore-line
  background: rgba(6,3,13,.72);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-inner {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--gold);
  text-decoration: none;
  text-shadow: var(--shadow-gold);
}

.menu {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}

.menu a {
  color: var(--text);
  text-decoration: none;
  font-size: .95rem;
  transition: .25s ease;
}

.menu a:hover { color: var(--gold); }

.hero {
  padding: 70px 0 40px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
  min-height: 80vh;
}

.eyebrow {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  line-height: .95;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 18px;
  text-shadow: 0 0 35px rgba(0,0,0,0.55);
}

.gradient-text {
  background: linear-gradient(90deg, #fff3cf, var(--gold), #fff0be);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 620px;
  line-height: 1.8;
  margin-bottom: 26px;
}

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  text-decoration: none;
  color: white;
  border-radius: 14px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-gold { border-color: rgba(245,201,107,.45); box-shadow: var(--shadow-gold); }
.btn-purple { border-color: rgba(143,71,255,.45); box-shadow: var(--shadow-purple); }
.btn-blue { border-color: rgba(42,185,255,.45); box-shadow: 0 0 35px rgba(42,185,255,.22); }

.hero-visual {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glow-orb,
.glow-orb-2,
.glow-orb-3 {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  z-index: 0;
}

.glow-orb { width: 230px; height: 230px; background: rgba(143,71,255,.45); top: 8%; right: 12%; }
.glow-orb-2 { width: 260px; height: 260px; background: rgba(42,185,255,.3); left: 5%; bottom: 18%; }
.glow-orb-3 { width: 220px; height: 220px; background: rgba(245,201,107,.22); right: 18%; bottom: 5%; }

.hero-card {
  position: relative;
  z-index: 2;
  width: min(100%, 470px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  box-shadow: 0 25px 80px rgba(0,0,0,.45), 0 0 40px rgba(143,71,255,.18);
}

.hero-card img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.42) 70%, rgba(0,0,0,.75));
}

.hero-tag {
  position: absolute;
  left: 22px;
  bottom: 24px;
  z-index: 3;
}

.hero-tag h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

.hero-tag span {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 14px;
}

.section-sub {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 34px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}

.about-points {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.about-points div {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
}

.music-feature {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: center;
}

.music-feature img,
.visual-card img,
.collab-card img,
.merch-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.music-cover {
  height: 180px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}

.music-meta h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.pill-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }

.pill {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: white;
  text-decoration: none;
  font-size: .95rem;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.visual-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
}

.visual-card img { height: 320px; }

.visual-card .cap {
  padding: 16px;
  color: var(--muted);
  font-size: .95rem;
}

.collab-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.collab-card,
.merch-card {
  min-height: 480px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.1);
}

.collab-card img,
.merch-card img { height: 100%; }

.overlay-panel {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.82));
}

.overlay-panel h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.overlay-panel p {
  color: #dfd7e7;
  line-height: 1.7;
  margin-bottom: 16px;
}

.list {
  display: grid;
  gap: 12px;
  margin: 18px 0 24px;
}

.list div {
  padding: 14px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-box a {
  color: var(--text);
  text-decoration: none;
}

.contact-box p { color: var(--muted); line-height: 1.8; margin-top: 12px; }

.footer {
  padding: 28px 0 60px;
  color: #aa9fba;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.08);
}

@media (max-width: 1024px) {
  .hero-grid,
  .grid-2,
  .collab-grid,
  .contact-grid,
  .visual-grid,
  .music-feature {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 40px; }
  .hero-visual { min-height: auto; }
  .hero-card img { height: 520px; }
  .nav-inner { gap: 18px; align-items: flex-start; flex-direction: column; }
  .menu { gap: 14px; }
}

@media (max-width: 640px) {
  .hero-card img { height: 430px; }
  .hero-tag h2 { font-size: 2rem; }
  .btn { width: 100%; }
  .music-cover { height: 220px; }
}