* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #2C2C2C;
    min-width: 1200px;
    font-family: Inter;
}


/* header */

.header {
    height: 105px;
    background: white;
    border-bottom: 1px solid #eee;
}

.container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.wrap {
    display: flex;
    height: 105px;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
}

.logo img {
    width: 200px;
    height: 67px;
    cursor: pointer;
}

nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #585858;
    font-size: 20px;
    font-weight: 700;
}

nav a:hover {
    color: #A635F1;
    transition: all 0.2s;
}

nav .active {
    color: #A635F1;
}

main {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.result-container {
    width: 1200px;
    border-radius: 30px;
    border: 1px solid #A635F1;
    background: #FFF;
    padding: 60px 100px;
}

.result-title-area {
    text-align: center;
    margin-bottom: 37px;
}

.result-sub {
    font-size: 24px;
    line-height: 150%;
    letter-spacing: -0.456px;
}

.result-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.912px;
}

.result-code {
    color: #A635F1;
}

.bear-image {
    height: 317px;
}

.result-desc {
    width: 920px;
    margin: 0 auto;
    margin-bottom: 111px;
}

.result-desc-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.456px;
}

#bearName2 {
    color: #A635F1;
}

.result-summary {
    font-size: 24px;
    margin-bottom: 15px;
}

.result-detail {
    width: 100%;
    line-height: 30px;
}

.result-chart {
    margin-bottom: 178px;
}

.chart-wrapper {
    position: relative;
    width: 800px;
    margin: 0 auto;
    font-size: 20px;
    font-weight: 700;
}

.chart-name {
    width: 100px;
    text-align: center;
}

#chart-name-risk {
    position: absolute;
    top: 15px;
    left: -100px;
}

#chart-name-safe {
    position: absolute;
    top: 15px;
    right: -100px;
}

#chart-name-long {
    position: absolute;
    top: 100px;
    left: -100px;
}

#chart-name-quick {
    position: absolute;
    top: 100px;
    right: -100px;
}

#chart-name-analytical {
    position: absolute;
    top: 200px;
    left: -100px;
}

#chart-name-perceptive {
    position: absolute;
    top: 200px;
    right: -100px;
}

#chart-name-calm {
    position: absolute;
    top: 290px;
    left: -100px;
}

#chart-name-feeling {
    position: absolute;
    top: 290px;
    right: -100px;
}



.chart-main-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.456px;
    margin-bottom: 19px;
}

.chart-row {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.chart-label-left {
    width: 150px;
    text-align: right;
    font-size: 14px;
    color: #666;
}

.chart-label-right {
    width: 150px;
    font-size: 14px;
    color: #666;
}

.chart-center {
    flex: 1;
    padding: 0 20px;
}

.chart-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 8px;
}

.bar {
    width: 100%;
    height: 20px;
    background: #ECECEC;
    border-radius: 20px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #C17CFF, #8C3BFF);
    border-radius: 20px;
    width: 0;
    transition: width 0.6s ease;
}

.result-section {
    margin-bottom: 129px;
}

.section-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.456px;
    margin-bottom: 17px;
}

.mbti-highlight {
    color: #A635F1;
}

.section-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.result-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    height: 53px;
}

.retry-btn {
    width: 310px;
    height: 53px;
    border: none;
    border-radius: 10px;
    background: #A635F1;
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 53px;
    letter-spacing: -0.456px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
}

.replay-icon {
    width: 36px;
}

.share-btn {
    width: 310px;
    height: 53px;
    border: none;
    border-radius: 10px;
    background: #C67AFA;
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 53px;
    letter-spacing: -0.456px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
}

.url-icon {
    width: 53px;
}

.retry-btn:hover {
    opacity: 0.9;
}

.share-btn:hover {
    opacity: 0.9;
}

.footer {
    height: 172px;
    margin-top: 40px;
    padding-top: 24px;
    padding-bottom: 25px;
    background: #F9F6F8;
    color: #8FA1B2;
    font-size: 15px;
    font-weight: 400;
}

.company {
    color: #171717;
    font-size: 18px;
    margin-bottom: 10px;
}