* {
  box-sizing: border-box;
  outline: none;
  margin: 0;
  padding: 0;
}

body {
  background-color: #0f1014;
  color: #e5e5e5;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
}

body.modal-open {
  overflow: hidden !important;
  height: 100vh;
  padding-right: 0;
}

a {
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}

ul, li {
  list-style: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hidden {
  display: none !important;
}

.status-msg {
    padding: 20px;
    color: #888;
    font-size: 14px;
    width: 100%;
}

.error-msg {
    padding: 20px;
    color: #ff4d4d;
    font-size: 14px;
    width: 100%;
}