/* Minimal reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #000;
  color: #e5e5e5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  gap: 2rem;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}

.logo {
  width: min(80vw, 480px);
  height: auto;
  max-width: 100%;
  display: block;
}

h1 {
  text-transform: uppercase;
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: 0.15em;
  background: linear-gradient(180deg, #d8d8d8 0%, #ffffff 50%, #b8b8b8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(0, 255, 120, 0.5)) drop-shadow(0 0 24px rgba(0, 255, 120, 0.3));
  line-height: 1.1;
}

.instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #c8c8c8;
  text-decoration: none;
  font-size: 1.125rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 200ms ease;
}

.instagram svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.instagram:hover,
.instagram:focus {
  color: #ffffff;
  border-color: rgba(0, 255, 120, 0.5);
  filter: drop-shadow(0 0 8px rgba(0, 255, 120, 0.6));
}

:focus-visible {
  outline: 2px solid #00ff78;
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
