/* profile-prompt.css - プロフィール完成促進カード */

.profile-prompt-card {
  margin: 0 1rem 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 14px;
  position: relative;
}

.profile-prompt-card__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  color: var(--color-text-secondary);
  cursor: pointer;
  padding: 4px;
  font-size: 1rem;
  line-height: 1;
  opacity: 0.6;
}

.profile-prompt-card__close:hover {
  opacity: 1;
}

.profile-prompt-card__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.profile-prompt-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9800, #ff5722);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.profile-prompt-card__icon i {
  color: #fff;
  font-size: 0.9rem;
}

.profile-prompt-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
}

.profile-prompt-card__bar-wrapper {
  margin-bottom: 0.5rem;
}

.profile-prompt-card__bar-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
}

.profile-prompt-card__bar-label {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
}

.profile-prompt-card__bar-percent {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ff9800;
}

.profile-prompt-card__bar {
  height: 6px;
  background: rgba(255, 152, 0, 0.15);
  border-radius: 3px;
  overflow: hidden;
}

.profile-prompt-card__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff9800, #ff5722);
  border-radius: 3px;
  transition: width 0.6s ease;
}

.profile-prompt-card__missing {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}

.profile-prompt-card__missing-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.5rem;
  font-size: 0.7rem;
  color: #e65100;
  background: rgba(255, 152, 0, 0.12);
  border-radius: 12px;
}

.profile-prompt-card__missing-tag i {
  font-size: 0.7rem;
}

.profile-prompt-card__action {
  display: block;
  width: 100%;
  padding: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #ff9800, #ff5722);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.2s ease;
}

.profile-prompt-card__action:hover {
  opacity: 0.9;
}

/* ダークモード */
[data-theme='dark'] .profile-prompt-card {
  background: linear-gradient(135deg, #2a1f14 0%, #332211 100%);
  border-color: #4a3520;
}

[data-theme='dark'] .profile-prompt-card__bar {
  background: rgba(255, 152, 0, 0.1);
}

[data-theme='dark'] .profile-prompt-card__missing-tag {
  color: #ffb74d;
  background: rgba(255, 152, 0, 0.15);
}
