/* ---------------------------------------------------
 RESET + DEFAULT BROWSER FIXES
--------------------------------------------------- */

@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

body {
  height: 100%;
  font-family: "Inter", sans-serif;
  background-color: #000;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

/* Buttons */
button {
  border: none;
  cursor: pointer;
}

/* Accessibility: keyboard focus style */
:focus-visible {
  outline: 2px solid #00D1FF !important;
}

/* Image handling */
img {
  max-width: 100%;
  display: block;
  height: auto;
}
