/* Extracted verbatim from code.html lines 82-91 */
body { font-family: 'Inter', sans-serif; background-color: #fbf9f8; color: #1b1c1c; }
h1, h2, h3, h4, h5, h6, .font-headline { font-family: 'Manrope', sans-serif; }
.glass-panel {
    background-color: rgba(251, 249, 248, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.gradient-hero {
    background: linear-gradient(135deg, #00346f 0%, #004a99 100%);
}

/* Hide scrollbars site-wide; scrolling still works (mouse wheel, trackpad, keyboard, touch). */
html {
    scrollbar-width: none;        /* Firefox */
    -ms-overflow-style: none;     /* IE / old Edge */
}
*::-webkit-scrollbar {            /* WebKit / Blink (Chrome, Safari, new Edge) */
    width: 0;
    height: 0;
    display: none;
}
* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
