/* Artistes — galerie cinéma D.Majin */

.page-artistes {
  --art-neon: #00f5d4;
  --art-pink: #ff4fd8;
  --art-violet: #8b5cff;
  --art-mango: #ffb428;
  --art-bg: #050608;
  background:
    radial-gradient(ellipse 90% 50% at 50% -10%, rgba(0, 245, 212, 0.07), transparent 55%),
    var(--art-bg);
  color: #e8eef2;
}

.page-artistes .page-content {
  opacity: 1;
  animation: none;
  overflow-x: clip;
}

/* ========== HERO ========== */
.art-hero {
  position: relative;
  min-height: clamp(22rem, 78vh, 38rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding:
    max(5.5rem, calc(env(safe-area-inset-top) + 4rem))
    1.25rem
    0;
  overflow: hidden;
  isolation: isolate;
}

.art-hero-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3px;
  z-index: 0;
  transform: scale(1.04);
  animation: artMosaicDrift 22s ease-in-out infinite alternate;
}

.art-hero-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.05);
}

.art-hero-mosaic img:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 3; }
.art-hero-mosaic img:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
.art-hero-mosaic img:nth-child(3) { grid-column: 3 / 4; grid-row: 1 / 2; }
.art-hero-mosaic img:nth-child(4) { grid-column: 4 / 5; grid-row: 1 / 3; }
.art-hero-mosaic img:nth-child(5) { grid-column: 2 / 3; grid-row: 2 / 3; }
.art-hero-mosaic img:nth-child(6) { grid-column: 3 / 4; grid-row: 2 / 3; }
.art-hero-mosaic img:nth-child(7),
.art-hero-mosaic img:nth-child(8) { display: none; }

@media (min-width: 900px) {
  .art-hero-mosaic {
    grid-template-columns: repeat(6, 1fr);
  }
  .art-hero-mosaic img:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 3; }
  .art-hero-mosaic img:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
  .art-hero-mosaic img:nth-child(3) { grid-column: 3 / 5; grid-row: 1 / 2; }
  .art-hero-mosaic img:nth-child(4) { grid-column: 5 / 6; grid-row: 1 / 3; }
  .art-hero-mosaic img:nth-child(5) { grid-column: 2 / 3; grid-row: 2 / 3; }
  .art-hero-mosaic img:nth-child(6) { grid-column: 3 / 4; grid-row: 2 / 3; }
  .art-hero-mosaic img:nth-child(7) {
    display: block;
    grid-column: 4 / 5;
    grid-row: 2 / 3;
  }
  .art-hero-mosaic img:nth-child(8) {
    display: block;
    grid-column: 6 / 7;
    grid-row: 1 / 3;
  }
}

@keyframes artMosaicDrift {
  from { transform: scale(1.02) translateY(0); }
  to { transform: scale(1.08) translateY(-1.5%); }
}

.art-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.35) 0%, rgba(5, 6, 8, 0.55) 40%, rgba(5, 6, 8, 0.92) 78%, #050608 100%),
    radial-gradient(ellipse 70% 55% at 50% 100%, rgba(0, 245, 212, 0.12), transparent 60%);
  pointer-events: none;
}

.art-hero-fx {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.art-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(0, 245, 212, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 212, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 80%);
  animation: artGridDrift 24s linear infinite;
}

@keyframes artGridDrift {
  from { background-position: 0 0; }
  to { background-position: 40px 40px; }
}

.art-hero-scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.08) 2px,
    rgba(0, 0, 0, 0.08) 4px
  );
  opacity: 0.35;
  mix-blend-mode: multiply;
}

.art-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.5;
  animation: artOrb 9s ease-in-out infinite alternate;
}
.art-hero-orb--1 {
  width: 260px; height: 260px;
  left: -60px; bottom: 15%;
  background: rgba(255, 79, 216, 0.45);
}
.art-hero-orb--2 {
  width: 200px; height: 200px;
  right: 5%; top: 18%;
  background: rgba(0, 245, 212, 0.4);
  animation-delay: -3s;
}
.art-hero-orb--3 {
  width: 160px; height: 160px;
  left: 40%; top: 8%;
  background: rgba(139, 92, 255, 0.35);
  animation-delay: -5s;
}

@keyframes artOrb {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(20px, -14px) scale(1.15); }
}

.art-sparkles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 245, 212, 0.9);
  opacity: 0;
  animation: artSpark 3.8s ease-in-out infinite;
}

@keyframes artSpark {
  0%, 100% { opacity: 0; transform: scale(0.4); }
  40% { opacity: 0.9; transform: scale(1); }
  70% { opacity: 0.2; }
}

