/* ORDINU 감정 무드 진단 테스트 스타일 */

:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    --accent-color: #2d3436;
    --hover-color: #636e72;
    --success-color: #00b894;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    color: var(--gray-800);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
    background: var(--primary-white);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

/* 페이지 공통 스타일 */
.page {
    height: 100vh;
    height: 100dvh;
    padding: 40px 24px 20px 24px;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: var(--transition);
    background: var(--primary-white);
    box-sizing: border-box;
    overflow: hidden;
}

/* 결과 페이지만 스크롤 가능하게 */
#result-page {
    display: block;
    padding: 40px 24px 20px 24px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    height: 100vh;
    height: 100dvh;
    box-sizing: border-box;
}

.page.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
}

.page.slide-out-left {
    transform: translateX(-100%);
    opacity: 0;
}

/* 헤더 */
.header {
    text-align: center;
    margin-bottom: 60px;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.tagline {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* 시작 페이지 */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 0;
}

.title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 16px;
    line-height: 1.3;
}

.description {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.5;
}

.mood-preview {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    justify-content: center;
}

.mood-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gray-700);
    animation: float 3s ease-in-out infinite;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.mood-icon:nth-child(1) { animation-delay: 0s; }
.mood-icon:nth-child(2) { animation-delay: 0.5s; }
.mood-icon:nth-child(3) { animation-delay: 1s; }
.mood-icon:nth-child(4) { animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.start-btn {
    background: var(--primary-black);
    color: var(--primary-white);
    border: none;
    padding: 18px 32px;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 16px;
}

.start-btn:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.info {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* 질문 페이지 */
.progress-bar {
    width: 100%;
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    margin-bottom: 16px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--primary-black);
    transition: width 0.5s ease;
    border-radius: 2px;
}

.question-counter {
    font-size: 0.9rem;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 40px;
}

.question-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    min-height: 0;
}

.question-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-black);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.4;
}

.answers {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
}

.answer-option {
    background: var(--primary-white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.answer-option:hover {
    border-color: var(--gray-400);
    background: var(--gray-100);
}

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

.answer-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: var(--transition);
}

.answer-option.selected::before {
    left: 100%;
}

/* 네비게이션 */
.navigation {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0 0 0;
    flex-shrink: 0;
    background: var(--primary-white);
    border-top: 1px solid var(--gray-200);
    margin-top: auto;
}

.nav-btn {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid var(--gray-300);
    background: var(--primary-white);
    color: var(--gray-700);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.nav-btn:hover:not(:disabled) {
    border-color: var(--primary-black);
    background: var(--primary-black);
    color: var(--primary-white);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

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

.next-btn:hover:not(:disabled) {
    background: var(--gray-800);
}

/* 결과 페이지 */
.result-content {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

/* 결과 페이지 내 요소들 */
#result-page .result-mood {
    margin-bottom: 40px;
    text-align: center;
}

#result-page .result-description {
    margin-bottom: 40px;
    text-align: center;
}

#result-page .actions {
    margin-bottom: 40px;
    text-align: center;
}

#result-page .brand-info {
    margin-bottom: 20px;
    text-align: center;
}

.result-mood {
    margin-bottom: 40px;
}

.mood-character {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--primary-black);
    margin: 0 auto 24px;
    border: 3px solid var(--gray-200);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; }
}

.mood-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 8px;
}

.mood-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 40px;
}

.result-description h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 20px;
}

.traits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
    justify-items: center;
}

.trait {
    background: var(--gray-100);
    border-radius: var(--border-radius-sm);
    padding: 12px;
    font-size: 0.9rem;
    color: var(--gray-700);
    font-weight: 500;
}

.detailed-info {
    background: var(--gray-100);
    border-radius: var(--border-radius);
    padding: 24px;
    margin-bottom: 40px;
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.detailed-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-black);
    margin: 20px 0 12px 0;
    padding-top: 16px;
    border-top: 1px solid var(--gray-300);
}

.detailed-info h4:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.detailed-info p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.5;
    margin-bottom: 8px;
}

.detailed-info p:last-child {
    margin-bottom: 0;
}

.characteristics p {
    background: var(--primary-white);
    padding: 12px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 8px;
    border-left: 3px solid var(--primary-black);
}

.stress-tips p {
    background: var(--primary-white);
    padding: 10px 12px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}

