:root {
  --lime: #c8f000;
  --lime-dark: #b0d400;
  --dark: #0e0e0e;
  --card-bg: #ececec;
  --text-dark: #1a1a1a;
  --gray: #8a8a8a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  background: #000;
  color: #fff;
  min-height: 100vh;
}

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

.page-content.is-blurred {
  filter: blur(5px);
  pointer-events: none;
  user-select: none;
}