.art-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 44rem;
  padding-bottom: 1.75rem;
  animation: artFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes artFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.art-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--art-neon);
  text-shadow: 0 0 18px rgba(0, 245, 212, 0.45);
}

.art-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--art-neon);
  box-shadow: 0 0 0 0 rgba(0, 245, 212, 0.6);
  animation: artPulse 1.8s ease-out infinite;
}

@keyframes artPulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 245, 212, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(0, 245, 212, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 245, 212, 0); }
}

.art-hero-title {
  margin: 0 0 0.7rem;
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: clamp(2.8rem, 11vw, 5rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.65);
}

.art-hero-title span {
  background: linear-gradient(105deg, var(--art-neon) 0%, #7afcff 40%, var(--art-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.art-hero-lead {
  margin: 0 0 1.25rem;
  max-width: 28rem;
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  line-height: 1.5;
  color: rgba(235, 242, 246, 0.82);
}

.art-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 245, 212, 0.45);
  background: linear-gradient(135deg, rgba(0, 245, 212, 0.22), rgba(0, 245, 212, 0.06));
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  box-shadow: 0 0 28px rgba(0, 245, 212, 0.18);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.art-hero-cta:hover {
  transform: translateY(-2px);
  border-color: var(--art-neon);
  box-shadow: 0 0 36px rgba(0, 245, 212, 0.35);
}

.art-hero-cta span {
  animation: artBounce 1.4s ease-in-out infinite;
}

@keyframes artBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* Marquee */
.art-marquee {
  position: relative;
  z-index: 3;
  margin: 0 -1.25rem;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(0, 245, 212, 0.2);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.art-marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: artMarquee 32s linear infinite;
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.art-marquee-track span::after {
  content: "✦";
  margin-left: 2.5rem;
  color: var(--art-neon);
  opacity: 0.7;
}

@keyframes artMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== CHIPS sticky ========== */
.art-chips {
  position: sticky;
  top: max(3.6rem, calc(env(safe-area-inset-top) + 3.2rem));
  z-index: 40;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  padding: 0.65rem 1.15rem;
  max-width: 1140px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: rgba(5, 6, 8, 0.72);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.art-chips::-webkit-scrollbar { display: none; }

.art-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.art-chip:hover {
  border-color: rgba(0, 245, 212, 0.45);
  color: var(--art-neon);
  background: rgba(0, 245, 212, 0.08);
  transform: translateY(-1px);
}

.art-chip.is-active {
  border-color: rgba(0, 245, 212, 0.55);
  background: rgba(0, 245, 212, 0.14);
  color: #fff;
  box-shadow: 0 0 18px rgba(0, 245, 212, 0.2);
}

.art-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--art-neon);
  box-shadow: 0 0 8px var(--art-neon);
}

.art-chip-dot--pink { background: var(--art-pink); box-shadow: 0 0 8px var(--art-pink); }
.art-chip-dot--violet { background: var(--art-violet); box-shadow: 0 0 8px var(--art-violet); }

/* ========== ARTIST BLOCKS ========== */
.art-shell {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1.5rem 1.15rem 2.5rem;
}

.art-artist {
  position: relative;
  margin: 2.75rem 0 0;
  padding: 1.5rem 1.2rem 1.35rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), transparent 45%),
    rgba(10, 12, 16, 0.88);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.4);
  scroll-margin-top: 7rem;
  overflow: hidden;
}

.art-artist-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  top: -80px;
  right: -60px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
  background: rgba(0, 245, 212, 0.35);
}

.art-artist--neon {
  border-color: rgba(0, 245, 212, 0.35);
  box-shadow: 0 0 0 1px rgba(0, 245, 212, 0.1), 0 22px 60px rgba(0, 0, 0, 0.45);
}
.art-artist--neon .art-artist-glow { background: rgba(0, 245, 212, 0.4); }
.art-artist--neon .art-artist-avatar { border-color: rgba(0, 245, 212, 0.65); }

.art-artist--mango { border-color: rgba(255, 180, 40, 0.35); }
.art-artist--mango .art-artist-glow { background: rgba(255, 180, 40, 0.35); }
.art-artist--mango .art-artist-avatar { border-color: rgba(255, 180, 40, 0.65); }
.art-artist--mango .art-artist-handle { color: var(--art-mango); }

.art-artist--fabio { border-color: rgba(255, 79, 216, 0.35); }
.art-artist--fabio .art-artist-glow { background: rgba(255, 79, 216, 0.35); }
.art-artist--fabio .art-artist-avatar { border-color: rgba(255, 79, 216, 0.65); }
.art-artist--fabio .art-artist-handle { color: var(--art-pink); }

