/* ============================================================
   БУДЬ СОБОЙ — design system
   ============================================================ */

:root {
  --bg:        #0c0a12;
  --bg-2:      #121019;
  --surface:   #17141f;
  --surface-2: #1e1a2a;
  --paper:     #ece7dd;
  --paper-ink: #16131b;

  --violet:    #8b5cf6;
  --violet-2:  #a855f7;
  --violet-3:  #7c3aed;
  --violet-lo: #6d28d9;
  --glow:      rgba(139, 92, 246, .45);

  --text:      #f4f1ff;
  --muted:     #a49fb5;
  --muted-2:   #756f88;
  --line:      rgba(255,255,255,.09);

  --maxw: 1200px;
  --radius: 18px;
  --ease: cubic-bezier(.2,.7,.2,1);

  --f-display: "Unbounded", system-ui, sans-serif;
  --f-cond:    "Oswald", system-ui, sans-serif;
  --f-body:    "Manrope", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.section { position: relative; z-index: 2; padding: clamp(64px, 10vw, 130px) 0; }

/* ---------- typography helpers ---------- */
.eyebrow {
  font-family: var(--f-cond);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-weight: 600;
  font-size: .8rem;
  color: var(--violet-2);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 2px;
  background: var(--violet);
}

h1,h2,h3 { line-height: 1.02; letter-spacing: -.01em; }

.h-section {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.45rem, 6vw, 4rem);
  text-transform: uppercase;
  margin: 18px 0 22px;
  overflow-wrap: break-word;
}
.lead { font-size: clamp(1rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 60ch; }

.accent { color: var(--violet-2); }
.stroke {
  color: transparent;
  -webkit-text-stroke: 1.4px var(--violet);
}

/* ---------- buttons ---------- */
.btn {
  --pad: 15px 30px;
  display: inline-flex; align-items: center; gap: .6em;
  padding: var(--pad);
  font-family: var(--f-cond);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  font-size: .95rem;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  position: relative;
}
.btn-primary {
  background: linear-gradient(135deg, var(--violet-2), var(--violet-3));
  color: #fff;
  box-shadow: 0 10px 30px -10px var(--glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 44px -12px var(--glow); }
.btn-ghost {
  background: transparent; color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--violet); transform: translateY(-3px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(12,10,18,.72);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  display: flex; align-items: center; gap: .55em;
}
.brand .dot { width: 12px; height: 12px; border-radius: 50%;
  background: var(--violet-2); box-shadow: 0 0 14px var(--glow); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-family: var(--f-cond); text-transform: uppercase;
  letter-spacing: .1em; font-size: .82rem; color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { padding: 9px 20px; }
.burger { display: none; background: none; border: 0; color: var(--text); cursor: pointer; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; z-index: 2; overflow: hidden; padding: clamp(40px,7vw,90px) 0 clamp(60px,8vw,110px); }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 60% at 80% 10%, rgba(168,85,247,.28), transparent 60%),
    radial-gradient(50% 55% at 10% 90%, rgba(124,58,237,.22), transparent 60%);
}
.hero .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }

.hero-title {
  font-family: var(--f-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 11vw, 8.2rem);
  letter-spacing: -.02em;
  line-height: .92;
  overflow-wrap: break-word;
}
.hero-title .row2 { color: transparent; -webkit-text-stroke: 2px var(--violet-2); }
.hero p.lead { margin: 26px 0 34px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 34px; margin-top: 44px; }
.stat .n { font-family: var(--f-display); font-weight: 800; font-size: 2rem; color: var(--violet-2); }
.stat .l { font-family: var(--f-cond); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; color: var(--muted); }

