/* 기본 스타일 */
:root {
    --primary-color: #3457D5;
    --primary-light: #5b7ee5;
    --secondary-color: #F5F5DC;
    --accent-color: #800020;
    --text-color: #333;
    --light-text: #666;
    --background-color: #fff;
    --card-background: #f9f9f9;
    --border-color: #ddd;
    --shadow: 0 2px 4px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --progress-width: 10%;
}

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

body {
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

ul#question-list {
    list-style-type: none; /* 기본 불릿 제거 */
    padding: 0;
}

ul#question-list li {
    display: inline-block; /* 리스트 항목을 inline-block으로 설정하여 가로로 배치 */
    margin: 10px; /* 각 항목 사이의 간격 설정 */
}

ul#question-list li a {
    display: inline-block; /* a 태그를 block 수준으로 바꿔서 클릭 가능한 영역을 설정 */
    padding: 10px 20px; /* 버튼의 내외 여백을 고정 */
    border: 2px solid #007bff; /* 파란색 테두리 */
    border-radius: 5px; /* 둥근 모서리 */
    color: #007bff; /* 파란색 텍스트 */
    text-decoration: none; /* 링크 밑줄 제거 */
    font-size: 16px; /* 텍스트 크기 설정 */
    text-align: center; /* 텍스트 가운데 정렬 */
    min-width: 150px; /* 최소 너비를 설정해 크기 균일화 */
}

ul#question-list li a:hover {
    background-color: #007bff; /* 마우스 오버 시 배경색 */
    color: white; /* 마우스 오버 시 텍스트 색상 */
}

.score-reason {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    font-size: 14px;
    color: #856404;
    text-align: left;
}

.score-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
}

.score-table th, .score-table td {
    padding: 10px;
    text-align: center;
}



.score-table th {
    background-color: #f8f9fa;
    font-weight: bold;
}

/* 돌아가기 버튼 스타일 */
.back-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff; /* 배경색 */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px; /* 버튼 모서리 둥글게 */
    margin-top: 20px;
    margin-bottom: 30px; /* 버튼 아래 여백 추가 */
    text-align: center;
}

.back-btn:hover {
    background-color: #0056b3; /* 호버 시 색상 변경 */
}

.container {
    min-height: 100vh;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    /*text-align: center; !* 텍스트 및 항목들을 가운데 정렬 *!*/
}

/* 헤더 */
.header {
    padding: 7px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

/* 섹션 공통 */
.section {
    display: none;
    padding: 40px 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.section.active {
    display: flex;
}

/* 인트로 섹션 */
#intro {
    text-align: center;
}

#intro h1 {
    margin-bottom: 40px;
    font-size: 2.2rem;
    max-width: 600px;
}

/* 버튼 스타일 */
.btn {
    padding: 12px 24px;
    border-radius: 30px;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
}

.primary-btn:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.secondary-btn:hover {
    background-color: #e9e9d2;
}

.secondary-btn:disabled {
    background-color: #f0f0f0;
    color: #aaa;
    cursor: not-allowed;
}

.text-btn {
    background: none;
    color: var(--light-text);
    text-decoration: underline;
}

.text-btn:hover {
    color: var(--primary-color);
}

/* 테스트 섹션 */
.progress-container {
    width: 100%;
    max-width: 600px;
    margin-bottom: 30px;
}

.progress-bar {
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    height: 100%;
    background-color: var(--primary-color);
    width: var(--progress-width);
    left: 0;
    top: 0;
    transition: width 0.3s ease;
}

.progress-text {
    text-align: right;
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--light-text);
}

.question-container {
    width: 100%;
    max-width: 600px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.question {
    width: 100%;
    margin-bottom: 30px;
}

.question-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option {
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.option:hover {
    background-color: var(--secondary-color);
    border-color: var(--primary-color);
}

.option.selected {
    background-color: var(--primary-light);
    color: white;
    border-color: var(--primary-color);
}

.slider-container {
    width: 100%;
    padding: 0 10px;
}

.slider {
    width: 100%;
    -webkit-appearance: none;
    height: 10px;
    border-radius: 5px;
    background: #eee;
    outline: none;
    margin: 20px 0;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--light-text);
}

/* 척도 옵션 스타일 */
.scale-options {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.scale-labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 0.9rem;
    color: var(--light-text);
}

.scale-buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 400px;
    gap: 10px;
}

.scale-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: white;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.scale-button:hover {
    background-color: var(--secondary-color);
    border-color: var(--primary-color);
}

.scale-button.selected {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.slider-value {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-top: 10px;
}

.test-controls {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
}

/* 결과 섹션 */
.results-container {
    width: 100%;
    max-width: 800px;
    margin-top: 30px;
}

.main-result {
    background-color: var(--card-background);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.denomination-name {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.match-percentage {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.key-features {
    margin-top: 20px;
}

.key-feature {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.key-feature-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.key-feature::before {
    content: '•';
    margin-right: 10px;
    color: var(--primary-color);
}

.sub-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.sub-result {
    background-color: var(--card-background);
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.sub-denomination-name {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.sub-match-percentage {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.result-chart {
    width: 100%;
    max-width: 600px;
    height: 300px;
    margin: 30px 0;
}

.denomination-details {
    width: 100%;
    max-width: 800px;
    background-color: var(--card-background);
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: var(--shadow);
}

.denomination-details h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.detail-section {
    margin-bottom: 20px;
}

.detail-section h4 {
    margin-bottom: 10px;
    color: var(--text-color);
}

.result-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

/* 푸터 */
.footer {
    background-color: #f1f1f1;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    color: #333;
    margin-top: 20px;
}

.footer a {
    color: #007bff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* 반응형 */
@media (max-width: 768px) {
    #intro h1 {
        font-size: 1.8rem;
    }

    .sub-results {
        grid-template-columns: 1fr;
    }

    .test-controls {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .test-controls button {
        width: 100%;
    }

    .question-title {
        font-size: 1.2rem;
    }
}

/* 애니메이션 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeIn {
    animation: fadeIn 0.5s ease forwards;
}
/* 공유 버튼 컨테이너 */
.share-buttons-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 30px 0;
}

/* 공유 버튼 공통 스타일 */
.share-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: none;
    background-color: #f5f5f5;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.share-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* 카카오톡 공유 버튼 */
.kakao-button {
    background-color: #FEE500;
}

/* 페이스북 공유 버튼 */
.facebook-button {
    background-color: #3b5998;
}

/* 트위터 공유 버튼 */
.twitter-button {
    background-color: #000000;
}

/* 링크 복사 버튼 */
.link-button {
    background-color: #e9e9e9;
}

/* 이미지 저장 버튼 */
.image-button {
    background-color: #4CAF50;
}

/* 버튼 아이콘 스타일 */
.share-button i {
    font-size: 24px;
    margin-bottom: 5px;
    color: white;
}

.share-button.kakao-button i {
    color: #3A1D1D;
}

.share-button.link-button i {
    color: #555;
}

/* 버튼 텍스트 스타일 */
.share-button span {
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    color: #333;
}

.share-button.facebook-button span,
.share-button.twitter-button span,
.share-button.image-button span {
    color: white;
}

/* 공유 완료 토스트 메시지 */
.toast-message {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0,0,0,0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.toast-message.show {
    opacity: 1;
}