
.dcprofile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  padding: 28px;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);

  width: 280px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

  transition: transform 0.2s ease, border-color 0.2s ease;
}


.dcprofile-username {
  font-size: 1.2rem;
  font-weight: 600;
  color: #f5eaff;
}

.dcprofile-activity {
  font-size: 0.85rem;
  opacity: 0.7;
  text-align: center;
  margin: 0;
}

.dcprofile-status {
  font-size: 0.75rem;
  opacity: 0.6;

  padding: 4px 10px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);

  text-transform: lowercase;
}

.dcprofile-avatar-wrap {
  position: relative;
  width: 110px;
  height: 110px;
}

.dcprofile-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;

  border: 2px solid #FBABFF;
  box-shadow: 0 0 18px rgba(251, 171, 255, 0.25);

  object-fit: cover;
}

.dcprofile-dot {
  position: absolute;
  bottom: 5px;
  right: 5px;

  width: 24px;
  height: 24px;
  border-radius: 50%;

  border: 2px solid rgba(11, 11, 18, 1);
  box-shadow: 0 0 10px rgba(0,0,0,0.4);

  transition: all 0.2s ease;
}

/* colors */
.dcprofile-dot.online {
  background: #3ba55d;
  box-shadow: 0 0 10px #3ba55d66;
}

.dcprofile-dot.idle {
  background: #faa61a;
  box-shadow: 0 0 10px #faa61a66;
}

.dcprofile-dot.dnd {
  background: #ed4245;
  box-shadow: 0 0 10px #ed424566;
}

.dcprofile-dot.offline {
  background: #6b7280;
  box-shadow: 0 0 10px #6b728044;
}

.dcprofile-page {
  min-height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 10%;
}

.dcprofile-left {
  flex: 1;
}

.dcprofile-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.dcprofile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  padding: 28px;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);

  width: 280px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

@media (max-width: 800px) {
  .dcprofile-page {
    flex-direction: column;
    justify-content: center;
    gap: 40px;
  }

  .dcprofile-right {
    justify-content: center;
  }
}