﻿/* Font imports */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Teko:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background: var(--nhs-dark-bg-primary);
    color: var(--nhs-text-primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--nhs-dark-bg-primary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--nhs-orange-primary), var(--nhs-gold));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--nhs-gold), var(--nhs-orange-primary));
}

::selection {
    background: var(--nhs-orange-primary);
    color: white;
}