.art-artist--croquis { border-color: rgba(122, 252, 255, 0.28); }
.art-artist--croquis .art-artist-glow { background: rgba(122, 252, 255, 0.28); }

.art-artist--sabra { border-color: rgba(139, 92, 255, 0.35); }
.art-artist--sabra .art-artist-glow { background: rgba(139, 92, 255, 0.35); }
.art-artist--sabra .art-artist-handle { color: #b9a0ff; }

.art-artist--bidules { border-color: rgba(255, 140, 80, 0.35); }
.art-artist--bidules .art-artist-glow { background: rgba(255, 140, 80, 0.32); }
.art-artist--bidules .art-artist-handle { color: #ffb07a; }

.art-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.art-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.art-artist-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem 1.15rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.art-artist-avatar-wrap {
  position: relative;
}

.art-artist-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(0, 245, 212, 0.5);
  box-shadow: 0 0 28px rgba(0, 245, 212, 0.25);
  background: #111;
}

.art-artist-badge {
  position: absolute;
  bottom: -4px;
  right: -6px;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a0e12;
  background: linear-gradient(135deg, #00f5d4, #7afcff);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.art-artist-badge--mango {
  background: linear-gradient(135deg, #ffb428, #ff8b6a);
}
.art-artist-badge--fabio {
  background: linear-gradient(135deg, #ff4fd8, #b48cff);
  color: #fff;
}

.art-artist-index {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(220, 230, 236, 0.45);
}

.art-artist-meta h2 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: clamp(1.7rem, 4.5vw, 2.25rem);
  letter-spacing: 0.04em;
  color: #fff;
}

.art-artist-handle {
  margin: 0;
  font-size: 0.92rem;
  color: var(--art-neon);
  font-weight: 600;
}

.art-artist-role {
  margin: 0.3rem 0 0;
  font-size: 0.78rem;
  color: rgba(220, 230, 236, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.art-artist-bio {
  margin: 0.35rem 0 0;
  grid-column: 1 / -1;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(230, 238, 242, 0.8);
  max-width: 52rem;
}

.art-artist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-self: start;
}

.art-artist-actions .btn {
  min-height: 42px;
  white-space: nowrap;
}

/* ========== GALLERIES ========== */
.art-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.7rem;
  margin-top: 0.35rem;
}

.art-gallery--bento {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 700px) {
  .art-gallery--bento {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(140px, 1fr);
  }
  .art-gallery--bento .art-work--featured {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
    min-height: 100%;
  }
}

.art-gallery--wide {
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .art-gallery--wide {
    grid-template-columns: 1fr 1fr;
  }
  .art-gallery--wide .art-work--featured {
    aspect-ratio: 4 / 3;
  }
}

.art-work {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0c0e12;
  cursor: zoom-in;
  padding: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s, box-shadow 0.35s;
}

.art-work img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s;
}

.art-work-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.6rem 0.75rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  text-align: left;
  pointer-events: none;
}

.art-work::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 245, 212, 0.12), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
  pointer-events: none;
}

.art-work:hover,
.art-work:focus-visible {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(0, 245, 212, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 28px rgba(0, 245, 212, 0.15);
  outline: none;
  z-index: 2;
}

.art-work:hover img,
.art-work:focus-visible img {
  transform: scale(1.08);
  filter: saturate(1.1);
}

.art-work:hover .art-work-cap,
.art-work:focus-visible .art-work-cap,
.art-work:hover::before,
.art-work:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}

.art-work--featured .art-work-cap {
  font-size: 0.9rem;
  padding-bottom: 0.85rem;
}

/* ========== LIGHTBOX ========== */
.art-lightbox {
  position: fixed;
  inset: 0;
  z-index: 30000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s, visibility 0.28s;
}

.art-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.art-lightbox-figure {
  margin: 0;
  max-width: min(96vw, 960px);
  text-align: center;
}

.art-lightbox img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65), 0 0 40px rgba(0, 245, 212, 0.12);
}

.art-lightbox figcaption {
  margin-top: 0.85rem;
  font-size: 0.95rem;
  color: rgba(235, 242, 246, 0.85);
  letter-spacing: 0.02em;
}

.art-lightbox-close,
.art-lightbox-nav {
  position: absolute;
  border-radius: 14px;
  border: 1px solid rgba(0, 245, 212, 0.4);
  background: rgba(10, 12, 16, 0.92);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.art-lightbox-close:hover,
.art-lightbox-nav:hover {
  border-color: var(--art-neon);
  background: rgba(0, 245, 212, 0.12);
}

.art-lightbox-close {
  top: max(0.75rem, env(safe-area-inset-top));
  right: max(0.75rem, env(safe-area-inset-right));
  width: 48px;
  height: 48px;
  font-size: 1.75rem;
}

.art-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 56px;
  font-size: 2rem;
  line-height: 1;
}

