/* CS/* General page style */
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: linear-gradient(135deg, #f3e7e9, #e3eeff);
  color: #333;
}

/* Center container */
.container {
  max-width: 600px;
  margin: 80px auto;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  text-align: center;
  animation: fadeIn 1.5s ease;
}

/* Title */
h1 {
  color: #6C63FF;
  font-size: 32px;
  margin-bottom: 20px;
}

/* Moving Beauty text with glitter */
.moving-text {
  font-size: 30px;
  font-weight: bold;
  color: #ff69b4;
  margin: 20px 0;
  background: linear-gradient(90deg, #ff69b4, #ffb6c1, #ff69b4);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: moveText 5s linear infinite, glitter 3s linear infinite;
}

/* Animation for Beauty moving */
@keyframes moveText {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(0%); }
  100% { transform: translateX(100%); }
}

/* Glitter effect */
@keyframes glitter {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

/* Profile picture */
.profile-pic {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 5px solid #6C63FF;
  object-fit: cover;
  margin: 20px 0;
  transition: transform 0.3s ease;
}

.profile-pic:hover {
  transform: scale(1.05);
}

/* Text styling */
p {
  font-size: 18px;
  line-height: 1.6;
}

/* Contact button */
.contact-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #6C63FF;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background: #574b90;
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}