/* Shared mobile viewport base rules for standalone pages */
html, body { margin: 0; }
@media (max-width: 768px) {
    html, body {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        overflow-x: hidden;
    }
}
