/* ============================================
   DRAGON BALL X - Navigation
   ============================================ */

body {
  background-color: #080c14 !important;
  font-weight: 500;
  color: #e2e8f0;
}

nav {
  background: linear-gradient(180deg, #0d1220 0%, #080c14 100%) !important;
  border-bottom: 1px solid #1e2d45 !important;
  border-top: 1px solid rgba(245,166,35,0.2) !important;
}

nav a {
  font-size: 13px;
  letter-spacing: 1.5px;
}

.hoverable {
  display: inline-block;
  backface-visibility: hidden;
  vertical-align: middle;
  position: relative;
  transition: all 0.3s ease;
  color: #94a3b8 !important;
}

.hoverable::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: #f5a623;
  transition: all 0.3s ease;
}

.hoverable:hover,
.hoverable:active,
.hoverable:focus {
  color: #f5a623 !important;
  transform: translateY(-2px);
}

.hoverable:hover::after,
.hoverable:active::after,
.hoverable:focus::after {
  left: 0;
  right: 0;
}

/* Dropdown */
.dropdown-menu {
  background: #111827 !important;
  border: 1px solid #1e2d45 !important;
  border-top: 2px solid #f5a623 !important;
  border-radius: 0 0 8px 8px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6) !important;
  padding: 6px 0 !important;
  min-width: 180px;
}

.dropdown-menu > li > a {
  color: #94a3b8 !important;
  font-size: 12px !important;
  letter-spacing: 1px !important;
  padding: 10px 18px !important;
  transition: all 0.2s;
  text-transform: uppercase;
  font-weight: 600;
}

.dropdown-menu > li > a:hover {
  background: rgba(245,166,35,0.08) !important;
  color: #f5a623 !important;
  padding-left: 24px !important;
}

.dropdown-menu .divider {
  background: #1e2d45 !important;
  margin: 4px 0 !important;
}

/* Login dropdown */
.dropdown-menu .form-control {
  background: #0a0f1a !important;
  border: 1px solid #1e2d45 !important;
  color: #e2e8f0 !important;
  border-radius: 6px !important;
  height: 38px;
  font-size: 13px;
}

.dropdown-menu .form-control:focus {
  border-color: #f5a623 !important;
  box-shadow: 0 0 0 2px rgba(245,166,35,0.15) !important;
}

/* Navbar brand / logo area */
.navbar-brand {
  color: #f5a623 !important;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 2px;
}

/* Active nav item */
.navbar-nav > .active > a,
.navbar-nav > .active > a:hover,
.navbar-nav > .active > a:focus {
  background: transparent !important;
  color: #f5a623 !important;
}

/* Right nav (login/account) */
.navbar-right .dropdown-toggle {
  color: #f5a623 !important;
  font-weight: 700 !important;
}

/* Bounce animation */
@keyframes bounce-animation {
  16.65% { transform: translateY(6px); }
  33.3%  { transform: translateY(-4px); }
  49.95% { transform: translateY(3px); }
  66.6%  { transform: translateY(-2px); }
  83.25% { transform: translateY(1px); }
  100%   { transform: translateY(0); }
}

.bounce {
  animation-name: bounce-animation;
  animation-duration: 2s;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar-collapse {
    background: #0d1220 !important;
    border-top: 1px solid #1e2d45 !important;
  }
}
