···26262727 const minDim = Math.min(width, height);
2828 const logoSize = minDim * 0.22;
2929- const gap = minDim * 0.04; // Gap between logo and text (like 16px in about screen)
2929+ const gap = minDim * 0.04;
3030 const fontSize = minDim * 0.07;
31313232- // Calculate total height of logo + gap + text to center the group
3332 const totalGroupHeight = logoSize + gap + fontSize;
3433 const groupCenterY = height / 2;
3534 const logoY = groupCenterY - totalGroupHeight / 2;