/* VOLT — synthwave outrun editorial, neon gridfloor + scanlines
   Palette: deep purple #1a0830 / midnight #0a0418 / magenta #ff2db8 /
            neon cyan #13e6ff / electric purple #9e3bff / hot pink #ff5cd6 / chrome #f0eaff
   Display: Russo One. Body: clean grotesque. Glow text shadow, gridfloor, scanline overlay. */

.artist-volt {
  --bg: #0a0418;
  --plum: #1a0830;
  --magenta: #ff2db8;
  --cyan: #13e6ff;
  --purple: #9e3bff;
  --pink: #ff5cd6;
  --chrome: #f0eaff;
  --silver: #b8b0d0;
  --rule: #2d1450;
  background:
    /* fixed scanlines overlay */
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 3px),
    /* edge magenta glow */
    radial-gradient(1200px 600px at 100% 100%, rgba(255, 45, 184, 0.22), transparent 60%),
    radial-gradient(1100px 540px at 0% 0%, rgba(19, 230, 255, 0.14), transparent 60%),
    /* perspective gridfloor at bottom */
    linear-gradient(180deg, transparent 60%, rgba(158, 59, 255, 0.18) 100%),
    /* base */
    linear-gradient(180deg, var(--bg) 0%, var(--plum) 60%, #2a0d4a 100%);
  background-attachment: fixed;
  color: var(--chrome);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
}

.artist-volt .ar {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px 28px 80px;
  display: flex; flex-direction: column;
  gap: 40px;
  position: relative;
}

.artist-volt h1, .artist-volt h2, .artist-volt h3 {
  font-family: "Russo One", "Eurostile", "Arial Black", "Helvetica Neue", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
  color: var(--chrome);
}
.artist-volt h2 {
  font-size: 1.35rem;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border-bottom: 1px solid var(--purple);
  padding-bottom: 8px;
  letter-spacing: 0.12em;
}
.artist-volt h3 {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--cyan);
}

.artist-volt .ar-id {
  text-align: center;
  padding: 28px 0 26px;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.artist-volt .ar-id img {
  width: 156px; height: 156px;
  border: 2px solid var(--magenta);
  border-radius: 4px;
  background: var(--plum);
  box-shadow:
    0 0 0 4px var(--bg),
    0 0 18px rgba(255, 45, 184, 0.5),
    0 0 36px rgba(19, 230, 255, 0.25);
  filter: saturate(1.15);
}
.artist-volt .ar-name {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  margin: 22px 0 6px;
  letter-spacing: 0.02em;
  line-height: 1;
  background: linear-gradient(180deg, var(--chrome) 0%, var(--pink) 60%, var(--magenta) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 14px rgba(255, 92, 214, 0.55);
  filter: drop-shadow(0 0 18px rgba(255, 45, 184, 0.35));
}
.artist-volt .ar-genre {
  font-family: "Russo One", monospace;
  margin: 8px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.78rem;
  color: var(--cyan);
}
.artist-volt .ar-roles { margin: 14px 0 4px; }

.artist-volt .sf-tag {
  display: inline-block;
  background: rgba(158, 59, 255, 0.18);
  color: var(--cyan);
  border: 1px solid var(--purple);
  border-radius: 2px;
  padding: 3px 11px;
  font-family: "JetBrains Mono", "Consolas", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 6px 6px 0;
}
.artist-volt .sf-tags { list-style: none; padding: 0; margin: 0; }

.artist-volt a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid var(--magenta);
  padding-bottom: 1px;
  transition: color 0.25s ease, border-color 0.25s ease, text-shadow 0.25s ease;
}
.artist-volt a:hover { color: var(--pink); border-color: var(--cyan); text-shadow: 0 0 8px rgba(255, 92, 214, 0.6); }

.artist-volt .ar-going,
.artist-volt .ar-sound,
.artist-volt .ar-influences,
.artist-volt .ar-top,
.artist-volt .ar-off,
.artist-volt .ar-releases,
.artist-volt .ar-producer,
.artist-volt .ar-blurb {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}
.artist-volt .ar-producer { border-bottom: none; }

.artist-volt .ar-blurb p {
  font-size: 1.06rem;
  line-height: 1.85;
  color: var(--chrome);
  margin: 0;
}
.artist-volt .ar-going p { font-size: 1.02rem; line-height: 1.85; color: var(--silver); }

.artist-volt .ar-infl-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.artist-volt .ar-infl-cols ul { list-style: none; padding: 0; margin: 0; }
.artist-volt .ar-infl-cols li {
  padding: 7px 0;
  border-bottom: 1px dashed var(--rule);
  font-size: 0.92rem;
  color: var(--silver);
}

.artist-volt .ar-top__list { list-style: none; padding: 0; margin: 0; counter-reset: volt-count; }
.artist-volt .ar-top__list li {
  counter-increment: volt-count;
  padding: 14px 0 14px 56px;
  border-bottom: 1px dashed var(--rule);
  position: relative;
}
.artist-volt .ar-top__list li::before {
  content: counter(volt-count, decimal-leading-zero);
  position: absolute;
  left: 0; top: 14px;
  font-family: "Russo One", monospace;
  color: var(--magenta);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-shadow: 0 0 10px rgba(255, 45, 184, 0.6);
}
.artist-volt .ar-top__title { font-weight: 600; color: var(--chrome); }
.artist-volt .ar-top__by { color: var(--silver); }
.artist-volt .ar-top__note { display: block; color: var(--silver); margin-top: 4px; font-size: 0.9rem; font-style: italic; }

.artist-volt .ar-off ul { list-style: none; padding: 0; margin: 0; }
.artist-volt .ar-off li {
  padding: 10px 0 10px 22px;
  border-bottom: 1px dashed var(--rule);
  color: var(--silver);
  position: relative;
}
.artist-volt .ar-off li::before {
  content: "▸";
  position: absolute; left: 4px; top: 10px;
  color: var(--cyan);
}

.artist-volt .ar-releases__grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.artist-volt .ar-rel {
  padding: 18px;
  background: linear-gradient(135deg, rgba(158, 59, 255, 0.10) 0%, rgba(255, 45, 184, 0.06) 100%);
  border: 1px solid var(--purple);
  border-radius: 3px;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 92, 214, 0.18);
}
.artist-volt .ar-rel h3 {
  color: var(--pink);
  font-family: "Russo One", monospace;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  text-shadow: 0 0 8px rgba(255, 92, 214, 0.4);
}

@media (max-width: 720px) {
  .artist-volt .ar-infl-cols,
  .artist-volt .ar-releases__grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .artist-volt *, .artist-volt *::before, .artist-volt *::after { animation: none !important; transition: none !important; }
}
