body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: white;
  min-height: 100vh;
  overflow-x: hidden;
}

.animated-bg {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(135deg, #ff3366 0%, #a259ff 100%);
  animation: gradientMove 6s infinite alternate;
  opacity: 0.23;
}

@keyframes gradientMove {
  0% {
    background-position: left;
    filter: blur(0px);
  }
  100% {
    background-position: right;
    filter: blur(2px);
  }
}

.container {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.93);
  box-shadow: 0 8px 40px #a259ff33;
  border-radius: 24px;
  padding: 2.2rem 1.3rem 1.6rem 1.3rem;
  max-width: 420px;
  margin: 48px auto;
  text-align: center;
}

.header .logo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 2px solid #ff3366;
  margin-bottom: 0.6rem;
  background: #fff;
  object-fit: cover;
  box-shadow: 0 4px 24px #a259ff77;
  animation: pulse 2.5s infinite;
}

.header h1 {
  margin: 0.25rem 0 0.15rem 0;
  font-size: 2.1rem;
  color: #a259ff;
  font-weight: 700;
  text-shadow: 0 2px 6px #ff336633;
}

/* Yellow & purple gradient for slogan */
.custom-gradient {
  font-weight: bold;
  font-size: 1.06rem;
  background: linear-gradient(90deg, #ffd014 0%, #805280 60%, #60339B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.links {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 1.4rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-instagram, .btn-discord, .btn-email {
  width: 100%;
  padding: 0.92rem 0;
  font-size: 1.17rem;
  font-weight: bold;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  border: none;
  background: linear-gradient(90deg, #ff3366 0%, #a259ff 100%);
  box-shadow: 0 4px 20px #a259ff24;
  transition: background 0.3s, transform 0.2s;
  cursor: pointer;
  display: inline-block;
}
.btn-instagram:hover,
.btn-discord:hover,
.btn-email:hover {
  background: linear-gradient(90deg, #ffd014 0%, #a259ff 100%);
  color: #a259ff;
  transform: translateY(-4px) scale(1.05);
}

.quote-section {
  margin: 1.8rem 0 1.2rem 0;
  padding: 1rem;
  border-radius: 18px;
  background: #f8f4fe;
  border-left: 4px solid #a259ff;
  min-height: 50px;
}
.quote-section h2 {
  font-size: 1.15rem;
  color: #a259ff;
  margin-bottom: 0.5rem;
}
.quote {
  color: #7a2143;
  font-style: italic;
  font-size: 1.04rem;
}

.footer {
  margin-top: 2rem;
  font-size: 0.96rem;
  color: #757575;
}
.privacy-section {
  text-align: left;
  padding: 0.8rem 0 0 0;
}

.policy-link {
  display: block;
  color: #a259ff;
  font-size: 0.97em;
  margin-bottom: 0.25rem;
  text-decoration: underline;
}

.credit {
  margin-top: 0.35rem;
  font-weight: bold;
  color: #000;
  letter-spacing: 0.4px;
  opacity: 0.8;
}

@media (max-width: 480px) {
  .container { padding: 1.2rem 0.4rem;}
  .header .logo { width: 60px; height: 60px;}
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 #a259ff2f;}
  50% { box-shadow: 0 0 0 18px #a259ff04;}
}
