body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  color: white;
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(40, 0, 60, 0.86)),
    url("images/sacredexpressionstattoo_bkg1.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
}

.content {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.hero-card {
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(168, 85, 247, 0.28);
  border-radius: 18px;
  padding: 32px 24px 40px;
  text-align: center;
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.16);
  backdrop-filter: blur(4px);
}

.logo {
  width: min(280px, 78vw);
  height: auto;
  display: block;
  margin: 0 auto 24px;
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.22);
}

h1 {
  margin: 0 0 20px;
  color: #c084fc;
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: 1px;
}

h2 {
  margin-top: 38px;
  margin-bottom: 18px;
  color: #d8b4fe;
  font-size: 1.6rem;
}

p {
  max-width: 760px;
  margin: 0 auto 18px;
  line-height: 1.75;
  font-size: 1.05rem;
  color: #f5f3ff;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 28px 0 8px;
}

.button-link {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.18);
  border: 1px solid rgba(192, 132, 252, 0.5);
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.2);
  background: rgba(168, 85, 247, 0.28);
}

.team-links {
  display: grid;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
}

.team-links a {
  display: block;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #e9d5ff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.18s ease, transform 0.18s ease;
}

.team-links a:hover {
  background: rgba(168, 85, 247, 0.18);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .hero-card {
    padding: 26px 18px 32px;
  }

  p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .button-link {
    width: 100%;
    max-width: 320px;
  }
}