/* Reset.css Resetting all browsers 2026 11 05  by JWL Scripts*/

/* ============================================================
   Global Reset / Base Styles
   Works across modern browsers (desktop laptop tablets & mobile)
   ============================================================ */

/* Box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin & padding */
html, body,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dt, dd,
ul, ol, li,
figure, figcaption,
fieldset, legend,
button, input, textarea,
table, th, td {
    margin: 0;
    padding: 0;
}

/* Base html/body */
html {
    line-height: 1.15; /* Better default line-height */
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape on iOS */
}

body {
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #000;
    color: #fff;
}

/* Lists */
ul, ol {
    list-style: none;
}

/* Links */
a {
    background-color: transparent;
    text-decoration: none;
    color: inherit;
}

/* Images & media */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

/* Forms */
button, input, select, textarea {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

/* Tables */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: inherit;
    font-size: inherit;
}

/* Quotes */
blockquote, q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: '';
}

/* Horizontal rule */
hr {
    border: 0;
    border-top: 1px solid #444;
    box-sizing: content-box;
    height: 0;
}

/* Remove default focus outlines but keep accessibility hook */
:focus {
    outline: 0;
}

/* Smooth scrolling (optional, can be removed if not desired) */
html {
    scroll-behavior: smooth;
}
