* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #2e004f, #5e1f8d);
  color: #e4d5f7;
  text-align: center;
  padding: 2rem 1rem;
}

.container {
  max-width: 500px;
  margin: auto;
}

/* Profile section */
.profile {
  margin-bottom: 1.5rem;
}

.pfp {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

.name {
  margin-top: 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: #f8c3ff;
}

/* Title */
.title {
  font-size: 2.5rem;
  color: #e562e3;
  margin-bottom: 1rem;
}

/* Description */
.description {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #dfc6fa;
  line-height: 1.5;
}

/* Stats section */
.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
}

.stat-icon {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #ffc6ff;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}

.stat-label {
  font-size: 0.9rem;
  color: #c9b6f0;
}

/* Socials */
.socials {
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.socials a {
  color: #e4d5f7;
  transition: color 0.3s;
}

.socials a:hover {
  color: #ff92f5;
}
