/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans TC", sans-serif;
}

body {
    background: #f5f7fb;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.header h1 {
    font-size: 26px;
    color: #0059ff;
}

.search-box {
    display: flex;
    gap: 10px;
}

.search-box input {
    padding: 10px 14px;
    width: 200px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.search-box button {
    background: #0059ff;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
}

.search-box button:hover {
    background: #003ec0;
}

/* Info cards */
.info-section {
    background: white;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 20px;
}

.info-item {
    padding: 10px 0;
}

.info-title {
    font-size: 14px;
    color: gray;
}

.info-value {
    font-size: 18px;
    font-weight: 700;
}

/* Score rings */
.score-ring {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 10px solid #0059ff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 38px;
    color: #0059ff;
    font-weight: 700;
}

/* Section Title */
.section-title {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 700;
}

/* Score bars */
.score-section {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
}

.score-card {
    padding: 16px;
    background: white;
    border-radius: 16px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

.score-bar-bg {
    background: #e7e7e7;
    height: 10px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 6px;
}

.score-bar-fill {
    height: 10px;
    background: #0059ff;
    border-radius: 10px;
}

/* Mobile */
@media (max-width: 600px) {
    .search-box input {
        width: 140px;
    }
}
