/* Pixel grid overlay */
.retro-effect::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.3) 0px, /* darker lines for stronger contrast */
      rgba(0, 0, 0, 0.3) 3px,
      transparent 1px,
      transparent 6px /* tighter spacing */
    ),
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.4) 0px,
      rgba(0, 0, 0, 0.4) 1px,
      transparent 1px,
      transparent 2px
    );
  background-size: 100%; /* smaller pixels = more visible */
  mix-blend-mode: overlay;
  pointer-events: none;
  width: 100%;
  height: 100%;
}



.connectServiceButton {
  display: flex;
  background-color: #fc4040;
  color: var(--text-primary);
  color: var(--text-primary);
  padding: 0.5rem 1.4rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  align-items: center;
  border-radius: 0.5rem;
  gap: 0.75rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: .6s ease;
}

.connectServiceButton svg {
  height: 30px;
}

.connectServiceButton:hover {
  box-shadow: none;
}

