body {
  margin-top: 40px !important; 
}

header, .computer_nav {
  top: 40px !important;
}

#custom-marquee-bar {
  background-color: #e67e22;
  color: #ffffff;
  min-height: 40px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10001;
  display: none;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#marquee-wrapper {
  position: relative;
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  opacity: 0;
  z-index: 1;
  pointer-events: none; /* 非啟動狀態不可點擊 */
  transition: opacity 0.8s ease-in-out;
  text-decoration: none;
  font-size: 0.85rem;
  line-height: 1.4;
  letter-spacing: 1px;
  word-break: break-all;
  cursor: pointer;
}

.marquee-item.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.marquee-item, 
.marquee-item:link, 
.marquee-item:visited, 
.marquee-item:hover, 
.marquee-item:active {
  color: #ffffff !important;
  text-decoration: none !important;
  outline: none;
}

.marquee-item strong {
  color: #ffdd55 !important;
  font-weight: 600;
  padding: 0 2px;
}

.marquee-item:hover {
  text-decoration: none !important;
}

.marquee-item:hover strong {
  color: #f1c40f !important;
  text-decoration: underline !important;
}

@media (max-width: 768px) {
  #custom-marquee-bar, 
  #marquee-wrapper {
    min-height: 40px;
  }
  
  .marquee-item {
    font-size: 0.8rem;
    line-height: 1.2;
  }
}