/* Custom styles dành cho Baycungem Landing Page */
:root {
  color-scheme: dark;
  font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

/* Tăng cường hiệu ứng hover cho các liên kết và card */
button,
a {
  transition: all 0.3s ease;
}

/* Tự động làm mờ menu dropdown khi không hover */
@media (min-width: 768px) {
  header nav div:hover > div {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tùy chỉnh thanh cuộn nhẹ nhàng */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
  background: rgba(245, 158, 11, 0.6);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(245, 158, 11, 0.8);
}

/* Dashboard specific tweaks - reuse main theme */
/* Sidebar responsive behavior */
@media (max-width: 767px) {
  #sidebar {
    display: none;
  }
}

@media (min-width: 768px) {
  #sidebar {
    display: flex;
  }
}

/* Small helper for translucent cards */
.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.04);
}
