
/* v33: Akrobat font family */
@font-face {
  font-family: 'Akrobat';
  src: url('fonts/Akrobat-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Akrobat';
  src: url('fonts/Akrobat-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Akrobat';
  src: url('fonts/Akrobat-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Akrobat', Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #0f1014;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

* {
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

/* hide native scrollbars in dropdowns */
.inline-popup, .dropdown, .select-popup {
  scrollbar-width: none;
}
.inline-popup::-webkit-scrollbar,
.dropdown::-webkit-scrollbar,
.select-popup::-webkit-scrollbar {
  width: 0;
  height: 0;
}