.art-lightbox-prev { left: max(0.5rem, env(safe-area-inset-left)); }
.art-lightbox-next { right: max(0.5rem, env(safe-area-inset-right)); }

/* Collab (paused) */
.art-collab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.art-collab-card {
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

/* ========== NEOH SPOTLIGHT ========== */
.neoh-spot {
  position: relative;
  margin-top: 3.25rem;
  padding: 1.5rem 1.25rem 1.6rem;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  scroll-margin-top: 7rem;
  border: 1px solid transparent;
  background:
    linear-gradient(#0a0c12, #0a0c12) padding-box,
    linear-gradient(120deg, #ff2d95, #00f5d4 45%, #ff2d95) border-box;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(255, 45, 149, 0.12),
    inset 0 1px 0 rgba(0, 245, 212, 0.1);
}

.neoh-spot-fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.neoh-spot-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(0, 245, 212, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 45, 149, 0.1) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 70% at 30% 20%, #000 20%, transparent 75%);
  animation: artGridDrift 18s linear infinite;
}

.neoh-spot-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(0, 245, 212, 0.08), transparent);
  animation: neohScan 5.5s ease-in-out infinite;
}

@keyframes neohScan {
  0% { top: -30%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.neoh-spot-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.55;
}
.neoh-spot-orb--a {
  width: 220px; height: 220px;
  top: -60px; right: -40px;
  background: rgba(255, 45, 149, 0.45);
  animation: artOrb 8s ease-in-out infinite alternate;
}
.neoh-spot-orb--b {
  width: 180px; height: 180px;
  bottom: -50px; left: -30px;
  background: rgba(0, 245, 212, 0.35);
  animation: artOrb 9s ease-in-out infinite alternate-reverse;
}

.neoh-spot-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.neoh-spot-frame {
  position: absolute;
  inset: 10px;
  z-index: 1;
  pointer-events: none;
}

.neoh-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 245, 212, 0.65);
}
.neoh-corner--tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.neoh-corner--tr { top: 0; right: 0; border-left: 0; border-bottom: 0; border-color: rgba(255, 45, 149, 0.7); }
.neoh-corner--bl { bottom: 0; left: 0; border-right: 0; border-top: 0; border-color: rgba(255, 45, 149, 0.55); }
.neoh-corner--br { bottom: 0; right: 0; border-left: 0; border-top: 0; }

.neoh-spot-top,
.neoh-spot-layout {
  position: relative;
  z-index: 2;
}

.neoh-spot-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.neoh-spot-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 245, 212, 0.9);
}

.neoh-online {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #39ff9a;
  box-shadow: 0 0 0 0 rgba(57, 255, 154, 0.55);
  animation: artPulse 1.8s ease-out infinite;
}

.neoh-spot-badge {
  flex: 0 0 auto;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0a0e12;
  background: linear-gradient(135deg, #ff2d95, #ff6bb5 50%, #00f5d4);
  box-shadow: 0 0 22px rgba(255, 45, 149, 0.45);
  animation: neohBadgeGlow 2.8s ease-in-out infinite alternate;
}

@keyframes neohBadgeGlow {
  from { box-shadow: 0 0 16px rgba(255, 45, 149, 0.35); }
  to { box-shadow: 0 0 28px rgba(0, 245, 212, 0.35), 0 0 40px rgba(255, 45, 149, 0.4); }
}

.neoh-spot-layout {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 760px) {
  .neoh-spot-layout {
    grid-template-columns: minmax(180px, 220px) 1fr;
    gap: 1.75rem;
    align-items: start;
  }
}

.neoh-spot-hud {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0.85rem;
  border-radius: 18px;
  border: 1px solid rgba(0, 245, 212, 0.18);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.neoh-avatar {
  position: relative;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
}

.neoh-avatar-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  background:
    linear-gradient(#0a0c12, #0a0c12) padding-box,
    linear-gradient(135deg, #ff2d95, #00f5d4, #ff2d95) border-box;
  animation: neohSpin 10s linear infinite;
}

@keyframes neohSpin {
  to { transform: rotate(360deg); }
}

.neoh-avatar-letter {
  position: relative;
  z-index: 1;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: 3rem;
  letter-spacing: 0.04em;
  color: #fff;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 45, 149, 0.35), transparent 55%),
    radial-gradient(circle at 70% 75%, rgba(0, 245, 212, 0.25), transparent 50%),
    #10141c;
  text-shadow: 0 0 20px rgba(0, 245, 212, 0.55);
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.45);
}

.neoh-avatar-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(0, 245, 212, 0.35);
  animation: artPulse 2.2s ease-out infinite;
}

.neoh-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.neoh-tags li {
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(235, 242, 246, 0.8);
  background: rgba(255, 255, 255, 0.04);
}

.neoh-term {
  width: 100%;
  margin: 0;
  padding: 0.7rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 245, 212, 0.15);
  background: rgba(0, 8, 12, 0.65);
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.68rem;
  line-height: 1.55;
  color: rgba(180, 220, 210, 0.75);
  overflow: hidden;
}

