/* animated gradient background */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(120deg, #fce3ec, #e3f6ff, #fff6db);
  background-size: 600% 600%;
  animation: bgmove 18s ease infinite;
  color: #111;
  padding: 36px;
}
@keyframes bgmove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* floating blur shapes */
.float-shape {
  position: fixed;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(10px);
  pointer-events: none;
  mix-blend-mode: multiply;
  animation: floatUp 14s ease-in-out infinite;
}
.s1 { width:220px;height:220px;left:6%;top:12%;background:#ffb3c6;animation-duration:16s; }
.s2 { width:180px;height:180px;right:8%;top:25%;background:#b3e5fc;animation-duration:20s; }
.s3 { width:200px;height:200px;left:20%;bottom:8%;background:#fff2a8;animation-duration:18s; }
@keyframes floatUp {
  0%{transform:translateY(0);}
  50%{transform:translateY(-18px);}
  100%{transform:translateY(0);}
}

/* main card box */
.card {
  max-width: 850px;
  margin: 60px auto;
  background: rgba(255,255,255,0.9);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(20,20,20,0.15);
  text-align: center;
}
.card img {
  max-width: 240px;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  margin-bottom: 20px;
}
.card h1 {
  margin-top: 0;
  font-size: 26px;
}
.card p {
  line-height: 1.6;
  color: #333;
  font-size: 16px;
  text-align: justify;
}
a.back {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  color: white;
  background: linear-gradient(90deg, #ff758c, #ff7eb3);
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(255,117,140,0.3);
}
