/* ==========================================================================
   RESET — Modern CSS Reset
   WAR Group — Command Center Interface
   ========================================================================== */

/* --------------------------------------------------------------------------
   Box Sizing — Inherit border-box everywhere
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   Remove All Default Margins & Padding
   -------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
}

/* --------------------------------------------------------------------------
   HTML — Smooth Scroll & Text Sizing
   -------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  hanging-punctuation: first last;
}

/* --------------------------------------------------------------------------
   Body — Full Viewport, Antialiased Rendering
   -------------------------------------------------------------------------- */
body {
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Block-Level Media Elements
   -------------------------------------------------------------------------- */
img,
svg,
video,
canvas,
picture,
figure {
  display: block;
  max-width: 100%;
}

/* --------------------------------------------------------------------------
   Images — Remove Extra Bottom Space
   -------------------------------------------------------------------------- */
img {
  height: auto;
  font-style: italic;
}

/* --------------------------------------------------------------------------
   Form Elements — Inherit Font
   -------------------------------------------------------------------------- */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* --------------------------------------------------------------------------
   Text — Prevent Overflow
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6,
p,
li,
figcaption,
blockquote {
  overflow-wrap: break-word;
}

/* --------------------------------------------------------------------------
   Lists — Remove Default Styles
   -------------------------------------------------------------------------- */
ul,
ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   Links — Remove Default Decoration
   -------------------------------------------------------------------------- */
a {
  text-decoration: none;
  color: inherit;
}

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

/* --------------------------------------------------------------------------
   Quotes — Remove Default Quotes
   -------------------------------------------------------------------------- */
blockquote,
q {
  quotes: none;
}

/* --------------------------------------------------------------------------
   Fieldset — Remove Border
   -------------------------------------------------------------------------- */
fieldset {
  border: none;
}

/* --------------------------------------------------------------------------
   Button — Strip Default Styling
   -------------------------------------------------------------------------- */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   Focus — Accessible Focus Ring
   -------------------------------------------------------------------------- */
:focus-visible {
  outline: 2px solid rgba(0, 150, 138, 0.6);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Selection — Custom Selection Color
   -------------------------------------------------------------------------- */
::selection {
  background: rgba(0, 150, 138, 0.3);
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   Scrollbar — Thin Dark Scrollbar
   -------------------------------------------------------------------------- */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 43, 42, 0.5);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 150, 138, 0.3);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 150, 138, 0.5);
}

/* Firefox scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 150, 138, 0.3) rgba(0, 43, 42, 0.5);
}
