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

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #050505;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  color: white;
  position: relative;
}

.background-glow {
  position: absolute;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(255,0,140,0.18) 0%, rgba(123,0,255,0.12) 40%, rgba(0,0,0,0) 70%);
  filter: blur(50px);
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  max-width: 700px;
}

.logo {
  width: min(420px, 90vw);
  border-radius: 50%;
  margin-bottom: 30px;
  box-shadow:
    0 0 20px rgba(255,0,140,0.4),
    0 0 50px rgba(140,0,255,0.35);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ff3b8d, #b266ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}

.divider {
  width: 120px;
  height: 2px;
  margin: 35px auto;
  background: linear-gradient(90deg, #ff3b8d, #b266ff);
  box-shadow: 0 0 15px rgba(255,0,140,0.8);
}

.contact {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
}

.contact a {
  color: #ff69c7;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact a:hover {
  color: #c78cff;
  text-shadow: 0 0 12px rgba(255,255,255,0.6);
}

@media (max-width: 600px) {
  .subtitle {
    font-size: 1rem;
  }

  h1 {
    line-height: 1.2;
  }
}
