/* ============================================
   探索自己页面 - 完整迁移首页样式
   ============================================ */

/* 导航栏 */
.nav {
  background: rgba(255, 248, 240, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(255, 140, 66, 0.06);
}

/* 用户菜单 - 与首页保持一致 */
.nav-user-menu {
  position: relative;
}

.nav-user-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 9999px;
  background: rgba(255, 138, 58, 0.1);
  transition: all 0.3s;
}

.nav-user-trigger:hover {
  background: rgba(255, 138, 58, 0.2);
}

.nav-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--warm-orange), var(--warm-yellow));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  overflow: hidden;
}

.nav-user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-user-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}

.nav-user-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background: var(--cream);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  min-width: 200px;
  z-index: 1002;
}

.nav-user-dropdown.active {
  display: block;
}

.nav-user-dropdown-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 18px;
  background: none;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
  color: var(--dark);
  font-family: inherit;
}

.nav-user-dropdown-item:hover {
  background: rgba(255, 138, 58, 0.1);
}

.nav-user-dropdown-item-danger {
  color: #EF4444;
}

.nav-user-dropdown-item-danger:hover {
  background: rgba(239, 68, 68, 0.1);
}

.nav-user-dropdown-divider {
  height: 1px;
  background: rgba(255, 138, 58, 0.15);
  margin: 6px 0;
}

/* 移动端汉堡菜单按钮 */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* 移动端菜单中的用户项 */
.mobile-only-nav-item {
  display: none;
}

/* 主容器 */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: calc(100px * var(--content-scale)) calc(24px * var(--content-scale)) calc(40px * var(--content-scale));
}

/* 页面标题 */
.page-header {
  text-align: center;
  margin-bottom: calc(80px * var(--spacing-scale));
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: calc(8px * var(--content-scale)) calc(20px * var(--content-scale));
  background: rgba(255, 140, 66, 0.1);
  border-radius: 20px;
  font-size: calc(14px * var(--font-scale));
  font-weight: 600;
  color: var(--warm-orange);
  margin-bottom: calc(24px * var(--spacing-scale));
}

.section-title {
  font-size: clamp(28px, 5vw, calc(48px * var(--content-scale)));
  font-weight: 800;
  color: var(--dark);
  margin-bottom: calc(12px * var(--spacing-scale));
  line-height: 1.3;
}

.section-subtitle {
  font-size: calc(20px * var(--font-scale));
  color: var(--text-secondary);
  max-width: calc(680px * var(--content-scale));
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   Tab Selector 标签选择器样式
   ============================================ */

.tab-selector {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: calc(60px * var(--spacing-scale));
  padding: 0 20px;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: calc(16px * var(--content-scale)) calc(32px * var(--content-scale));
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(255, 140, 66, 0.15);
  border-radius: var(--radius-full);
  font-size: calc(16px * var(--font-scale));
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}

.tab-btn:hover {
  background: rgba(255, 140, 66, 0.08);
  border-color: rgba(255, 140, 66, 0.3);
  transform: translateY(-2px);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--warm-orange), #FF6B2C);
  border-color: transparent;
  color: white;
  box-shadow: 0 8px 24px rgba(255, 138, 58, 0.35);
}

.tab-icon {
  font-size: calc(20px * var(--font-scale));
}

.tab-text {
  white-space: nowrap;
}

/* 响应式标签 */
@media (max-width: 768px) {
  .tab-selector {
    gap: 12px;
    padding: 0 16px;
  }
  
  .tab-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .tab-icon {
    font-size: 18px;
  }
}

/* ============================================
   Timeline 时间轴样式（完整复制首页）
   ============================================ */
.timeline-container {
  position: relative;
  margin-bottom: calc(60px * var(--spacing-scale));
  overflow-x: auto;
  overflow-y: hidden;
  padding: calc(40px * var(--content-scale)) 0;
}

.timeline-track {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  padding: 0 20px;
}

.timeline-line {
  position: absolute;
  bottom: 72px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 140, 66, 0.3), rgba(255, 140, 66, 0.3), transparent);
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 24px;
  position: relative;
}

