/* =========================
   MAYNA TOPBAR (Premium)
   - Screenshot style
   - No marquee
   - Clean separators
   - Same color: rgba(164,28,117,0.95)
========================= */

.mayna-topbar{
  background: #2a1f2f;
  color:#fff;
  padding: 10px 0;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.mayna-topbar__inner{
  width: 100%;
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  background: #2a1f2f;
  padding:10px 30px;
}

/* LEFT */
.mayna-topbar__left{
  display:flex;
  align-items:center;
  gap: 10px;
}

.mayna-topbar__left a{
  width: 26px;
  height: 26px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 6px;
  color:#fff;
  text-decoration:none;
  transition: .2s ease;
  font-size: 12px;
}
.mayna-topbar__left a:hover{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.35);
}

/* CENTER */
.mayna-topbar__center{
  flex: 1;
  display:flex;
  align-items:center;
  justify-content:center;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  gap: 14px;
}

.mayna-topbar__sep{
  opacity: .55;
}

/* RIGHT */
.mayna-topbar__right{
  display:flex;
  align-items:center;
  gap: 14px;
  white-space: nowrap;
}

.mayna-topbar__right a{
  color:#fff;
  text-decoration:none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .95;
  transition: .2s ease;
}
.mayna-topbar__right a:hover{
  opacity: .75;
}

/* Right icons */
.mayna-topbar__icon{
  width: 26px;
  height: 26px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 6px;
  font-size: 12px;
}

/* RESPONSIVE */
@media (max-width: 992px){
  .mayna-topbar__center{ display:none; } /* like screenshot behavior */
}

@media (max-width: 768px){
  .mobileHide{ display:none !important; }
}