/* ================================================================
   SN-TEAM Neon Sign Effect
   Подключение: <link rel="stylesheet" href="sn-team-neon.css">
   Активация: <span class="sn-neon" data-neon="SN-TEAM"></span>
   ================================================================ */

.sn-neon {
  display: inline-flex;
  align-items: center;
  gap: 0.08em;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  user-select: none;
  cursor: default;
}

/* Каждая буква — отдельный "неоновый трубочный" сегмент */
.sn-neon__letter {
  position: relative;
  display: inline-block;
  padding: 0 0.06em;
  color: #fff;
  text-shadow:
    /* Внутреннее свечение (горячий центр) */
    0 0 2px #fff,
    0 0 4px #fff,
    0 0 8px var(--neon-color, #00f0ff),
    0 0 16px var(--neon-color, #00f0ff),
    0 0 32px var(--neon-color, #00f0ff),
    /* Внешнее ореол */
    0 0 64px rgba(0, 240, 255, 0.4),
    0 0 96px rgba(0, 240, 255, 0.2);
  transition: text-shadow 0.15s ease, opacity 0.15s ease;
}

/* Трубка: тонкая рамка вокруг буквы */
.sn-neon__letter::before {
  content: attr(data-char);
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.3);
  text-stroke: 1.5px rgba(255, 255, 255, 0.3);
  pointer-events: none;
  z-index: -1;
}

/* Цветовые вариации по буквам (как в оригинале: cyan → magenta) */
.sn-neon__letter:nth-child(1),
.sn-neon__letter:nth-child(2) {
  --neon-color: #00f0ff;
}
.sn-neon__letter:nth-child(3) {
  --neon-color: #b026ff;
}
.sn-neon__letter:nth-child(4),
.sn-neon__letter:nth-child(5),
.sn-neon__letter:nth-child(6) {
  --neon-color: #ff00de;
}

/* === СОСТОЯНИЯ МОРГАНИЯ === */

/* Тусклое мерцание (пред-отказ) */
.sn-neon__letter--dim {
  opacity: 0.3;
  text-shadow:
    0 0 1px rgba(255,255,255,0.3),
    0 0 2px var(--neon-color),
    0 0 4px var(--neon-color);
}

/* Полное погасание (неисправность) */
.sn-neon__letter--off {
  opacity: 0.08;
  text-shadow: none;
}

/* Вспышка при возврате */
.sn-neon__letter--flash {
  animation: neonFlash 0.4s ease-out;
}

@keyframes neonFlash {
  0%   { opacity: 0.1; text-shadow: none; }
  30%  { opacity: 1;   text-shadow: 0 0 4px #fff, 0 0 20px var(--neon-color), 0 0 60px var(--neon-color), 0 0 120px var(--neon-color); }
  60%  { opacity: 0.7; text-shadow: 0 0 2px #fff, 0 0 10px var(--neon-color); }
  100% { opacity: 1;   text-shadow: 0 0 2px #fff, 0 0 8px var(--neon-color), 0 0 32px var(--neon-color), 0 0 64px rgba(0,240,255,0.3); }
}

/* Постоянное лёгкое пульсирование всей надписи */
.sn-neon {
  animation: neonBreath 4s ease-in-out infinite;
}

@keyframes neonBreath {
  0%, 100% { filter: brightness(1); }
  50%      { filter: brightness(1.08); }
}