
/* ==================== MOBILE MENU OVERLAY ==================== */
.mobile-menu-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90%; max-width: 320px;
  background: #1a1a2e;
  border-radius: 20px;
  padding: 30px 20px;
  border: 1px solid rgba(255,215,0,0.3);
  box-shadow: 0 0 30px rgba(255,215,0,0.2);
}
.mobile-menu-close {
  position: absolute; top: 15px; right: 15px;
  background: none; border: none;
  color: #FFD700; font-size: 2rem; cursor: pointer;
}
.mobile-menu-link {
  display: block; padding: 15px 20px;
  color: #fff; text-decoration: none;
  font-size: 1.1rem; font-weight: 500;
  border-radius: 10px; margin: 5px 0;
  transition: all 0.3s ease;
}
.mobile-menu-link:hover { background: rgba(255,215,0,0.15); color: #FFD700; }
.mobile-menu-cta { background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); color: #000; text-align: center; margin-top: 15px; }