.neoh-term-line { display: block; }
.neoh-term em {
  font-style: normal;
  color: var(--art-neon);
  font-weight: 700;
}
.neoh-term-cursor {
  color: var(--art-pink);
  animation: neohBlink 1s steps(1) infinite;
}
@keyframes neohBlink {
  50% { opacity: 0; }
}

.neoh-spot-title {
  position: relative;
  margin: 0 0 0.35rem;
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: clamp(3rem, 10vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 0 24px rgba(255, 45, 149, 0.45),
    0 0 48px rgba(0, 245, 212, 0.2);
}

.neoh-spot-title::before,
.neoh-spot-title::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
  opacity: 0.75;
  pointer-events: none;
}
.neoh-spot-title::before {
  color: #ff2d95;
  z-index: -1;
  animation: neohGlitchA 3.2s infinite linear alternate-reverse;
}
.neoh-spot-title::after {
  color: #00f5d4;
  z-index: -1;
  animation: neohGlitchB 2.4s infinite linear alternate-reverse;
}

@keyframes neohGlitchA {
  0%, 90%, 100% { clip-path: inset(0 0 95% 0); transform: translate(0); }
  92% { clip-path: inset(10% 0 60% 0); transform: translate(-3px, 1px); }
  94% { clip-path: inset(40% 0 30% 0); transform: translate(3px, -1px); }
  96% { clip-path: inset(70% 0 5% 0); transform: translate(-2px, 0); }
}
@keyframes neohGlitchB {
  0%, 88%, 100% { clip-path: inset(95% 0 0 0); transform: translate(0); }
  91% { clip-path: inset(20% 0 50% 0); transform: translate(3px, 0); }
  93% { clip-path: inset(55% 0 15% 0); transform: translate(-3px, 1px); }
  97% { clip-path: inset(5% 0 70% 0); transform: translate(2px, -1px); }
}

.neoh-spot-handle {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ff6bb5;
  letter-spacing: 0.02em;
}

.neoh-spot-role {
  margin: 0 0 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(0, 245, 212, 0.18);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0, 245, 212, 0.8);
}

.neoh-spot-bio {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(232, 238, 244, 0.92);
  max-width: 48rem;
}

.neoh-spot-bio strong {
  color: var(--art-neon);
  font-weight: 700;
}

.neoh-spot-bio em {
  color: #ff6bb5;
  font-style: normal;
  font-weight: 600;
}

.page-artistes .artistes-quote {
  margin-top: 2.25rem;
  position: relative;
}

.page-artistes .artistes-quote::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(0, 245, 212, 0.12), transparent);
  opacity: 0.6;
}

@media (max-width: 640px) {
  .art-artist-head {
    grid-template-columns: auto 1fr;
  }
  .art-artist-actions {
    grid-column: 1 / -1;
  }
  .art-artist-avatar {
    width: 72px;
    height: 72px;
  }
  .art-lightbox-nav {
    width: 42px;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .neoh-spot-top {
    flex-wrap: wrap;
  }
  .neoh-spot-title {
    font-size: clamp(2.6rem, 14vw, 3.4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .art-hero-mosaic,
  .art-hero-grid,
  .art-hero-orb,
  .art-hero-inner,
  .art-marquee-track,
  .art-live-dot,
  .art-hero-cta span,
  .art-sparkles span,
  .art-reveal,
  .art-work,
  .art-work img,
  .neoh-spot-grid,
  .neoh-spot-scan,
  .neoh-spot-orb,
  .neoh-spot-badge,
  .neoh-avatar-ring,
  .neoh-avatar-pulse,
  .neoh-online,
  .neoh-term-cursor,
  .neoh-spot-title::before,
  .neoh-spot-title::after {
    animation: none !important;
    transition: none !important;
  }
  .art-reveal {
    opacity: 1;
    transform: none;
  }
  .art-hero-mosaic {
    transform: none;
  }
  .neoh-spot-title::before,
  .neoh-spot-title::after {
    content: none;
  }
}
