@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap');

:root {
  --black: #050505;
  --dark: #050505;
  --darker: #050505;
  --navy: #050505;
  --purple: #7B2CBF;
  --red: #CCFF00;
  --cyan: #00F0FF;
  --silver: #A0A0A0;
  --white: #ffffff;
  --gray: #A0A0A0;
  --light-gray: #c0c0cc;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-hover: rgba(255, 255, 255, 0.06);
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'VT323', monospace;
  background: var(--black);
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Splash Screen */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 5, 5, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#splash.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#content {
  opacity: 0;
  transition: opacity 0.8s ease;
  position: relative;
  z-index: 1;
}

#content.visible {
  opacity: 1;
}

#particle-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

#splash img {
  width: 180px;
  height: auto;
  position: relative;
  z-index: 1;
  animation: splash-zoom 1.2s ease-out forwards;
}

#splash .splash-text {
  font-family: 'Press Start 2P', monospace;
  font-size: 1.2rem;
  color: var(--silver);
  margin-top: 24px;
  letter-spacing: 4px;
  position: relative;
  z-index: 1;
  animation: splash-fade 1.5s ease-in-out infinite;
}

@keyframes splash-zoom {
  0% { transform: scale(0.2); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes splash-fade {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  display: block;
}

::selection {
  background: var(--cyan);
  color: var(--black);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--cyan);
  border-radius: 3px;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  font-family: 'Press Start 2P', monospace;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.3rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.7;
}

.gradient-text {
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Press Start 2P', monospace;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(123, 44, 191, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(204, 255, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: var(--glass-hover);
  border-color: var(--red);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Press Start 2P', monospace;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--white);
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 1px;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(123, 44, 191, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 44, 191, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
}

.hero-glow-1 {
  top: -200px;
  right: -200px;
  background: var(--purple);
}

.hero-glow-2 {
  bottom: -200px;
  left: -200px;
  background: var(--cyan);
}

.hero-glow-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--red);
  opacity: 0.08;
  width: 800px;
  height: 800px;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 32px;
  background: var(--glass);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-logo {
  width: 120px;
  height: auto;
  margin: 0 auto 32px;
  filter: drop-shadow(0 0 40px rgba(123, 44, 191, 0.2));
}

.hero-title {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-title-line {
  display: block;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.35rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.85rem;
  font-family: 'Press Start 2P', monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gray), transparent);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* Featured Artists */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.artist-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  cursor: pointer;
}

.artist-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.artist-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--navy);
}

.artist-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.artist-card:hover .artist-card-image img {
  transform: scale(1.05);
}

.artist-card-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.artist-card:hover .artist-card-overlay {
  opacity: 1;
}

.artist-card-socials {
  display: flex;
  gap: 12px;
}

.artist-card-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.artist-card-socials a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.artist-card-socials a:hover {
  background: var(--cyan);
  color: var(--black);
  transform: translateY(-2px);
}

.artist-card-info {
  padding: 20px 24px;
}

.artist-card-info h3 {
  font-family: 'Press Start 2P', monospace;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.artist-card-info .role {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 400;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}

.stat-number {
  font-family: 'Press Start 2P', monospace;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Releases Section */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.release-card {
  background: var(--dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.release-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 240, 255, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.release-card-image {
  aspect-ratio: 1;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.release-card-image .play-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.release-card:hover .play-overlay {
  opacity: 1;
}

.play-btn-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.9);
  border: none;
  color: var(--black);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.play-btn-icon:hover {
  transform: scale(1.1);
  background: var(--cyan);
}

.release-card-info {
  padding: 20px;
}

.release-card-info h4 {
  font-family: 'Press Start 2P', monospace;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.release-card-info .artist-name {
  font-size: 1rem;
  color: var(--cyan);
  margin-bottom: 8px;
}

.release-card-info .release-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--gray);
}

/* Demo Section / Form */
.demo-section {
  position: relative;
  overflow: hidden;
}

.demo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--cyan), transparent);
}

.demo-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 48px;
}

