/* ============================================
   NEXUS — Reset (Win95 Style)
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  cursor: default;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

:focus-visible {
  outline: 1px dotted #E0E0E0;
  outline-offset: -1px;
}

::selection {
  background: var(--win95-blue);
  color: #FFFFFF;
}

/* ── Win95 3D Border Helpers ── */
.win95-raised {
  border: 3px solid;
  border-color: #505050 #000000 #000000 #505050;
}

.win95-sunken {
  border: 3px solid;
  border-color: #000000 #505050 #505050 #000000;
}

.win95-etched {
  border: 3px solid;
  border-color: #404040 #505050 #505050 #404040;
}
