:root {
    --primary-green: #00c278; /* 앱의 메인 색상 */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    /* 전체 화면을 초록색으로 채우고 중앙 정렬 설정 */
    font-family: 'Noto Sans KR', sans-serif;
    background-color: var(--primary-green);
    color: white;
    
    display: flex;
    justify-content: center; /* 수평 중앙 */
    align-items: center; /* 수직 중앙 */
    min-height: 100vh; /* 뷰포트 높이만큼 채우기 */
    text-align: center;
}

/* 중앙 컨텐츠 영역 */
.splash-content {
    padding: 20px;
}

/* 로고 아이콘 */
.logo-icon {
    font-size: 50px;
    color: white;
    margin-bottom: 15px;
    /* 디자인의 뇌+십자가 아이콘과 가장 유사한 형태 */
}

/* 메인 타이틀 */
.main-title {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 25px;
    line-height: 1.2;
    text-transform: uppercase;
}

/* 슬로건/태그라인 */
.tagline {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    padding: 0 20px;
    max-width: 300px; /* 텍스트가 너무 길어지지 않도록 제한 */
    margin: 0 auto;
}