body {
  font-family: Times New Roman, sans-serif;
  background: #f3f4f6;
}

.profile-container {
  max-width: 600px;
  margin: 40px auto;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.profile-header {
  text-align: center;
  margin-bottom: 24px;
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #4f46e5;   /* Indigo */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  user-select: none;
  margin: 0 auto; /* keeps it centered */
}


.username {
  font-size: 1.6em;
  font-weight: bold;
  margin-top: 10px;
}

.stats-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.stat-card {
  background: #f1f5f9;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  font-weight: bold;
}

.title {
  font-size: 0.9em;
  opacity: 0.7;
  margin-bottom: 6px;
}

.value {
  font-size: 1.3em;
}

/* XP Ring */
.xp-ring-container {
  text-align: center;
  margin-bottom: 20px;
}

.xp-label {
  margin-top: 8px;
  font-size: 0.85em;
  color: #555;
}

/* Badges */
.badges-container {
  margin-top: 24px;
}

.badges-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  justify-content: center;
}

.badge {
  font-size: 32px;
}

