@import url('https://cdn.jsdelivr.net/npm/galmuri/dist/galmuri.css');

:root {
    --primary-color: #000000;
    --background-color: #ffffff;
    --text-color: #0f172a;
    --text-muted: #64748b;
}

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

html, body {
    height: 100%;
    font-family: Galmuri9, sans-serif;
    background-color: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-wrapper {
    width: 100%;
    max-width: 450px;
    height: 100%;
    max-height: 900px;
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

@media (max-width: 450px) {
    body {
        background-color: var(--background-color);
    }
    .mobile-wrapper {
        max-height: 100vh;
        box-shadow: none;
    }
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 30px 80px 30px;
}

.app-icon {
    font-size: 64px;
    margin-bottom: 24px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-title {
    font-size: 26px;
    line-height: 1.5;
    margin-bottom: 16px;
    word-break: keep-all;
}

.description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    word-break: keep-all;
}

.bottom-action {
    text-align: center;
    padding: 20px 30px;
    background-color: var(--background-color);
}

.btn-privacy-policy {
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
}
.btn-privacy-policy span a {
    color: var(--text-muted);
}
.btn-privacy-policy span + span::before {
    content: " · ";
    margin: 0 0.25em;
}

.copyright {
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 15px;
}

/*
==========================================================================
   개인정보 처리방침 (Privacy Policy) 전용 스타일
==========================================================================
*/
.policy-wrapper {
    width: 100%;
    max-width: 450px;
    background-color: var(--background-color);
    margin: auto;
}

.header-left {
    margin-bottom: 15px;
}

.btn-back {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: bold;
    transition: var(--transition);
}

.btn-back:hover {
    color: var(--primary-color);
}

.policy-content {
    flex: 1;
    overflow-y: auto;
    padding: 30px 24px 0 24px;
    text-align: left;
}

.policy-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.policy-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.policy-divider {
    border: 0;
    height: 1px;
    background-color: #e2e8f0;
    margin-bottom: 24px;
}

.policy-section {
    margin-bottom: 28px;
}

.policy-section h2 {
    font-size: 16px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.policy-section p,
.policy-section a {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    word-break: keep-all;
}

.policy-footer {
    padding: 50px 0 20px 0;
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    background-color: var(--background-color);
}