.bottom-message {
    margin-top: 24px;
    padding: 20px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--primary-white) 100%);
    border-radius: var(--border-radius);
    border: 2px solid var(--gray-200);
    text-align: center;
}

.bottom-message h4 {
    margin: 16px 0 8px 0 !important;
    border: none !important;
    padding: 0 !important;
    color: var(--primary-black);
}

.bottom-message h4:first-child {
    margin-top: 0 !important;
}

.bottom-message p {
    margin-bottom: 6px;
    font-size: 0.9rem;
}

/* 메인 CTA 섹션 스타일 */
.main-cta-section {
    margin-top: 24px;
    padding: 24px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--primary-white) 100%);
    border-radius: var(--border-radius);
    border: 2px solid var(--gray-200);
    text-align: center;
}

.result-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--gray-800) 100%);
    color: var(--primary-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.main-cta-section h4 {
    margin: 0 0 8px 0 !important;
    border: none !important;
    padding: 0 !important;
    color: var(--primary-black);
    font-size: 1.2rem;
}

.benefit-text {
    color: var(--success-color);
    font-weight: 600;
    margin: 0 0 24px 0 !important;
    font-size: 0.9rem;
}

.app-notice {
    color: var(--gray-500);
    font-size: 0.8rem;
    margin: 16px 0 0 0 !important;
    font-style: italic;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-btn {
    background: var(--primary-white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    width: 100%;
    box-shadow: var(--shadow);
}

.cta-btn:hover {
    border-color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-btn.community:hover {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}

.cta-btn.lookbook:hover {
    background: linear-gradient(135deg, #fff8f0 0%, #ffe6e6 100%);
}

.cta-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-text h5 {
    margin: 0 0 4px 0;
    color: var(--primary-black);
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-text p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* 커뮤니티 모달 스타일 */
.community-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--primary-white);
    border-radius: var(--border-radius);
    max-width: 480px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--primary-black);
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-500);
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: var(--primary-black);
}

.modal-body {
    padding: 24px;
}

.modal-body p {
    margin-bottom: 16px;
    color: var(--gray-700);
}

.coming-features {
    margin-bottom: 24px;
    padding: 16px;
    background: var(--gray-100);
    border-radius: var(--border-radius-sm);
}

.coming-features h4 {
    margin: 0 0 12px 0;
    color: var(--primary-black);
}

.coming-features ul {
    margin: 0;
    padding-left: 20px;
}

.coming-features li {
    margin: 8px 0;
    color: var(--gray-700);
}

.notify-signup {
    text-align: center;
}

.notify-signup h4 {
    margin: 0 0 16px 0;
    color: var(--primary-black);
}

.notify-signup input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    margin-bottom: 12px;
    transition: var(--transition);
}

.notify-signup input:focus {
    outline: none;
    border-color: var(--primary-black);
}

.notify-signup button {
    background: var(--primary-black);
    color: var(--primary-white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.notify-signup button:hover {
    background: var(--gray-800);
}

.privacy-note {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin: 8px 0 0 0 !important;
}

/* 공유 버튼 스타일 */
.share-options {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.share-btn {
    flex: 1;
    padding: 14px 20px;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    box-shadow: var(--shadow);
}

.share-btn.instagram {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: var(--primary-white);
}

.share-btn.general {
    background: var(--primary-white);
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.share-btn.general:hover {
    border-color: var(--primary-black);
    color: var(--primary-black);
}

/* 인스타그램 모달 스타일 */
.instagram-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.instagram-modal .modal-content {
    max-width: 520px;
}

.instagram-guide {
    margin-bottom: 24px;
}

.step {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px;
    background: var(--gray-100);
    border-radius: var(--border-radius-sm);
}

.step-number {
    width: 24px;
    height: 24px;
    background: var(--primary-black);
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.step p {
    margin: 0;
    color: var(--gray-700);
}

.instagram-text-preview {
    margin-bottom: 24px;
}

.instagram-text-preview h4 {
    margin: 0 0 12px 0;
    color: var(--primary-black);
}

.text-box {
    position: relative;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.text-box textarea {
    width: 100%;
    height: 120px;
    padding: 16px;
    border: none;
    resize: none;
    font-family: inherit;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--gray-700);
    background: var(--gray-50);
}

.text-box textarea:focus {
    outline: none;
}

.copy-text-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: var(--primary-black);
    color: var(--primary-white);
    border: none;
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.copy-text-btn:hover {
    background: var(--gray-800);
}

.instagram-actions {
    display: flex;
    gap: 12px;
}

.instagram-app-btn,
.screenshot-guide-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.instagram-app-btn {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: var(--primary-white);
}

.screenshot-guide-btn {
    background: var(--gray-200);
    color: var(--gray-700);
}

.instagram-app-btn:hover,
.screenshot-guide-btn:hover {
    transform: translateY(-1px);
}

/* 모바일 최적화 */
@media (max-width: 480px) {
    .share-options {
        flex-direction: column;
        gap: 8px;
    }
    
    .instagram-actions {
        flex-direction: column;
    }
    
    .text-box textarea {
        height: 100px;
        font-size: 0.8rem;
    }
    
    .cta-btn {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }
    
    .cta-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .cta-text h5 {
        font-size: 1rem;
    }
    
    /* 모바일에서 네비게이션 고정 */
    .navigation {
        padding: 15px 0 0 0;
        margin-top: auto;
        flex-shrink: 0;
        background: var(--primary-white);
        border-top: 1px solid var(--gray-200);
    }
    
    .answers {
        padding-bottom: 10px;
    }
    
    .question-text {
        margin-bottom: 20px;
        font-size: 1.2rem;
    }
}

/* 액션 버튼들 */
.actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.share-btn, .retry-btn {
    padding: 16px 24px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
}

.share-btn {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: var(--primary-white);
    box-shadow: var(--shadow);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.retry-btn {
    background: var(--primary-white);
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
}

.retry-btn:hover {
    border-color: var(--primary-black);
    color: var(--primary-black);
}

.brand-info {
    padding: 20px;
    background: var(--gray-100);
    border-radius: var(--border-radius);
}

.brand-text {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* 로딩 페이지 */
.loading-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.loading-animation {
    margin-bottom: 40px;
}

.loading-dots {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gray-300);
    animation: loading 1.5s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--gray-600);
}

.dot:nth-child(1) { animation-delay: 0s; }
.dot:nth-child(2) { animation-delay: 0.3s; }
.dot:nth-child(3) { animation-delay: 0.6s; }
.dot:nth-child(4) { animation-delay: 0.9s; }

@keyframes loading {
    0%, 100% { 
        transform: scale(1); 
        background: var(--gray-300);
    }
    50% { 
        transform: scale(1.2); 
        background: var(--primary-black);
        color: var(--primary-white);
    }
}

.loading-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 12px;
}

.loading-content p {
    color: var(--gray-600);
}

/* 반응형 디자인 */
@media (max-width: 480px) {
    .container {
        max-width: 100%;
        box-shadow: none;
    }
    
    .page {
        padding: 20px 20px 15px 20px;
        height: 100vh;
        height: 100dvh;
        overflow: hidden;
    }
    
    #result-page {
        padding: 20px 20px 15px 20px;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        height: 100vh;
        height: 100dvh;
    }
    
    .title {
        font-size: 1.7rem;
    }
    
    .question-text {
        font-size: 1.2rem;
    }
    
    .mood-preview {
        gap: 16px;
    }
    
    .mood-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .traits {
        grid-template-columns: 1fr;
    }
    
    .actions {
        gap: 16px;
    }
    
    .result-content {
        padding-bottom: 80px;
    }
}

@media (max-width: 360px) {
    .page {
        padding: 16px 16px 12px 16px;
        height: 100vh;
        height: 100dvh;
        overflow: hidden;
    }
    
    #result-page {
        overflow-y: auto;
        overflow-x: hidden;
        padding: 16px 16px 12px 16px;
        height: 100vh;
        height: 100dvh;
    }
    
    .question-text {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
    
    .navigation {
        padding: 12px 0 0 0;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .title {
        font-size: 1.5rem;
    }
    
    .mood-character {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }
}

/* 다크모드 지원 */
@media (prefers-color-scheme: dark) {
    .container {
        background: var(--gray-900);
        color: var(--gray-200);
    }
    
    .page {
        background: var(--gray-900);
    }
    
    .mood-icon {
        background: var(--gray-800);
        border-color: var(--gray-700);
        color: var(--gray-300);
    }
}