/* =========================================================
   PrizeBondPak — Shared Site Navigation
   Used on every page. Edit here once to update the menu
   style everywhere instead of editing each page separately.
   ========================================================= */

.pbp-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 34px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 7px;
  cursor: pointer;
  flex-shrink: 0;
}
.pbp-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.2s;
}
.pbp-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pbp-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.pbp-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.pbp-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 16px;
}
.pbp-menu a {
  color: #94A3B8;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  padding: 4px 2px;
}
.pbp-menu a:hover,
.pbp-menu a.active {
  color: #10B981;
}

@media (max-width: 900px) {
  .pbp-toggle { display: flex !important; }
  .pbp-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #0B1220;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 6px 20px 14px;
    gap: 0;
    z-index: 1000;
  }
  .pbp-menu.pbp-open { display: flex !important; }
  .pbp-menu a {
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 15px;
  }
  [dir="rtl"] .pbp-menu { text-align: right; }
}