/* poster stack */
.hero-poster { position: relative; }
.hero-poster img {
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.8);
  transform: rotate(2.4deg);
  transition: transform .5s var(--ease);
}
.hero-poster:hover img { transform: rotate(0deg) scale(1.02); }
.hero-poster .badge {
  position: absolute; left: -18px; top: 24px; z-index: 5;
  background: var(--paper); color: var(--paper-ink);
  font-family: var(--f-cond); text-transform: uppercase; font-weight: 700;
  letter-spacing: .05em; font-size: .8rem;
  padding: 10px 16px; border-radius: 10px;
  transform: rotate(-6deg);
  box-shadow: 0 12px 26px -10px rgba(0,0,0,.6);
}

/* marquee */
.marquee {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden; padding: 16px 0;
}
.marquee-track { display: flex; gap: 40px; width: max-content; animation: slide 26s linear infinite; }
.marquee span {
  font-family: var(--f-display); font-weight: 800; text-transform: uppercase;
  font-size: 1.3rem; letter-spacing: .02em; color: var(--muted-2);
  display: inline-flex; align-items: center; gap: 40px; white-space: nowrap;
}
.marquee span::after { content: "✦"; color: var(--violet-2); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ============================================================
   ABOUT
   ============================================================ */
.about .wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.about-copy p { color: var(--muted); margin-bottom: 18px; font-size: 1.06rem; }
.about-copy strong { color: var(--text); font-weight: 700; }

.about-quote {
  border-left: 3px solid var(--violet);
  padding: 6px 0 6px 22px;
  font-family: var(--f-cond);
  font-size: 1.35rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.25;
}

.roles { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.role {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 18px;
  transition: transform .3s var(--ease), border-color .3s;
}
.role:hover { transform: translateY(-4px); border-color: rgba(168,85,247,.5); }
.role .ic { font-size: 1.5rem; margin-bottom: 10px; }
.role h4 { font-family: var(--f-cond); text-transform: uppercase; letter-spacing: .06em; font-size: 1rem; margin-bottom: 4px; }
.role p { font-size: .86rem; color: var(--muted-2); }

/* ============================================================
   ARTISTS
   ============================================================ */
.artists-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: 44px; }

.grid-artists { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }

.artist-card {
  position: relative; /* якорь для слоя .ac-spark — без него рамка уезжает на всю секцию */
  min-width: 0;         /* иначе длинное имя распирает колонку сетки */
  display: flex; flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--surface);
  transition: transform .35s var(--ease), border-color .3s;
}
a.artist-card:hover { transform: translateY(-6px); border-color: rgba(168,85,247,.5); }
.artist-card.live { border-color: rgba(168,85,247,.55);
  box-shadow: 0 0 0 1px rgba(168,85,247,.22), 0 22px 50px -28px var(--glow); }

/* Афиша показывается целиком — текст её не перекрывает */
.ac-media { position: relative; flex: 1 1 auto; aspect-ratio: 5/7; overflow: hidden;
  background: var(--bg-2); border-radius: var(--radius) var(--radius) 0 0; }
.ac-media .cover { width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s var(--ease); }
a.artist-card:hover .ac-media .cover { transform: scale(1.04); }

/* Без justify-items: start — иначе h3 сжимается до max-content и длинное
   имя («ПОСТРАДАВШИХ») вылезает за карточку. Ужимаем только плашку статуса. */
.ac-body { padding: 16px 18px 20px; display: grid; gap: 7px; align-content: start; }
.ac-body > .tag { justify-self: start; }
/* min-width:auto у грид-элементов не даёт им стать уже длинного слова,
   и overflow-wrap не срабатывает. Разрешаем сжиматься — тогда перенос работает. */
.ac-body > * { min-width: 0; }

.artist-card .tag {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--f-cond); text-transform: uppercase; letter-spacing: .1em;
  font-size: .66rem; font-weight: 600; padding: 6px 11px; border-radius: 100px;
}
.tag-live { background: var(--violet-2); color: #fff; box-shadow: 0 0 18px var(--glow); }
.tag-soon { background: rgba(255,255,255,.07); color: var(--muted); border: 1px solid var(--line); }
.tag-live .pulse { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: pulse 1.4s infinite; }
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .25 } }

