

.score-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: all .3s ease;
}

    .score-card:hover {
        transform: translateY(-6px);
    }

.score-title {
    font-weight: 600;
    color: #555;
}

.score-circle {
    width: 90px;
    height: 90px;
    margin: 20px auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #26a745, #5cd85a);
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.score-max {
    color: #777;
    font-size: 14px;
}

.interpret-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.interpret-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border-radius: 14px;
    margin-bottom: 12px;
    font-weight: 600;
}

    .interpret-item.weak {
        background: #ffe5e5;
        color: #c0392b;
    }

    .interpret-item.medium {
        background: #fff3cd;
        color: #856404;
    }

    .interpret-item.strong {
        background: #e6fffa;
        color: #0f5132;
    }

.total-score-card {
    background: linear-gradient(135deg, #26a745, #43c172);
    color: #fff;
    border-radius: 25px;
    padding: 40px 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
}

.total-score-circle {
    width: 120px;
    height: 120px;
    margin: 20px auto;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    font-size: 36px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
