body {
  font-family: 'Inter', sans-serif;
  background-color: #000;
}
.shadow-brand {
  box-shadow: -2px 2px 0 #000 !important;
}
.active\:shadow-none:active {
  box-shadow: 0 0 0 var(--black);
}
.active\:shadow-none:active.shadow-brand {
  box-shadow: 0px 0px 0 #000 !important;
}
.text-primary {
  --tw-text-opacity: 1;
  color: rgb(34 255 1 / var(--tw-text-opacity, 1));
}
/* Бургер кнопка */
.burger-button {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}
.burger-button:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}
.burger-button:active {
  transform: translateX(-0.5px) translateY(0.5px);
  box-shadow: none;
  filter: brightness(0.95);
}
/* Анимация для бургер меню */
#menu-overlay {
  backdrop-filter: blur(4px);
}
#menu-content {
  box-shadow: -10px 0 25px rgba(0, 0, 0, 0.1);
}
/* Стили для мобильных устройств */
@media (max-width: 768px) {
  #menu-content {
    width: 100vw;
  }
}
.hover\:text-link-active:hover {
  --tw-text-opacity: 1;
  color: rgb(27 204 0 / var(--tw-text-opacity, 1));
}
/* Стили для кнопок */
.bg-secondary {
  background-color: #ffffff;
}
.bg-primary {
  background-color: #f3f4f6;
}
.enabled\:hover\:bg-primary:hover:enabled {
  background-color: #f3f4f6;
}
