/* ================================================
   HENDOSHI - RESET & NORMALIZATION
   ================================================
   
   Browser resets and normalizations for consistent cross-browser rendering.
   
   Load Order: SECOND (after variables.css)
   ================================================ */

/* Prevent iOS and other browsers from resizing text unexpectedly */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Global Reset - Border-box model for all elements */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Base Body Styles */
body {
    min-height: 100vh;
    overflow-x: hidden;
    background-color: var(--black) !important;
    color: var(--off-white);
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}