.artist-card h3 { font-family: var(--f-display); text-transform: uppercase; font-size: 1.05rem;
  overflow-wrap: break-word; hyphens: auto; }
.artist-card .sub { color: var(--muted); font-size: .84rem; line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.artist-card .go { margin-top: 4px; font-family: var(--f-cond); text-transform: uppercase;
  letter-spacing: .1em; font-size: .76rem; color: var(--violet-2); }

/* Заглушки «скоро» — компактные плитки отдельным блоком.
   Полноразмерные карточки съедали 40% высоты сетки, не неся информации. */
.grid-soon { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 16px; }
.soon-tile {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 78px; padding: 10px 14px;
  border: 1px dashed var(--line); border-radius: 14px; background: var(--surface);
  transition: border-color .3s;
}
.soon-tile:hover { border-color: rgba(168,85,247,.4); }
.soon-tile .num { font-family: var(--f-display); font-weight: 800; font-size: 1.5rem;
  line-height: 1; color: rgba(255,255,255,.12); }
.soon-tile .tl { font-family: var(--f-cond); text-transform: uppercase; letter-spacing: .14em;
  font-size: .66rem; color: var(--muted-2); }

/* ============================================================
   VIDEO
   ============================================================ */
.video-sec { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.video-head { text-align: center; margin-bottom: 40px; }
.video-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,.9);
  background: #000;
  max-width: 960px; margin-inline: auto;
}
.video-frame video { width: 100%; display: block; }
.video-note { text-align: center; color: var(--muted-2); font-size: .82rem; margin-top: 16px; }

/* ============================================================
   CTA / FOOTER
   ============================================================ */
.cta-band { position: relative; z-index: 2; text-align: center; padding: clamp(70px,9vw,120px) 0; }
.cta-band h2 {
  font-family: var(--f-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2rem, 8vw, 6rem); line-height: .95; overflow-wrap: break-word;
}
.cta-band p { color: var(--muted); margin: 22px auto 34px; max-width: 46ch; }

