/* ===============================
   HEADER
================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.95),
    rgba(10,10,10,0.7)
  );
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ===============================
   NAV CONTAINER
================================ */
.main-nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 24px;
}

/* ===============================
   MENU
================================ */
.main-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
}

/* ===============================
   MENU ITEMS
================================ */
.main-menu li {
  margin: 0;
}

/* ===============================
   BUTTON STYLE LINKS
================================ */
.main-menu a {
  display: inline-block;
  padding: 12px 22px;
  font-family: "Orbitron", "Rajdhani", Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e5e5e5;
  text-decoration: none;

  background: linear-gradient(
    145deg,
    #1b1b1b,
    #0d0d0d
  );

  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;

  box-shadow:
    0 0 0 rgba(255,0,0,0),
    inset 0 0 0 rgba(255,255,255,0);

  transition: all 0.25s ease;
}

/* ===============================
   HOVER EFFECT (GAMING GLOW)
================================ */
.main-menu a:hover {
  color: #fff;
  border-color: #ff2a2a;

  box-shadow:
    0 0 12px rgba(255,42,42,0.6),
    inset 0 0 12px rgba(255,42,42,0.2);

  transform: translateY(-2px);
}

/* ===============================
   ACTIVE MENU ITEM
================================ */
.main-menu .current-menu-item a {
  color: #fff;
  border-color: #ff2a2a;

  box-shadow:
    0 0 16px rgba(255,42,42,0.8),
    inset 0 0 16px rgba(255,42,42,0.3);
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {
  .main-menu {
    flex-wrap: wrap;
    gap: 10px;
  }

  .main-menu a {
    padding: 10px 16px;
    font-size: 13px;
  }
}
