.menu-item.sec-invest:hover {
  background: rgba(255, 79, 79, 0.10);   /* #FF4F4F */
}

.menu-item.sec-landscape:hover {
  background: rgba(255, 160, 0, 0.12);   /* #FFA000 */
}

.menu-item.sec-deeper:hover {
  background: rgba(252, 214, 0, 0.18);   /* #FCD600 */
}

.menu-item.sec-product:hover {
  background: rgba(0, 173, 181, 0.12);   /* #00ADB5 */
}

.menu-item.sec-branding:hover {
  background: rgba(48, 126, 241, 0.12);  /* #307EF1 */
}

.menu-item.sec-community:hover {
  background: rgba(201, 35, 221, 0.12);  /* #C923DD */
}

.menu-wrap {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 9999;
}


.menu-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.35);
  backdrop-filter: saturate(180%) blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  opacity: .4;
  transition: opacity .25s ease;
}

.menu-wrap:hover .menu-btn,
.menu-wrap.menu-open .menu-btn,
.menu-wrap:focus-within .menu-btn {
  opacity: 0.5 !important;
}

.menu-btn:hover {
  background: rgba(255,255,255,.98);
}

.menu-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,0,0,.08);
}

.burger {
  width: 14px;
  height: 12px;
  position: relative;
  display: block;
  flex: 0 0 14px;

}


.burger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: rgba(0,0,0,.75);
  transition: transform .18s ease, top .18s ease, opacity .18s ease;
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 5px; }
.burger span:nth-child(3) { top: 10px; }

.menu-open .burger span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.menu-open .burger span:nth-child(2) {
  opacity: 0;
}

.menu-open .burger span:nth-child(3) {
  top: 5px;
  transform: rotate(-45deg);
}

.menu-panel {
  position: absolute;
  top: 46px;
  right: 0;
  min-width: 260px;
  max-width: 320px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(180%) blur(12px);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  padding: 6px;
  display: none;
  font-size: 13.5px;
  line-height: 1.2;
}

.menu-open .menu-panel {
  display: block;
}

.menu-panel,
.menu-panel * {
  box-sizing: border-box;
}

.menu-panel * {
  line-height: 1.2 !important;
}

.menu-title {
  font-size: 11px;
  letter-spacing: .02em;
  color: rgba(0,0,0,.55);
  padding: 6px 10px 4px;
  margin-top: 2px;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(0,0,0,.88);
  font-size: 13.5px;
}

.menu-item:hover {
  background: rgba(0,0,0,.05);
}

.menu-item small {
  color: rgba(0,0,0,.55);
  font-size: 11px;
  line-height: 1.1 !important;
}

.menu-sep {
  height: 1px;
  background: rgba(0,0,0,.08);
  margin: 4px 8px;
}

/* EXTRA COMPACT VERSION FOR MOBILE */

@media (max-width: 768px) {

  .menu-panel{
    min-width: 240px;
    padding: 4px;
  }

  .menu-title{
    font-size: 10.5px;
    padding: 4px 8px 2px;
    margin-top: 1px;
    letter-spacing: .015em;
  }

  .menu-item{
    font-size: 14.5px;
    padding: 6px 8px;
    border-radius: 8px;
    gap: 6px;
  }

  .menu-item small{
    font-size: 10px;
  }

  .menu-sep{
    margin: 3px 6px;
  }
	
  .menu-wrap {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    top: 12px;
    transform: translateY(0.5px);
  }

 .menu-btn {
    width: 34px;  !important;
    height: 34px;  !important;
    border-radius: 9px;
  }


}