footer { position: relative; z-index: 2; border-top: 1px solid var(--line); background: var(--bg-2); padding: 60px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.foot-brand .brand { font-size: 1.4rem; margin-bottom: 14px; }
.foot-brand p { color: var(--muted-2); font-size: .9rem; max-width: 34ch; }
footer h5 { font-family: var(--f-cond); text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; color: var(--muted); margin-bottom: 16px; }
footer ul { list-style: none; display: grid; gap: 10px; }
footer a, footer li { color: var(--text); font-size: .92rem; }
footer a:hover { color: var(--violet-2); }
.foot-bottom { margin-top: 46px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: var(--muted-2); font-size: .8rem; }

/* ============================================================
   REVEAL
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-poster { max-width: 360px; margin: 10px auto 0; }
  .about .wrap { grid-template-columns: 1fr; gap: 34px; }
  .grid-artists { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  .nav-links { display: none; }
  .burger { display: block; }
}
@media (max-width: 560px) {
  /* Две колонки вместо одной: афиша узнаётся и в 150px, а прокрутка вдвое короче */
  .grid-artists { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .grid-soon { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .ac-body { padding: 12px 12px 14px; gap: 5px; }
  .artist-card .tag { font-size: .56rem; padding: 5px 9px; letter-spacing: .06em; }
  .artist-card h3 { font-size: .92rem; }
  .artist-card .sub { font-size: .76rem; }
  .artist-card .go { font-size: .68rem; }
  .roles { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; }
  .foot-grid { grid-template-columns: 1fr; }
}

/* ===== WordPress: адаптив встроенного видео (oEmbed) ===== */
.video-embed { position: relative; width: 100%; aspect-ratio: 16/9; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.about-body p, .bio-copy p { color: var(--muted); }
.wp-caption, .alignnone { max-width: 100%; }

/* ===== Логотип площадки в футере ===== */
.foot-logo { height: 58px; width: auto; margin-bottom: 16px; opacity: .92; transition: opacity .2s; }
a:hover > .foot-logo { opacity: 1; }

/* ===== Баннер cookie ===== */
.cookie-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  max-width: 1000px; margin-inline: auto;
  background: rgba(23,20,31,.97); backdrop-filter: blur(12px);
  border: 1px solid rgba(168,85,247,.35); border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.85);
  animation: cookieIn .35s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes cookieIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
/* display:flex выше по силе, чем UA-правило [hidden]{display:none} — возвращаем его */
.cookie-bar[hidden] { display: none; }
.cookie-bar p { flex: 1 1 380px; margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.55; }
.cookie-bar a { color: var(--violet-2); text-decoration: underline; }
.cookie-bar .btn { flex: 0 0 auto; --pad: 12px 26px; }
@media (max-width: 560px) {
  .cookie-bar { gap: 14px; padding: 16px; }
  .cookie-bar .btn { width: 100%; justify-content: center; }
}

/* ===== Обычные страницы (политика конфиденциальности и т.п.) ===== */
.page-sec .back { display: block; width: fit-content; font-family: var(--f-cond);
  text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; color: var(--muted);
  margin-bottom: 20px; transition: color .2s; }
.page-sec .back:hover { color: var(--violet-2); }
.page-content { max-width: 760px; color: var(--muted); font-size: 1.02rem; line-height: 1.75; }
.page-content h2 { font-family: var(--f-cond); text-transform: uppercase; letter-spacing: .04em;
  font-size: clamp(1.1rem, 2.4vw, 1.45rem); color: var(--text); margin: 34px 0 12px; }
.page-content h3 { font-family: var(--f-cond); text-transform: uppercase; letter-spacing: .04em;
  font-size: 1.08rem; color: var(--text); margin: 26px 0 10px; }
.page-content h2:first-child, .page-content h3:first-child { margin-top: 0; }
.page-content p { margin-bottom: 14px; }
.page-content ul, .page-content ol { margin: 0 0 18px; padding-left: 22px; }
.page-content li { margin-bottom: 8px; }
.page-content a { color: var(--violet-2); text-decoration: underline; }
.page-content strong { color: var(--text); font-weight: 700; }
.page-content em { color: var(--muted-2); }
.page-content table { width: 100%; border-collapse: collapse; margin-bottom: 18px; }
.page-content td, .page-content th { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
/* Заголовок обычной страницы — это проза, ему не нужен размер секционного заголовка */
.page-sec .h-section { font-size: clamp(1.35rem, 5vw, 2.6rem); hyphens: auto; }

/* ===== Лента дат концертов (над сеткой артистов) ===== */
.schedule {
  display: flex; gap: 12px; margin-bottom: 30px;
  overflow-x: auto; scroll-snap-type: x proximity;
  padding: 6px 0 8px; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: rgba(168,85,247,.5) rgba(255,255,255,.05);
}
.schedule::-webkit-scrollbar { height: 6px; }
.schedule::-webkit-scrollbar-track { background: rgba(255,255,255,.05); border-radius: 3px; }
.schedule::-webkit-scrollbar-thumb { background: rgba(168,85,247,.5); border-radius: 3px; }
.schedule::-webkit-scrollbar-thumb:hover { background: var(--violet-2); }

.schedule .ev {
  flex: 1 0 152px; scroll-snap-align: start;
  border: 1px solid rgba(168,85,247,.5); background: rgba(168,85,247,.1);
  border-radius: 12px; padding: 12px 14px;
  transition: transform .25s var(--ease), border-color .25s, background .25s;
}
.schedule .ev:hover { transform: translateY(-3px); border-color: var(--violet-2); background: rgba(168,85,247,.18); }
.schedule .ev.past { border-color: var(--line); background: rgba(255,255,255,.03); }
.schedule .dt { display: flex; align-items: baseline; gap: 7px; }
.schedule .num { font-family: var(--f-display); font-weight: 800;
  font-size: 1.35rem; line-height: 1; color: var(--text); }
.schedule .mo { font-family: var(--f-cond); text-transform: uppercase;
  letter-spacing: .1em; font-size: .66rem; color: var(--violet-2); }
.schedule .ev.past .mo { color: var(--muted); }
.schedule .nm { display: block; font-size: .8rem; color: var(--muted); margin-top: 7px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.schedule { cursor: grab; }
.schedule.dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }

/* ===== 404 ===== */
.err404 { position: relative; z-index: 2; text-align: center; overflow: hidden;
  padding: clamp(56px, 9vw, 120px) 0 clamp(64px, 10vw, 130px); }
.err404 .eyebrow { justify-content: center; }
.err404 .lead { margin: 0 auto 34px; }
.err-cta { justify-content: center; }

/* Цифры чуть развёрнуты — как порванные буквы с афиши */
.err-code { display: flex; justify-content: center; gap: .02em; margin: 14px 0 4px; line-height: .85; }
.err-code span {
  font-family: var(--f-display); font-weight: 800; letter-spacing: -.04em;
  font-size: clamp(4.5rem, 20vw, 12rem);
  color: transparent; -webkit-text-stroke: 2px var(--violet-2);
  transition: transform .4s var(--ease), -webkit-text-stroke-color .4s;
}
.err-code span:nth-child(1) { transform: rotate(-4deg); }
.err-code span:nth-child(2) { transform: rotate(2deg)  translateY(6px); }
.err-code span:nth-child(3) { transform: rotate(5deg); }
.err404:hover .err-code span { -webkit-text-stroke-color: var(--violet); }
.err-code span:hover { transform: rotate(0) scale(1.04); }

.err-title { font-family: var(--f-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.5rem, 5vw, 3.2rem); line-height: 1.05; margin: 0 0 18px; overflow-wrap: break-word; }

/* Ближайший концерт — чтобы страница не была тупиком */
.err-next { margin-top: 48px; display: grid; justify-items: center; gap: 12px; }
.err-next-label { font-family: var(--f-cond); text-transform: uppercase; letter-spacing: .14em;
  font-size: .72rem; color: var(--muted-2); }
.err-next .ev { display: inline-block; min-width: 190px; text-align: left;
  border: 1px solid rgba(168,85,247,.5); background: rgba(168,85,247,.1);
  border-radius: 12px; padding: 14px 18px;
  transition: transform .25s var(--ease), border-color .25s, background .25s; }
.err-next .ev:hover { transform: translateY(-3px); border-color: var(--violet-2); background: rgba(168,85,247,.18); }
.err-next .dt { display: flex; align-items: baseline; gap: 7px; }
.err-next .num { font-family: var(--f-display); font-weight: 800; font-size: 1.4rem; color: var(--text); }
.err-next .mo { font-family: var(--f-cond); text-transform: uppercase; letter-spacing: .1em;
  font-size: .68rem; color: var(--violet-2); }
.err-next .nm { display: block; font-size: .85rem; color: var(--muted); margin-top: 7px; }

/* ===== «Электрическая» рамка карточки артиста при наведении ===== */
.bs-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

.ac-spark {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  border-radius: var(--radius);
  opacity: 0; transition: opacity .3s var(--ease);
}
.ac-spark .sp-line,
.ac-spark .sp-glow {
  position: absolute; inset: 0; border-radius: inherit;
  border: 2px solid var(--violet-2);
}
.ac-spark .sp-glow { filter: blur(6px); opacity: .75; }

a.artist-card:hover .ac-spark { opacity: 1; }

/* Фильтр включается ТОЛЬКО на наведённой карточке — feTurbulence дорогой,
   держать его постоянно на всех девяти карточках нельзя. */
a.artist-card:hover .ac-spark .sp-line { filter: url(#bs-electric); }

@media (prefers-reduced-motion: reduce) {
  a.artist-card:hover .ac-spark .sp-line { filter: none; }
}
/* На тач-устройствах hover срабатывает «залипанием» — эффект там не нужен */
@media (hover: none) {
  .ac-spark { display: none; }
}
