/* 测试结果页面样式 */

/* 全局背景与布局 */
.test-results {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', 'Inter', 'Helvetica Neue', sans-serif;
}

.test-results::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(187, 134, 252, 0.08), rgba(187, 134, 252, 0) 70%);
    z-index: -1;
    animation: rotate-bg 30s infinite linear;
}

.test-results::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(187, 134, 252, 0.15), transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(187, 134, 252, 0.1), transparent 20%);
    z-index: -1;
    pointer-events: none;
}

.results-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 20px;
    width: 100%;
    box-sizing: border-box;
}

.result-header {
    text-align: center;
    margin-bottom: 64px;
}

.result-type {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), #A876E8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 12px rgba(187, 134, 252, 0.3);
    position: relative;
    display: inline-block;
    animation: fadeSlideIn 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(10px);
}

.result-type::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #A876E8);
    border-radius: 2px;
}

.result-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.result-description {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.result-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.result-meta-item,
.dimension-result,
.characteristic-item,
.career-tag {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.result-meta-item:hover,
.dimension-result:hover,
.characteristic-item:hover,
.career-tag:hover {
    transform: translateY(-5px);
    border-color: rgba(187, 134, 252, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.result-meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 36px;
}

.meta-label {
    font-size: 16px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meta-value {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
}

.result-dimensions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 64px;
}

.dimension-result {
    padding: 36px;
    position: relative;
    overflow: hidden;
    max-width: 400px;
    width: 100%;
}

.dimension-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

.dimension-opposite {
    font-size: 18px;
    color: var(--text-secondary);
}

.dimension-value {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.dimension-bar-container {
    width: 100%;
    height: 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 24px;
}

.dimension-bar-fill {
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(90deg, rgba(187, 134, 252, 0.8), rgba(168, 118, 232, 1));
    box-shadow: 0 0 15px rgba(187, 134, 252, 0.5);
    transition: width 1s ease-in-out;
}

.dimension-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* 雷达图容器样式 */
.chart-container {
    position: relative;
    height: 400px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* 雷达图图例样式 */
.chart-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.chart-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
}

.chart-legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.chart-legend-color.user {
    background: linear-gradient(135deg, rgba(103, 80, 164, 0.8), rgba(103, 80, 164, 1));
}

.chart-legend-color.typical {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(59, 130, 246, 1));
}

/* 相似人物卡片样式 */
.people-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.person-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.person-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(187, 134, 252, 0.15);
    border-color: rgba(187, 134, 252, 0.2);
}

.person-card h4 {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

.person-role {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.person-description {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .chart-container {
        height: 350px;
        max-width: 100%;
        padding: 15px;
    }
    
    .chart-legend {
        gap: 20px;
    }
    
    .chart-legend-item {
        font-size: 14px;
    }
}

.characteristics-title,
.careers-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 36px;
    position: relative;
    padding-bottom: 12px;
}

.characteristics-title::after,
.careers-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #A876E8);
    border-radius: 2px;
}

.characteristic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 64px;
}

.characteristic-item {
    padding: 28px;
}

.characteristic-icon {
    width: 56px;
    height: 56px;
    background: rgba(187, 134, 252, 0.1);
    border: 1px solid rgba(187, 134, 252, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.characteristic-icon i {
    font-size: 26px;
    color: var(--primary-color);
}

.characteristic-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.characteristic-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.result-careers {
    margin-bottom: 64px;
}

.career-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.career-tag {
    padding: 14px 24px;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    cursor: pointer;
}

.career-tag i {
    font-size: 18px;
    color: var(--primary-color);
}

.result-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.share-btn,
.retest-btn {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.share-btn {
    background: rgba(30, 30, 40, 0.8);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.share-btn:hover {
    background: rgba(40, 40, 50, 0.9);
    border-color: rgba(187, 134, 252, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.retest-btn {
    background: linear-gradient(135deg, var(--primary-color), #A876E8);
    color: white;
    border: none;
}

.retest-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(187, 134, 252, 0.4);
}

.retest-btn:active {
    transform: translateY(1px);
}

@keyframes rotate-bg {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); }
}

@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 核心特质部分样式 */
.core-traits-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.core-traits-section h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.core-traits-section h4::before {
    content: '';
    display: none;
}

.core-traits-section .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.core-traits-section .tag {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    background: rgba(187, 134, 252, 0.1);
    border: 1px solid rgba(187, 134, 252, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.core-traits-section .tag:hover {
    background: rgba(187, 134, 252, 0.2);
    border-color: rgba(187, 134, 252, 0.4);
    transform: translateY(-2px);
}

/* 分享模块紧凑样式 */
.share-section {
    margin-bottom: 24px;
    padding: 16px;
}

.share-section .card-title {
    margin-bottom: 12px;
    font-size: 16px;
}

/* 分享行统一布局 */
.share-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.share-section .result-meta {
    display: flex;
    gap: 12px;
    margin: 0;
    flex-wrap: nowrap;
}

.share-section .result-meta-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.share-section .meta-label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: none;
    letter-spacing: 0;
}

.share-section .meta-value {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
}

.share-section .result-actions {
    margin: 0;
    gap: 12px;
}

.share-section .action-btn {
    padding: 8px 16px;
    font-size: 13px;
}

/* 分享图模态框样式 */
.share-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.share-modal-content {
    position: relative;
    background: var(--bg-secondary);
    border-radius: 16px;
    max-width: 90%;
    max-height: 90%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

.share-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-tertiary);
}

.share-modal-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.share-modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.share-modal-body {
    padding: 24px;
    max-height: 70vh;
    overflow-y: auto;
}

.share-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.share-image-container img {
    max-width: 100%;
    max-height: 60vh;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.share-modal-footer {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-tertiary);
    justify-content: center;
}

.share-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-action-btn:hover {
    background: rgba(187, 134, 252, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(187, 134, 252, 0.3);
}

.share-action-btn i {
    font-size: 20px;
}

/* 通用操作按钮样式 */
.action-btn {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    background: var(--primary-color);
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(187, 134, 252, 0.4);
    min-width: 180px;
    min-height: 56px;
    outline: none !important;
}

.personality-actions .action-btn:hover {
    background: var(--primary-color) !important;
    opacity: 0.9 !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 6px 20px rgba(187, 134, 252, 0.5) !important;
}

.action-btn:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 2px 8px rgba(187, 134, 252, 0.3);
}

/* 操作按钮容器样式 */
.personality-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 20px 0;
    flex-wrap: wrap;
    /* 移除所有可能的分割线或边框 */
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* 人物关系模块样式 */
.people-relationship {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.similar-people {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.similar-people h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.similar-people h4::before {
    content: 'star';
    font-family: 'Material Icons';
    font-size: 20px;
}

.similar-people p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.5;
}

.compatibility {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.compatibility h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.compatibility h4::before {
    content: 'favorite';
    font-family: 'Material Icons';
    font-size: 20px;
}

.compatibility-item {
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
}

.compatibility-item:last-child {
    margin-bottom: 0;
}

.compatibility-item h5 {
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 500;
}

.compatibility-item p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.4;
}

/* 人物关系模块中的职业方向样式 */
.people-relationship .career-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.people-relationship .career-section h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.people-relationship .career-section h4::before {
    content: 'work';
    font-family: 'Material Icons';
    font-size: 18px;
}

.people-relationship .career-section .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.people-relationship .career-section .tag {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    background: rgba(187, 134, 252, 0.1);
    border: 1px solid rgba(187, 134, 252, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.people-relationship .career-section .tag:hover {
    background: rgba(187, 134, 252, 0.2);
    border-color: rgba(187, 134, 252, 0.4);
    transform: translateY(-2px);
}

/* 成长建议卡片样式 */
.growth-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.growth-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.growth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(187, 134, 252, 0.3), transparent);
}

.growth-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(187, 134, 252, 0.2);
}

.growth-card h4 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.growth-card h4::before {
    content: 'lightbulb';
    font-family: 'Material Icons';
    font-size: 20px;
}

.growth-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* 兼容旧的成长建议样式 */
.growth-suggestions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.suggestion-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.suggestion-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.suggestion-icon {
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(187, 134, 252, 0.1);
    border-radius: 12px;
}

.suggestion-content h4 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.suggestion-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* 职业建议增强样式 */
.career-tag {
    background: rgba(187, 134, 252, 0.1);
    border: 1px solid rgba(187, 134, 252, 0.2);
    transition: all 0.3s ease;
}

.career-tag:hover {
    background: rgba(187, 134, 252, 0.2);
    border-color: rgba(187, 134, 252, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(187, 134, 252, 0.2);
}

/* 特质卡片增强样式 */
.characteristic-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.characteristic-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(187, 134, 252, 0.15);
    border-color: rgba(187, 134, 252, 0.2);
}

/* 相似人物网格样式 */
.similar-people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.similar-person-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.similar-person-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(187, 134, 252, 0.15);
}

.person-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(187, 134, 252, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.person-info {
    flex: 1;
}

.person-info h4 {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.person-role {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.person-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .personality-actions {
        margin: 15px 0;
        gap: 16px;
    }
    
    .personality-actions .action-btn {
        padding: 12px 24px;
        font-size: 16px;
        min-width: 140px;
        min-height: 48px;
    }
    
    .people-relationship {
        gap: 16px;
    }
    
    .similar-people,
    .compatibility {
        padding: 16px;
    }
    
    .similar-people h4,
    .compatibility h4 {
        font-size: 16px;
    }
    
    .compatibility-item {
        padding: 10px;
        margin-bottom: 12px;
    }
    
    .compatibility-item h5 {
        font-size: 15px;
    }
    
    .compatibility-item p {
        font-size: 14px;
    }
    
    .core-traits-section {
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .core-traits-section h4 {
        font-size: 14px;
        margin-bottom: 0.6rem;
    }
    
    .core-traits-section .tag {
        font-size: 12px;
        padding: 4px 10px;
    }
    
    .people-relationship .career-section {
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .people-relationship .career-section h4 {
        font-size: 14px;
        margin-bottom: 0.6rem;
    }
    
    .people-relationship .career-section .tag {
        font-size: 12px;
        padding: 4px 10px;
    }
    
    .growth-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .growth-card {
        padding: 20px;
    }
    
    .growth-card h4 {
        font-size: 16px;
    }
    
    .growth-card p {
        font-size: 15px;
    }
    
    .similar-people-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .similar-person-item {
        padding: 16px;
    }
    
    .person-avatar {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .person-info h4 {
        font-size: 16px;
    }
    
    .person-role {
        font-size: 13px;
    }
    
    .person-description {
        font-size: 13px;
    }
    
    .result-card {
        padding: 16px;
        margin: 0 8px;
    }
    
    .result-row {
        margin: 0 8px;
    }
    
    .chart-container {
        padding: 15px;
        height: 300px;
    }
}
