/**
 * Fortress Lite Max - 핵심 디자인 모듈
 * 고도화된 가독성 및 접근성(A11y) 기준 적용
 */

body {
    background-color: #ffffff;
    color: #212529; /* 고대비 텍스트로 가독성 확보 */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0 20px;
}

.container {
    text-align: center;
    max-width: 800px;
    animation: fadeIn 0.8s ease-in-out; /* 부드러운 화면 진입 효과 */
}

h1 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

p {
    margin-bottom: 15px;
}

.footer {
    margin-top: 50px;
    font-size: 0.85em;
    color: #586069; /* WCAG 2.1 대비율 준수 */
    border-top: 1px solid #eee;
    padding-top: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
