@import url('https://fonts.googleapis.com/css2?family=Jua&display=swap');

:root {
    --primary-color: #0984e3; /* 지적인 파란색 */
    --secondary-color: #00cec9;
    --bg-color: #1a1a1a;
    --surface-color: #2c2c2c;
    --text-color: #fff;
    --btn-hover: #74b9ff;
}

body {
    font-family: 'Jua', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
    padding: 20px 0;
}

.container {
    position: relative; /* [추가] 내부 요소(언어 버튼)의 위치 기준점 */
    background-color: var(--surface-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 600px;
}

.screen { display: flex; flex-direction: column; align-items: center; }
.title { color: var(--secondary-color); font-size: 2.2rem; margin-bottom: 10px; }
.description { font-size: 1.1rem; margin-bottom: 30px; line-height: 1.6; color: #ccc; }

.btn {
    font-family: 'Jua', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    position: relative;
    text-decoration: none;
    width: 100%; /* 버튼 꽉 차게 */
    margin-bottom: 10px;
}
.btn:hover { background-color: var(--btn-hover); transform: scale(1.02); }
.btn:disabled { background-color: #555; cursor: not-allowed; transform: none; }

/* 퀴즈 화면 */
#quiz-screen { width: 100%; }
.header-status { 
    width: 100%; 
    display: flex; 
    justify-content: flex-end; /* 오른쪽 정렬 유지 */
    margin-bottom: 5px; 
    color: #888; 
    
    /* [수정 핵심] 버튼이 들어갈 자리를 확보하기 위해 오른쪽 안쪽 여백 추가 */
    padding-right: 70px; 
    box-sizing: border-box; /* 패딩이 너비에 포함되도록 설정 */
    align-items: center; /* 텍스트 수직 중앙 정렬 */
    height: 30px; /* 버튼 높이와 비슷하게 라인 확보 */
}

.progress-container { width: 100%; height: 10px; background-color: #444; border-radius: 5px; margin-bottom: 20px; }
#progress-bar { width: 0%; height: 100%; background-color: var(--secondary-color); border-radius: 5px; transition: width 0.3s; }

.category-badge {
    background-color: #6c5ce7;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 10px;
}

#question { margin-bottom: 30px; font-size: 1.4rem; min-height: 3.5rem; word-break: keep-all; }

/* 4지 선다 그리드 */
.btn-grid.four-options { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 12px; 
    width: 100%; 
}
/* 화면이 넓을 때는 2열로 배치 (선택사항) */
@media (min-width: 480px) {
    .btn-grid.four-options { grid-template-columns: 1fr 1fr; }
}

/* 결과 화면 */
#result-image { width: 150px; height: 150px; margin: 20px 0; border-radius: 50%; object-fit: cover; border: 4px solid var(--secondary-color); }
#result-title { color: var(--secondary-color); font-size: 2rem; margin-bottom: 5px; }
.score-display { font-size: 2.5rem; color: #ff7675; margin-bottom: 15px; font-weight: bold; }
#result-description { font-size: 1.1rem; line-height: 1.5; margin-bottom: 20px; white-space: pre-wrap;}

/* 공유 버튼 */
#share-buttons { display: flex; gap: 10px; margin-bottom: 25px; width: 100%; }
.share-btn { font-size: 0.95rem; padding: 12px; flex: 1; margin-bottom: 0;}
#kakao-btn { background-color: #FEE500; color: #191919; }
#kakao-btn:hover { background-color: #f7d800; }
#copy-btn { background-color: #555; }

/* 하단 링크 버튼들 */
#other-games-container {
    width: 100%;
    margin-top: 30px;
    padding: 20px 10px;
    background-color: #333;
    border-radius: 10px;
}
#other-games-container h3 { color: #fff; margin-bottom: 15px; font-size: 1.1rem; }
.link-grid { display: flex; flex-direction: column; gap: 10px; }
.button-link {
    display: block;
    background-color: #2d3436;
    border: 1px solid #636e72;
    color: #dfe6e9;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1rem;
}
.button-link:hover {
    background-color: var(--secondary-color);
    color: #1a1a1a;
    border-color: var(--secondary-color);
}

/* 밸런스 게임 강조 링크 (상단) */
.balance-game-link { background-color: #e84393; margin-top: 15px; }
.balance-game-link:hover { background-color: #fd79a8; }

/* 토스트 팝업 */
#toast-popup {
    visibility: hidden;
    min-width: 250px;
    background-color: rgba(50, 50, 50, 0.9);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 16px;
    position: fixed;
    z-index: 10000;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
    opacity: 0;
    transition: opacity 0.5s, bottom 0.5s;
}
#toast-popup.show { visibility: visible; opacity: 1; bottom: 80px; }
.ad-container { margin: 20px 0; min-height: 100px; display: flex; justify-content: center; }

/* [추가] 타이머 스타일 */
#timer-box {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff7675;
    margin-bottom: 10px;
}

/* [추가] 정답/오답 피드백 스타일 */
.btn.correct {
    background-color: #00b894 !important; /* 녹색 */
    color: #fff;
    border: 2px solid #00cec9;
    transform: scale(1.02);
}

.btn.wrong {
    background-color: #d63031 !important; /* 빨간색 */
    color: #fff;
    opacity: 0.8;
}

/* 정답 공개 시 정답 버튼 강조 */
.btn.reveal {
    background-color: #00b894 !important;
    box-shadow: 0 0 10px #00b894;
}

/* [수정] 언어 변경 버튼 위치 미세 조정 */
.lang-btn {
    position: absolute;
    top: 30px;   /* 컨테이너 padding(30px)과 높이를 맞춤 */
    right: 30px; /* 컨테이너 padding(30px)과 우측 여백을 맞춤 */
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10;
    font-family: sans-serif;
    line-height: 1;
}

.lang-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.install-btn {
    background-color: #2d3436; /* 어두운 회색 계열 */
    margin-top: 15px;          /* 시작 버튼과 간격 */
    border: 1px solid #636e72;
}

.install-btn:hover {
    background-color: #636e72;
    transform: scale(1.02);
}