/* Classic GUI Fonts */

/* 1. Headers / Page Titles */
@font-face {
    font-family: 'Classic-Header';
    src: url('../fonts/Web437_ToshibaSat_8x16.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* 1.1 Header 2nd Option */
@font-face {
    font-family: 'Classic-Header-Two';
    src: url('../fonts/Web437_IGS_VGA_8x16.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Classic-EuroPC';
    src: url('../fonts/Web437_EuroPC_CGA.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* 2. Navigation Bar */
@font-face {
    font-family: 'Classic-Nav';
    src: url('../fonts/Web437_EverexME_8x16.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* 3. Body Text */
@font-face {
    font-family: 'Classic-Body';
    src: url('../fonts/Web437_IGS_VGA_8x16.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Global Rendering Rules */
:root {
    --font-size-base: 16px;
}

body, html {
    font-size: 16px;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: none;
    font-smooth: never;
    text-rendering: optimizeSpeed; /* Often helps with pixel fonts */
}

/* Strict Sizing Enforcement */
.font-pixel-base { font-size: 16px; }
.font-pixel-lg { font-size: 32px; }
.font-pixel-xl { font-size: 48px; }
.font-pixel-2xl { font-size: 64px; }

/* Ensure no fractional transforms blur the text */
* {
    transform-style: preserve-3d; /* Sometimes forces integer pixel snapping in some browsers */
}
