* {
  font-family: Montserrat, sans-serif;
  user-select: none;
}

body {
  margin: 0;
  padding: 0;
  background: #0e0e0e;
  color: white;
  text-align: center;
}

/* top bar */

.staffBar {
  width: 100%;
  height: 60px;
  background: #1f1f1f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  box-sizing: border-box;
}

.logoLeft .homeLink {
  font-weight: 900;
  font-size: 18px;
  color: white;
  text-decoration: none;
}

.logoLeft a {
  text-decoration: none;
}

.userArea {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.userAvatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.userName {
  font-weight: 700;
}

.logoutBtn {
  border: none;
  background: transparent;
  color: #cccccc;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
}

/* home content */

.content {
  margin-top: 120px;
}

.title {
  font-size: 48px;
  font-weight: 900;
}

.subtitle {
  font-size: 18px;
  margin-top: 10px;
  opacity: 0.7;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #1d1d1d;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 700;
  opacity: 0.8;
}

.brandImage {
  height: 45px;
  margin-bottom: 6px;
}

/* custom right click menu */

.contextMenu {
  position: fixed;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px 26px;
  border-radius: 16px;
  color: white;
  font-weight: 700;
  font-size: 18px;
  display: none;
  z-index: 9999;
  animation: fadeIn 0.18s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