.timeline-avatar {
  width: calc(80px * var(--content-scale));
  height: calc(100px * var(--content-scale));
  border-radius: 40px 40px 20px 20px;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: calc(16px * var(--spacing-scale));
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.timeline-avatar-body {
  font-size: calc(48px * var(--content-scale));
  transition: all 0.5s;
}

/* 鸡蛋 SVG 样式 */
.timeline-avatar.egg-avatar {
  padding: 4px;
  background: linear-gradient(135deg, rgba(255,251,245,0.95), rgba(255,248,240,0.8));
  border: none;
  box-shadow: 
    inset 0 2px 4px rgba(255,255,255,0.8),
    0 4px 12px rgba(139, 115, 85, 0.1);
}

.egg-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 3px 6px rgba(139, 115, 85, 0.15));
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 悬停效果 */
.timeline-item:hover .egg-svg {
  transform: scale(1.08) translateY(-4px);
  filter: drop-shadow(0 8px 20px rgba(255, 140, 66, 0.25));
}

/* 选中的鸡蛋样式 */
.timeline-item.active .timeline-avatar.egg-avatar {
  background: linear-gradient(135deg, #FFF8F0, rgba(255, 209, 102, 0.25));
  box-shadow: 
    0 12px 40px rgba(255, 140, 66, 0.25),
    inset 0 2px 8px rgba(255,255,255,0.6);
}

.timeline-item.active .egg-svg {
  filter: drop-shadow(0 6px 16px rgba(255, 140, 66, 0.3));
  transform: scale(1.05);
}

.timeline-item.far .timeline-avatar {
  transform: scale(0.65);
  filter: blur(2px);
  opacity: 0.4;
}

.timeline-item.mid .timeline-avatar {
  transform: scale(0.8);
  filter: blur(1px);
  opacity: 0.6;
}

.timeline-item.near .timeline-avatar {
  transform: scale(0.9);
  opacity: 0.8;
}

.timeline-item.active .timeline-avatar {
  transform: scale(1.1);
  filter: blur(0);
  opacity: 1;
  background: linear-gradient(135deg, var(--warm-orange-light), var(--warm-yellow));
  animation: avatarBounce 0.6s ease-out;
}

.timeline-item.active .timeline-avatar::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2.5px solid var(--warm-orange);
  animation: avatarGlow 2s ease-in-out infinite;
}

@keyframes avatarGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 140, 66, 0.2); }
  50% { box-shadow: 0 0 20px 4px rgba(255, 140, 66, 0.15); }
}

@keyframes avatarBounce {
  0%, 100% { transform: scale(1.1); }
  50% { transform: scale(1.15); }
}

.timeline-item.active .timeline-avatar-body {
  transform: scale(1.2);
}

.timeline-item.active .timeline-label {
  color: var(--warm-orange);
  font-size: calc(15px * var(--font-scale));
  font-weight: 700;
}

.timeline-dot {
  width: calc(12px * var(--content-scale));
  height: calc(12px * var(--content-scale));
  border-radius: 50%;
  background: rgba(255, 140, 66, 0.3);
  margin-bottom: 12px;
  transition: all 0.4s;
  position: relative;
  z-index: 2;
}

.timeline-item.active .timeline-dot {
  background: var(--warm-orange);
  box-shadow: 0 0 0 4px rgba(255, 140, 66, 0.2);
}

.timeline-label {
  font-size: calc(13px * var(--font-scale));
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: all 0.4s;
}

.timeline-item.active .timeline-label {
  color: var(--warm-orange);
  font-size: 15px;
}

/* ============================================
   Explore Tabs 页面切换标签
   ============================================ */
.tab-logo-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--warm-orange), var(--warm-yellow));
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.tab-logo-icon::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}

.explore-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.explore-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 140, 66, 0.2);
  background: rgba(255, 255, 255, 0.5);
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.explore-tab:hover {
  background: rgba(255, 140, 66, 0.08);
  transform: translateY(-1px);
}

.explore-tab.active {
  background: linear-gradient(135deg, var(--warm-orange), var(--warm-yellow));
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(255, 138, 58, 0.25);
}

/* ============================================
   Chat preview 聊天窗口样式（完整复制首页）
   ============================================ */
.chat-preview {
  max-width: calc(560px * var(--content-scale));
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 140, 66, 0.1);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.chat-header {
  padding: calc(16px * var(--content-scale)) calc(24px * var(--content-scale));
  border-bottom: 1px solid rgba(255, 140, 66, 0.08);
  display: flex;
  align-items: center;
  gap: calc(12px * var(--content-scale));
}

