* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Sans KR', sans-serif;
}
.wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3px 16px 12px 16px;
    margin-top:-15px;
    border: 1px solid #0f172a;
    border-radius: 12px;
    cursor: pointer;
}
.wrap:hover {
    border: 1px solid #3b82f6;
    box-shadow: 10px 10px 20px rgba(59, 130, 246, 0.3);
    transition: all 0.7s ease;
}
.ring-container {
    position: relative;
    width: 230px;
    height: 230px;
}
.ring-svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}
.ring-track {
    fill: none;
    stroke: rgba(255,255,255,0.07);
    stroke-width: 14;
}
.ring-progress {
    fill: none;
    stroke: #00ff00;
    stroke-width: 14;
    stroke-linecap: round;
    stroke-dasharray: 628;
    stroke-dashoffset: 628;
    transition: stroke-dashoffset 2s cubic-bezier(0.19, 1, 0.22, 1), stroke 1s ease;
}
.ring-content {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.score-big {
    font-size: 4rem;
    font-weight: 900;
    color: #00ff00;
    line-height: 1;
}
.score-unit {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00ff00;
}
.score-sub {
    font-size: 0.72rem;
    color: #848e9c;
    margin-top: 4px;
    letter-spacing: 0.05em;
}
.label-line {
    margin-top: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #848e9c;
}