.reworking-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
  text-align: center;
  padding: 40px;
}

.reworking-icon {
  width: 120px;
  height: 120px;
  background-color: var(--accent);
  mask-image: url('../data/reworking.svg');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url('../data/reworking.svg');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  margin-bottom: 24px;
  opacity: 0.8;
  animation: minimalistPulse 4s ease-in-out infinite;
}

.reworking-text {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
}

@keyframes minimalistPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
    filter: drop-shadow(0 0 15px color-mix(in srgb, var(--accent) 30%, transparent));
  }
}
