/* 청약 가점 계산기 전용 스타일 */

.score-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 1rem;
}

.score-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.score-item-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.score-item-title i {
    margin-right: 0.4rem;
    color: var(--pastel-blue-1);
}

.score-display {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pastel-blue-1);
    background: var(--pastel-cream);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    min-width: 48px;
    text-align: center;
}

.score-guide {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.total-score-card {
    background: linear-gradient(135deg, var(--pastel-blue-1), var(--pastel-blue-2));
    color: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin-top: 1.5rem;
}

.total-score-label {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

.total-score-value {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.total-score-max {
    font-size: 1.2rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.score-bar-wrapper {
    background: rgba(255,255,255,0.2);
    border-radius: 100px;
    height: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.score-bar {
    height: 100%;
    background: white;
    border-radius: 100px;
    transition: width 0.6s ease;
}

.rank-info {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}
