.focus-container {
  position: relative;
  display: flex;
  gap: 1em;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  outline: none;
  /* eslint-disable-next-line css/use-baseline */
  user-select: none;
}

.focus-word {
  position: relative;
  font-size: 6rem;
  font-weight: 900;
  cursor: default;
  transition:
    filter 0.3s ease,
    color 0.3s ease;
  outline: none;
  /* eslint-disable-next-line css/use-baseline */
  user-select: none;
}

.focus-word.active {
  filter: blur(0);
}

.focus-frame {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  box-sizing: content-box;
  border: none;
}

.corner {
  position: absolute;
  width: 1rem;
  height: 1rem;
  border: 3px solid var(--border-color, #fff);
  filter: drop-shadow(0px 0px 4px var(--border-color, #fff));
  border-radius: 3px;
  transition: none;
}

.top-left {
  top: -10px;
  left: -10px;
  border-right: none;
  border-bottom: none;
}

.top-right {
  top: -10px;
  right: -10px;
  border-left: none;
  border-bottom: none;
}

.bottom-left {
  bottom: -10px;
  left: -10px;
  border-right: none;
  border-top: none;
}

.bottom-right {
  bottom: -10px;
  right: -10px;
  border-left: none;
  border-top: none;
}
.split-text-container {
  display: inline-block;
  /* eslint-disable-next-line css/use-baseline */
  word-break: break-word;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  white-space: pre-wrap;
}

.split-text-char {
  display: inline-block;
  will-change: transform, opacity;
}
/* eslint-disable css/no-invalid-properties */
.electric-border {
  --electric-light-color: oklch(from var(--electric-border-color) l c h);
  --eb-border-width: 2px;
  position: relative;
  border-radius: inherit;
  overflow: visible;
  isolation: isolate;
}

.eb-svg {
  position: fixed;
  left: -10000px;
  top: -10000px;
  width: 10px;
  height: 10px;
  opacity: 0.001;
  pointer-events: none;
}

.eb-content {
  position: relative;
  border-radius: inherit;
  z-index: 1;
}

.eb-layers {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}

.eb-stroke,
.eb-glow-1,
.eb-glow-2,
.eb-overlay-1,
.eb-overlay-2,
.eb-background-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-sizing: border-box;
}

.eb-stroke {
  border: var(--eb-border-width) solid var(--electric-border-color);
}

.eb-glow-1 {
  border: var(--eb-border-width) solid
    /* eslint-disable-next-line css/use-baseline */
    oklch(from var(--electric-border-color) l c h / 0.6);
  opacity: 0.5;
  filter: blur(calc(0.5px + (var(--eb-border-width) * 0.25)));
}

.eb-glow-2 {
  border: var(--eb-border-width) solid var(--electric-light-color);
  opacity: 0.5;
  filter: blur(calc(2px + (var(--eb-border-width) * 0.5)));
}

.eb-background-glow {
  z-index: -1;
  transform: scale(1.08);
  filter: blur(32px);
  opacity: 0.3;
  background: linear-gradient(
    -30deg,
    var(--electric-light-color),
    transparent,
    var(--electric-border-color)
  );
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.pulse-animation {
  animation: pulse 1s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes blink-rainbow {
  0% {
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    opacity: 1;
  }
  12.5% {
    color: #ff7f00;
    text-shadow: 0 0 15px rgba(255, 127, 0, 0.8);
    opacity: 0.9;
  }
  25% {
    color: #ffff00;
    text-shadow: 0 0 15px rgba(255, 255, 0, 0.8);
    opacity: 1;
  }
  37.5% {
    color: #00ff00;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
    opacity: 0.9;
  }
  50% {
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
    opacity: 1;
  }
  62.5% {
    color: #0000ff;
    text-shadow: 0 0 15px rgba(0, 0, 255, 0.8);
    opacity: 0.9;
  }
  75% {
    color: #4b0082;
    text-shadow: 0 0 15px rgba(75, 0, 130, 0.8);
    opacity: 1;
  }
  87.5% {
    color: #9400d3;
    text-shadow: 0 0 15px rgba(148, 0, 211, 0.8);
    opacity: 0.9;
  }
  100% {
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    opacity: 1;
  }
}

.blink-rainbow-animation {
  animation: blink-rainbow 0.6s linear infinite;
  font-weight: bold;
}
