.sc-profile__actions {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
@media (max-width: 600px) {
  .sc-profile__actions {
    width: 100%;
    justify-content: center;
  }
}
.sc-profile__edit {
  display: inline-block;
  padding: 8px 16px;
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  color: #4F4D4E;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
}
.sc-profile__edit:hover {
  border-color: #8A2A6B;
  color: #8A2A6B;
}
.sc-profile__socials {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sc-profile__socials li {
  margin: 0;
  padding: 0;
}
.sc-profile__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  padding: 0;
  background-color: #f8f8f9;
  color: #8A2A6B;
  border-radius: 50%;
  text-decoration: none;
  box-sizing: border-box;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.sc-profile__social svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}
.sc-profile__social:hover {
  background-color: #8A2A6B;
  color: #ffffff;
  transform: translateY(-1px);
}

body.sc-premium .sc-profile__edit:hover {
  border-color: #653190;
  color: #653190;
}
body.sc-premium .sc-profile__social {
  background-color: rgba(101, 49, 144, 0.1);
  color: #653190;
}
body.sc-premium .sc-profile__social:hover {
  background-color: #653190;
  color: #ffffff;
}

.sc-user-link {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}
.sc-user-link:hover {
  color: #8A2A6B;
  text-decoration: underline;
}

.sc-level-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  padding: 1px 6px;
  background: linear-gradient(135deg, #8A2A6B 0%, #6e2256 100%);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  line-height: 1.4;
  vertical-align: middle;
  text-decoration: none;
  cursor: help;
  letter-spacing: 0.3px;
}

.sc-level {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sc-level__header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sc-level__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 24px;
  padding: 0 8px;
  background: linear-gradient(135deg, #8A2A6B 0%, #6e2256 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  line-height: 1;
}
.sc-level__title {
  font-size: 13px;
  font-weight: 600;
  color: #222222;
}
.sc-level__points {
  margin-left: auto;
  font-size: 12px;
  color: #4F4D4E;
  font-variant-numeric: tabular-nums;
}
.sc-level__bar {
  position: relative;
  height: 8px;
  background-color: #f3f4f6;
  border-radius: 999px;
  overflow: hidden;
}
.sc-level__fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, #8A2A6B 0%, #6e2256 100%);
  border-radius: 999px;
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.sc-level__caption {
  margin: 0;
  font-size: 12px;
  color: #4F4D4E;
}
.sc-level--compact {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f3f4f6;
}
.sc-level--compact .sc-level__header {
  justify-content: center;
  gap: 6px;
}
.sc-level--compact .sc-level__badge {
  min-width: 24px;
  height: 20px;
  font-size: 11px;
  padding: 0 6px;
}
.sc-level--compact .sc-level__title {
  font-size: 11px;
}
.sc-level--compact .sc-level__bar {
  height: 4px;
}

.sc-profile__level {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #f8f8f9;
  border-radius: 8px;
}
.sc-profile__level .sc-level__header {
  margin-bottom: 4px;
}
.sc-profile__level .sc-level__badge {
  min-width: 36px;
  height: 30px;
  padding: 0 12px;
  font-size: 14px;
}
.sc-profile__level .sc-level__title {
  font-size: 16px;
}
.sc-profile__level .sc-level__bar {
  height: 12px;
}
