* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Inter;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f1f5f9;
  color: #0f172a;
}

.card {
  background: #ffffff;
  padding: 30px 50px;
  border-radius: 16px;
  text-align: center;
  transition: box-shadow 0.3s ease;
  max-width: 370px;
}

.slug {
  font-size: 14px;
  letter-spacing: 1px;
  font-family: var(--font-main);
  opacity: 1;
}

.slug-line {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  --wipe-feather: 8%;
  --wipe-front: -8%;
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 calc(var(--wipe-front) - var(--wipe-feather)),
    transparent var(--wipe-front),
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 calc(var(--wipe-front) - var(--wipe-feather)),
    transparent var(--wipe-front),
    transparent 100%
  );
}

.reaction {
  margin-top: 12px;
  font-family: var(--font-accent);
  font-size: 42px;
  font-weight: bold;
}

.word {
  display: inline-block;
  opacity: 0;
  font-family: inherit;
  transform: scale(1.15);
}