.chat-header-avatar {
  width: calc(36px * var(--content-scale));
  height: calc(36px * var(--content-scale));
  background: linear-gradient(135deg, var(--warm-orange), var(--warm-yellow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(16px * var(--font-scale));
}

.chat-header-avatar.shell-avatar {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.chat-header-info {
  flex: 1;
}

.chat-header-info h5 {
  font-size: calc(14px * var(--font-scale));
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.chat-header-info span {
  font-size: calc(12px * var(--font-scale));
  color: var(--text-secondary);
}

.chat-header-actions {
  display: flex;
  align-items: center;
  gap: calc(8px * var(--content-scale));
}

.clear-chat-btn {
  padding: calc(8px * var(--content-scale)) calc(16px * var(--content-scale));
  background: transparent;
  border: 1px solid rgba(255, 140, 66, 0.3);
  border-radius: 20px;
  color: #FF8A3A;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.clear-chat-btn:hover {
  background: var(--warm-orange);
  color: white;
}

.chat-messages {
  padding: calc(24px * var(--content-scale));
  display: flex;
  flex-direction: column;
  gap: calc(16px * var(--content-scale));
  min-height: clamp(120px, 25vh, calc(200px * var(--content-scale)));
  max-height: clamp(240px, 45vh, calc(400px * var(--content-scale)));
  overflow-y: auto;
}

/* 消息气泡 - 与首页完全一致 */
.chat-msg {
  max-width: 75%;
  padding: calc(12px * var(--content-scale)) calc(18px * var(--content-scale));
  border-radius: 18px;
  font-size: calc(14px * var(--font-scale));
  line-height: 1.6;
  animation: msgFadeIn 0.5s ease-out;
}

@keyframes msgFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-msg.ai {
  background: rgba(255, 140, 66, 0.08);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  color: var(--dark);
}

.chat-msg.user {
  background: var(--dark);
  color: var(--cream);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

/* 输入指示器 */
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 12px 18px;
  background: rgba(255, 140, 66, 0.08);
  border-bottom-left-radius: 4px;
  border-radius: 18px;
  align-self: flex-start;
}

.typing-dot {
  width: 8px;
  height: 8px;
  background: var(--warm-orange);
  border-radius: 50%;
  animation: typingDot 1.4s infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-8px); }
}

/* 开始对话按钮 */
.chat-start-btn {
  display: flex;
  justify-content: center;
  padding: calc(20px * var(--content-scale)) calc(24px * var(--content-scale));
  border-top: 1px solid rgba(255, 140, 66, 0.08);
}

.start-chat-btn {
  display: inline-flex;
  align-items: center;
  gap: calc(8px * var(--content-scale));
  padding: calc(14px * var(--content-scale)) calc(28px * var(--content-scale));
  background: linear-gradient(135deg, var(--warm-orange), #FF6B2C);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-size: calc(15px * var(--font-scale));
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(255, 138, 58, 0.35);
}

.start-chat-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 138, 58, 0.45);
}

.start-chat-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-icon {
  font-size: calc(16px * var(--font-scale));
  transition: transform 0.3s;
}

.start-chat-btn:hover .btn-icon {
  transform: scale(1.1);
}

/* 输入区域 */
.chat-input {
  padding: calc(16px * var(--content-scale)) calc(24px * var(--content-scale));
  border-top: 1px solid rgba(255, 140, 66, 0.08);
  display: flex;
  gap: calc(12px * var(--content-scale));
}

.chat-input input {
  flex: 1;
  padding: calc(12px * var(--content-scale)) calc(18px * var(--content-scale));
  border: 1px solid rgba(255, 140, 66, 0.2);
  border-radius: 25px;
  outline: none;
  font-size: calc(14px * var(--font-scale));
  transition: all 0.3s;
  background: white;
  color: var(--dark);
  pointer-events: auto;
}

.chat-input input:focus {
  border-color: rgba(255, 140, 66, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.08);
}

.chat-input input:not(:disabled) {
  background: white;
  pointer-events: auto;
}

.chat-input input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.chat-input input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.send-btn {
  padding: calc(12px * var(--content-scale)) calc(24px * var(--content-scale));
  background: linear-gradient(135deg, #FF8A3A, #FFB266);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: calc(14px * var(--font-scale));
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 138, 58, 0.4);
}

/* 响应式 */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
  
  .timeline-container {
    overflow-x: auto;
    padding: 20px;
  }
  
  .timeline-item {
    padding: 0 12px;
  }
  
  .timeline-avatar {
    width: 60px;
    height: 75px;
  }
  
  .timeline-avatar-body {
    font-size: 36px;
  }
  
  .timeline-label {
    font-size: 12px;
  }
  
  .explore-tabs {
    gap: 8px;
    margin-bottom: 16px;
  }

  .explore-tab {
    padding: 10px 18px;
    font-size: 14px;
  }

  .chat-preview {
    margin: 0 -12px;
    border-radius: 0;
  }
  
  .chat-messages {
    padding: 16px;
  }
  
  /* 移动端导航栏适配 */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 248, 240, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .nav-links.open {
    display: flex;
  }
  
  .nav-links a {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    white-space: nowrap;
  }
  
  .mobile-menu-btn {
    display: flex;
    z-index: 1001;
  }
  
  .nav-user {
    display: none !important;
  }
  
  .mobile-only-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .mobile-only-nav-item .nav-user-trigger {
    padding: 14px 24px;
    font-size: 18px;
  }
  
  .mobile-only-nav-item .nav-user-avatar {
    width: 40px;
    height: 40px;
  }
  
  .mobile-nav-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  
  .mobile-nav-action-btn {
    padding: 12px 24px;
    font-size: 16px;
    background: rgba(255, 138, 58, 0.08);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    color: var(--dark);
    font-family: inherit;
    min-width: 180px;
    text-align: center;
  }
  
  .nav-logo-text {
    display: none;
  }
  
  /* 聊天头部移动端适配 */
  .chat-header {
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px;
  }
  
  .chat-header-info {
    flex: 1 1 auto;
    min-width: 0;
  }
  
  .chat-header-info h5 {
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .chat-header-info span {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .chat-header-actions {
    flex: 1 1 100%;
    justify-content: flex-end;
    gap: 8px;
  }
  
  .chat-header-actions .clear-chat-btn {
    padding: 8px 12px;
    font-size: 13px;
  }
  
  .chat-msg {
    max-width: 85%;
  }
}

/* ============================================
   风格档案 Markdown 渲染样式
   ============================================ */
.profile-markdown h1,
.profile-markdown h2,
.profile-markdown h3,
.profile-markdown h4 {
  color: #222;
  margin-top: 1.2em;
  margin-bottom: 0.5em;
  font-weight: 600;
  line-height: 1.4;
}

.profile-markdown h1 { font-size: 1.3em; }
.profile-markdown h2 { font-size: 1.15em; color: #FF8A3A; }
.profile-markdown h3 { font-size: 1em; }

.profile-markdown p {
  margin: 0.6em 0;
}

.profile-markdown ul,
.profile-markdown ol {
  padding-left: 20px;
  margin: 0.6em 0;
}

.profile-markdown li {
  margin: 0.3em 0;
}

.profile-markdown strong {
  color: #FF8A3A;
  font-weight: 600;
}

.profile-markdown em {
  color: #666;
  font-style: italic;
}

.profile-markdown code {
  background: rgba(255, 140, 66, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  font-family: 'Courier New', monospace;
  color: #c0392b;
}

.profile-markdown hr {
  border: none;
  border-top: 1px dashed rgba(255, 140, 66, 0.2);
  margin: 1em 0;
}

.profile-markdown blockquote {
  border-left: 3px solid rgba(255, 140, 66, 0.3);
  padding-left: 12px;
  margin: 0.8em 0;
  color: #666;
  background: rgba(255, 140, 66, 0.04);
  border-radius: 0 4px 4px 0;
}


/* ============================================
   人格分类卡片样式
   ============================================ */
.personality-card {
  text-align: center;
  padding: 24px 16px;
  animation: personalityFadeIn 0.4s ease;
}

@keyframes personalityFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.personality-card .personality-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(255, 138, 58, 0.2));
}

.personality-card .personality-emoji {
  font-size: 64px;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(255, 138, 58, 0.15));
}

.personality-card .personality-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--warm-orange);
  margin-bottom: 8px;
}

.personality-card .personality-slogan {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-style: italic;
  line-height: 1.5;
}

.personality-card .personality-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  text-align: left;
  background: rgba(255, 138, 58, 0.05);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.personality-card .personality-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.personality-card .personality-btn {
  background: var(--warm-orange);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 13px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

.personality-card .personality-btn:hover {
  background: #e67d2e;
  transform: translateY(-1px);
}

.personality-card .personality-btn-back {
  background: #f0f0f0;
  color: #555;
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 13px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

.personality-card .personality-btn-back:hover {
  background: #e5e5e5;
}
