/* MOBILE NAV */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 6px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--purple-bright); }
.mobile-close {
  top: 28px; right: 60px;
  font-size: 28px;
  cursor: none;
  color: var(--gray);
  background: none;
  border: none;
}
