/* 기본 body 및 게임 컨테이너 스타일 */
body { 
    font-family: 'Inter', sans-serif; /* Inter 폰트 사용 */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    background-color: #111827; /* TailwindCSS bg-gray-900 */
    overflow: hidden; /* 전체 페이지 스크롤 방지 */
}

.game-container {
    width: 100%;
    height: 100%;
    max-width: calc(100vh * (9 / 16)); /* 9:16 비율 유지, 화면 높이 기준 */
    max-height: 100vh; /* 화면 높이를 넘지 않도록 */
    aspect-ratio: 9 / 16; /* 가로 세로 비율 */
    background-color: #1f2937; /* TailwindCSS bg-gray-800 */
    color: white;
    overflow-y: auto; /* 내부 컨텐츠가 넘칠 경우 스크롤 */
    display: flex;
    flex-direction: column;
    border-radius: 8px; /* 모서리 둥글게 */
    box-shadow: 0 0 20px rgba(0,0,0,0.5); /* 그림자 효과 */
    position: relative; /* 화면 효과의 기준점 */
}

/* 화면 흔들림 효과 */
.screen-shake {
    animation: shake 0.3s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
}
@keyframes shake {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-3px, 0, 0); }
    40%, 60% { transform: translate3d(3px, 0, 0); }
}

/* 화면 번쩍임 효과 */
.screen-flash-red::before, 
.screen-flash-blue::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    animation: flash 0.3s ease-out;
    pointer-events: none; /* 효과가 클릭을 방해하지 않도록 */
    z-index: 100; /* 다른 요소 위에 표시 */
}
.screen-flash-red::before { background-color: rgba(255, 0, 0, 0.3); }
.screen-flash-blue::before { background-color: rgba(0, 0, 255, 0.3); }

@keyframes flash {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* 작은 화면 (높이 700px 이하) 대응 스타일 */
@media (max-height: 700px) {
    .game-container {
        /* 작은 화면에서는 패딩을 약간 줄일 수 있습니다. */
        /* padding: 0.5rem; */
    }
    /* TailwindCSS 클래스로 대부분 처리하므로, 필요한 경우 여기에 추가 */
    .text-4xl { font-size: 1.8rem; } 
    .text-3xl { font-size: 1.6rem; } 
    .text-2xl { font-size: 1.15rem; } 
    .text-xl { font-size: 0.9rem; } 
    .text-lg { font-size: 0.85rem; } 
    .text-sm { font-size: 0.7rem; } 
    .text-xs { font-size: 0.6rem; } 
    .p-6 { padding: 0.8rem; } 
    .p-4 { padding: 0.6rem; } 
    .p-3 { padding: 0.4rem; } 
    .p-2 { padding: 0.25rem; } 
    .p-1 { padding: 0.2rem; }
    .mb-8 { margin-bottom: 1.2rem; } 
    .mb-6 { margin-bottom: 0.8rem; } 
    .mb-4 { margin-bottom: 0.6rem; } 
    .mb-3 { margin-bottom: 0.4rem; } 
    .mb-2 { margin-bottom: 0.3rem; }
    .mb-1 { margin-bottom: 0.2rem; }
    .gap-1 { gap: 0.2rem; }
    .gap-2 { gap: 0.25rem; } 
    .gap-4 { gap: 0.6rem; } 
    .min-h-\[100px\] { min-height: 60px; } 
    .min-h-\[80px\] { min-height: 50px; } 
    .min-h-\[60px\] { min-height: 40px; } 
    .min-h-\[40px\] { min-height: 25px; } 
    .min-h-\[30px\] { min-height: 18px; } 
    .min-h-\[20px\] { min-height: 15px; }
    .w-12 { width: 2.5rem; height: 2.5rem; }
    .w-16 { width: 2.8rem; height: 2.8rem;} 
    .h-4 { height: 0.8rem; } 
    .max-h-\[120px\] { max-height: 100px; } 
    .selected-skill-slot { min-height: 45px; } 
    .max-h-\[220px\] { max-height: 180px; } 
    .battle-log-area { max-height: 160px; }
}
@media (min-height: 701px) {
    .battle-log-area { max-height: 200px; }
}


/* 스킬 카드 스타일 */
.skill-card { 
    transition: all 0.3s ease; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
}
.skill-card:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 6px 10px -3px rgba(0,0,0,0.1); 
}

/* 플레이어 정보 영역 */
.player-area { 
    min-height: 130px; 
} 

/* 선택된 스킬 슬롯 */
.selected-skill-slot { 
    border: 1px dashed #9CA3AF; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    min-height: 50px; 
    overflow-wrap: break-word;
    word-break: keep-all; 
} 

/* 드래그 중인 아이템 */
.dragging { 
    opacity: 0.5; 
}

/* 전투 로그 항목 애니메이션 */
.log-entry { 
    animation: fadeIn 0.5s ease; 
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 비활성화된 버튼 */
.disabled-button { 
    opacity: 0.5; 
    cursor: not-allowed; 
}

/* HP 바 내부 */
.hp-bar-inner { 
    transition: width 0.5s ease-in-out; 
}

/* 직업 카드 선택 시 */
.job-card.selected { 
    border-color: #2563EB; /* Tailwind blue-600 */
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.8); /* 강조 효과 */
} 

/* 스킬 설명 텍스트 */
.skill-description {
    font-size: 0.6rem; 
    line-height: 1.3; 
    overflow-wrap: break-word; /* 긴 단어 자동 줄바꿈 */
    word-break: keep-all; /* 단어 단위 줄바꿈 (한글 고려) */
    color: #cbd5e1; /* Tailwind gray-300 */
}
@media (max-height: 700px) {
    .skill-description { font-size: 0.55rem; }
}

/* 전투 로그 영역 스크롤 및 크기 */
.battle-log-area {
    max-height: 250px; /* 전투 로그창 최대 높이 증가 */
}
@media (min-height: 701px) {
    .battle-log-area { max-height: 320px; } /* 더 큰 화면에서 더 크게 */
}


/* 토글 스위치 스타일 */
.toggle-checkbox:checked {
    right: 0;
    border-color: #48bb78; /* Tailwind green-500 */
    transform: translateX(100%); /* Tailwind translate-x-full */
}
.toggle-checkbox:checked + .toggle-label {
    background-color: #48bb78; /* Tailwind green-500 */
}
/* 스위치 트랙 스타일 */
.toggle-label {
    transition: background-color 0.2s ease-in-out;
}
/* 스위치 핸들 스타일 */
.toggle-checkbox {
    transition: transform 0.2s ease-in-out;
}

