.tool-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
}
.constellation-match {
    background: #fff;
    padding: 40px;
}
.tool-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}
.tool-desc {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 15px;
}
.select-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
}
.select-item {
    flex: 1;
    min-width: 250px;
}
.select-item label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
}
.select-item select {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s;
}
.select-item select:focus {
    border-color: #a07dff;
    box-shadow: 0 0 0 3px rgba(160,125,255,0.15);
}
.btn-box {
    text-align: center;
    margin-bottom: 40px;
}
.match-btn {
    background: linear-gradient(135deg, #a07dff, #7a68ff);
    color: #fff;
    border: none;
    height: 50px;
    padding: 0 40px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}
.match-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(160,125,255,0.3);
}
.result-box {
    border-radius: 16px;
    background: #fafbff;
    padding: 30px;
    display: none;
}
.result-box.show {
    display: block;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.result-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}
.score-box {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
    text-align: center;
}
.score-item {
    min-width: 70px;
}
.score-item .num {
    font-size: 24px;
    font-weight: bold;
    color: #7a68ff;
}
.score-item .label {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}
.result-content {
    line-height: 2;
    color: #444;
    font-size: 15px;
}
.result-content h4 {
    margin: 16px 0 8px;
    color: #5c4fc0;
    font-size: 16px;
}
.result-content p {
    margin: 6px 0;
}