.demo-info h3 {
  font-family: 'Press Start 2P', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.demo-info p {
  color: var(--gray);
  margin-bottom: 24px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.demo-info .guidelines {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
}

.demo-info .guidelines h4 {
  font-family: 'Press Start 2P', monospace;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

.demo-info .guidelines ul li {
  padding: 8px 0;
  font-size: 1.1rem;
  color: var(--light-gray);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.demo-info .guidelines ul li::before {
  content: '▸';
  color: var(--cyan);
  flex-shrink: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'VT323', monospace;
  font-size: 1.15rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
  opacity: 0.5;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.file-upload {
  position: relative;
}

.file-upload-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.file-upload-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 40px 24px;
  background: var(--dark);
  border: 2px dashed var(--glass-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  flex-direction: column;
}

.file-upload-label:hover,
.file-upload-label.dragover {
  border-color: var(--cyan);
  background: rgba(0, 240, 255, 0.04);
}

.file-upload-label .upload-icon {
  font-size: 2rem;
  color: var(--cyan);
}

.file-upload-label span {
  font-size: 1rem;
  color: var(--gray);
}

.file-upload-label .file-types {
  font-size: 0.85rem;
  color: var(--gray);
  opacity: 0.5;
}

.file-name {
  display: none;
  margin-top: 12px;
  padding: 10px 16px;
  background: rgba(0, 240, 255, 0.06);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--cyan);
  align-items: center;
  gap: 8px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.form-message {
  display: none;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-top: 16px;
  font-size: 1.1rem;
}

.form-message.success {
  display: block;
  background: rgba(0, 255, 100, 0.05);
  border: 1px solid rgba(0, 255, 100, 0.15);
  color: #CCFF00;
}

.form-message.error {
  display: block;
  background: rgba(123, 44, 191, 0.06);
  border: 1px solid rgba(123, 44, 191, 0.2);
  color: var(--purple);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 48px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-family: 'Press Start 2P', monospace;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-info-text p {
  color: var(--gray);
  font-size: 1.1rem;
}

.contact-socials {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.contact-socials a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gray);
  transition: var(--transition);
}

.contact-socials a:hover {
  background: var(--cyan);
  color: var(--black);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--gray);
  font-size: 1rem;
  max-width: 300px;
  line-height: 1.7;
}

.footer h4 {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--gray);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  font-size: 1rem;
  color: var(--gray);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--gray);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--cyan);
}

/* Page Header */
.page-header {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(123, 44, 191, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 44, 191, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-header-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  pointer-events: none;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header .section-title {
  margin-bottom: 12px;
}

.page-header .section-subtitle {
  margin: 0 auto;
}

/* Artist Detail Page (expanded) */
.artists-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.artist-detail-card {
  background: var(--dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.artist-detail-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 240, 255, 0.2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.artist-detail-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--navy);
}

.artist-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.artist-detail-card:hover .artist-detail-image img {
  transform: scale(1.05);
}

.artist-detail-body {
  padding: 28px;
}

.artist-detail-body h3 {
  font-family: 'Press Start 2P', monospace;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.artist-detail-body .genre {
  color: var(--cyan);
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: block;
}

.artist-detail-body .bio {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.artist-detail-socials {
  display: flex;
  gap: 12px;
}

.artist-detail-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: var(--transition);
}

.artist-detail-socials a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.artist-detail-socials a:hover {
  background: var(--cyan);
  color: var(--black);
  border-color: var(--cyan);
  transform: translateY(-2px);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(123, 44, 191, 0.06), rgba(0, 240, 255, 0.06));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto 32px;
  font-size: 1rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 1024px) {
  .about-grid,
  .demo-form-wrapper,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 1000;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .artists-grid {
    grid-template-columns: 1fr;
  }

  .releases-grid {
    grid-template-columns: 1fr;
  }

  .artists-detail-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 40px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .page-header {
    padding: 120px 0 60px;
  }

  .artist-card-socials {
    gap: 8px;
  }

  .artist-card-socials a {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  .hero-logo {
    width: 80px;
    margin-bottom: 24px;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 14px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }

  .container {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .artist-card-info {
    padding: 16px;
  }

  .artist-card-info h3 {
    font-size: 1rem;
  }

  .cta-banner {
    padding: 32px 20px;
  }

  .cta-banner h2 {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }
}
