body { font-family: 'Arial', sans-serif; background-color: #f4f7f6; color: #333; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; min-height: 100vh; }
.container { max-width: 600px; width: 90%; background-color: #fff; border-radius: 12px; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); padding: 30px; text-align: center; }
h1 { color: #2c3e50; font-size: 2em; margin-bottom: 10px; }
.subtitle { color: #7f8c8d; font-size: 1.1em; margin-bottom: 25px; }
.content { text-align: left; line-height: 1.6; }
.content ul { list-style: none; padding: 0; margin-top: 20px; }
.content li { background-color: #ecf0f1; padding: 10px 15px; border-radius: 8px; margin-bottom: 10px; }
.start-button, .back-button { display: inline-block; padding: 15px; border-radius: 8px; font-size: 1.2em; font-weight: bold; text-decoration: none; margin-top: 20px; transition: all 0.3s ease; margin-right: 10px;}
.start-button { background-color: #2ecc71; color: white; border: none; }
.start-button:hover { background-color: #27ae60; }
.back-button { background-color: #bdc3c7; color: #2c3e50; border: none; }
.back-button:hover { background-color: #95a5a6; }

/* 퀴즈 페이지 스타일 */
.quiz-page { text-align: left; }
.quiz-progress-bar { width: 100%; background-color: #e0e0e0; border-radius: 10px; margin: 20px 0; height: 10px; overflow: hidden; }
.progress { height: 100%; width: 0; background-color: #3498db; transition: width 0.4s ease; }
.question { font-size: 1.2em; margin-bottom: 20px; }
.options { display: flex; flex-direction: column; gap: 10px; }
.option { padding: 15px; background-color: #f8f9fa; border: 1px solid #dfe6e9; border-radius: 8px; cursor: pointer; transition: background-color 0.2s; }
.option:hover { background-color: #ecf0f1; }
.option.selected { background-color: #d1e2f3; border-color: #3498db; }
.next-button { display: block; width: 100%; padding: 15px; background-color: #3498db; color: white; border: none; border-radius: 8px; font-size: 1.2em; cursor: pointer; margin-top: 30px; }

/* 결과 페이지 스타일 */
.result-page h1 { margin-bottom: 5px; }
.result-subtitle { font-size: 1.4em; font-weight: bold; color: #34495e; margin-bottom: 20px; }
.result-text { line-height: 1.7; text-align: left; margin-top: 30px; }
#scoreChart { margin-top: 20px; }
.strategy-section { margin-top: 40px; text-align: left; }
.strategy-section h2 { border-bottom: 2px solid #e0e0e0; padding-bottom: 10px; margin-bottom: 20px; color: #2c3e50; }
.share-buttons { margin-top: 40px; }
#shareButton, .back-to-list-button { padding: 15px 30px; border-radius: 8px; font-size: 1.1em; font-weight: bold; text-decoration: none; border: none; cursor: pointer; transition: background-color 0.3s; }
#shareButton { background-color: #2ecc71; color: white; margin-right: 10px; }
#shareButton:hover { background-color: #27ae60; }
.back-to-list-button { background-color: #bdc3c7; color: #2c3e50; }
.back-to-list-button:hover { background-color: #95a5a6; }