@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Optional: Customize font weights for different elements */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600; /* Bold headers */
}

p, a, span, li, .btnnew, .text-base, .text-sm {
  font-weight: 400; /* Regular weight for body text */
}

.btnnew, .font-semibold {
  font-weight: 500; /* Slightly bolder for buttons and emphasized text */
}

.sidebar-mobile {
  transition: transform 0.3s ease-in-out;
  transform: translateX(-100%);
}

.sidebar-mobile.active {
  transform: translateX(0);
}

.dropdown-menu {
  display: none;
  background-color: #2d3748;
  position: absolute;
  bottom: 4rem;
  left: 1rem;
  width: 80%;
  z-index: 100;
  border-radius: 0.5rem;
  overflow: hidden;
}

.dropdown-menu.active {
  display: block;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  to {
      opacity: 1;
  }
}

/* Custom CSS for text hover effects */
.server-card .hover-text:hover {
  color: #3b82f6; /* Tailwind's 'blue-500' color */
  text-shadow: 0px 0px 6px rgba(59, 130, 246, 0.7); /* Blue glow */
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.btnnew {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: none;
  color: #0f1923;
  cursor: pointer;
  position: relative;
  padding: 8px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  transition: all .15s ease;
}

.btnnew::before,
.btnnew::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  height: calc(50% - 5px);
  border: 1px solid #7D8082;
  transition: all .15s ease;
}

.btnnew::before {
  top: 0;
  border-bottom-width: 0;
}

.btnnew::after {
  bottom: 0;
  border-top-width: 0;
}

.btnnew:active,
.btnnew:focus {
  outline: none;
}

.btnnew:active::before,
.btnnew:active::after {
  right: 3px;
  left: 3px;
}

.btnnew:active::before {
  top: 3px;
}

.btnnew:active::after {
  bottom: 3px;
}

.btnnew_lg {
  position: relative;
  display: block;
  padding: 10px 20px;
  color: #fff;
  background-color: #0f1923;
  overflow: hidden;
  box-shadow: inset 0px 0px 0px 1px transparent;
}

.btnnew_lg::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 2px;
  background-color: #0f1923;
}

.btnnew_lg::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 4px;
  height: 4px;
  background-color: #0f1923;
  transition: all .2s ease;
}

.btnnew_sl {
  display: block;
  position: absolute;
  top: 0;
  bottom: -1px;
  left: -8px;
  width: 0;
  background-color: #ff4655;
  transform: skew(-15deg);
  transition: all .2s ease;
}

.btnnew_text {
  position: relative;
}

.btnnew:hover {
  color: #0f1923;
}

.btnnew:hover .btnnew_sl {
  width: calc(100% + 15px);
}

.btnnew:hover .btnnew_lg::after {
  background-color: #fff;
}
