.maslow-result {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

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

.maslow-result .result-header h2 {
    font-size: 32px;
    margin: 0 0 20px 0;
    color: var(--text-primary);
}

.maslow-result .total-score {
    font-size: 72px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.maslow-result .score-label {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.maslow-result .level-badge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.maslow-result h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.maslow-pyramid-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.maslow-pyramid {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.pyramid-level {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    height: 60px;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pyramid-level:hover {
    transform: scale(1.02);
}

.pyramid-level.transcendence {
    width: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.pyramid-level.selfActualization {
    width: 85%;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.pyramid-level.physiological {
    width: 100%;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.pyramid-level.safety {
    width: 80%;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.pyramid-level.love {
    width: 60%;
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
}

.pyramid-level.esteem {
    width: 40%;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.pyramid-level.selfActualization {
    width: 25%;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.pyramid-level.transcendence {
    width: 15%;
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.pyramid-level.active {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.pyramid-level-content {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 600;
}

.pyramid-level-name {
    font-size: 14px;
}

.pyramid-level-score {
    font-size: 16px;
    font-weight: 700;
}

.distribution-chart {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
}

.distribution-chart h3 {
    text-align: center;
    margin-bottom: 30px;
}

.normal-distribution-svg {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: block;
}

.dimension-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.dimension-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid var(--primary-color);
}

.dimension-card.physiological {
    border-left-color: #ef4444;
}

.dimension-card.safety {
    border-left-color: #f97316;
}

.dimension-card.love {
    border-left-color: #eab308;
}

.dimension-card.esteem {
    border-left-color: #22c55e;
}

.dimension-card.selfActualization {
    border-left-color: #06b6d4;
}

.dimension-card.transcendence {
    border-left-color: #8b5cf6;
}

.dimension-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.dimension-header h4 {
    margin: 0;
    color: var(--text-primary);
}

.dimension-score {
    font-size: 24px;
    font-weight: 700;
}

.dimension-score.high {
    color: #10b981;
}

.dimension-score.medium {
    color: #f59e0b;
}

.dimension-score.low {
    color: #ef4444;
}

.dimension-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin: 15px 0;
    overflow: hidden;
}

.dimension-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.dimension-bar-fill.physiological {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.dimension-bar-fill.safety {
    background: linear-gradient(90deg, #f97316, #ea580c);
}

.dimension-bar-fill.love {
    background: linear-gradient(90deg, #eab308, #ca8a04);
}

.dimension-bar-fill.esteem {
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

.dimension-bar-fill.selfActualization {
    background: linear-gradient(90deg, #06b6d4, #0891b2);
}

.dimension-bar-fill.transcendence {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.dimension-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.dimension-status {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.dimension-status.satisfied {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.dimension-status.developing {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.dimension-status.needs-attention {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.development-suggestions {
    margin-top: 30px;
}

.suggestion-category {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.suggestion-category h4 {
    margin: 0 0 15px 0;
    color: var(--text-primary);
}

.suggestion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.suggestion-list li {
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.suggestion-list li:last-child {
    border-bottom: none;
}

.suggestion-list li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
}

@media (max-width: 768px) {
    .maslow-result {
        padding: 20px 15px;
    }
    
    .maslow-result .result-header h2 {
        font-size: 24px;
    }
    
    .maslow-result .total-score {
        font-size: 56px;
    }
    
    .dimension-cards {
        grid-template-columns: 1fr;
    }
    
    .pyramid-level-name {
        font-size: 12px;
    }
    
    .pyramid-level-score {
        font-size: 14px;
    }
}
