* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: #000;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.container {
  width: 100%;
  max-width: 600px;
  padding: 2rem;
  text-align: center;
}

.content {
  padding: 3rem 2rem;
}

.logo-container {
  margin-bottom: 3rem;
}

.logo {
  max-width: 180px;
  max-height: 180px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

.title {
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.subtitle {
  font-size: 0.95rem;
  color: #999;
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.social {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.6rem 0;
  border-bottom: 1px solid #fff;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.instagram-link:hover {
  opacity: 0.7;
  border-bottom-color: transparent;
}

.instagram-link svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .title {
    font-size: 1.5rem;
  }

  .subtitle {
    font-size: 0.85rem;
  }

  .content {
    padding: 2rem 1.5rem;
  }

  .logo {
    max-width: 140px;
    max-height: 140px;
  }
}
