* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    height: 100%;
    background: #f0f4ff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* 전체 페이지 중앙 정렬 */
.dl-page {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

/* 카드 */
.dl-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
    padding: 48px 28px 40px;
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* 로고 */
.dl-logo {
    width: 96px;
    height: 96px;
    border-radius: 22px;
    object-fit: contain;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.18);
    margin-bottom: 20px;
}

/* 앱 이름 */
.dl-title {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

/* 설명 */
.dl-desc {
    font-size: 13px;
    color: #64748b;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* 버전 뱃지 */
.dl-version-wrap {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    padding: 4px 14px;
    margin-bottom: 28px;
}

.dl-version {
    font-size: 12px;
    font-weight: 600;
    color: #2563eb;
}

/* 다운로드 버튼 */
.dl-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 52px;
    background: #2563eb;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    letter-spacing: -0.2px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    transition: background 0.15s, transform 0.1s;
    margin-bottom: 16px;
}

.dl-btn:active {
    background: #1d4ed8;
    transform: scale(0.98);
}

/* 안내 문구 */
.dl-hint {
    font-size: 12px;
    color: #94a3b8;
    text-align: center;
}
