/* 拓竹嶼自訂樣式 */

/* ===== 導覽列「遊玩須知」使用實心愛心 =====
   內建 iconfont 只有空心 love，這裡用 SVG 遮罩做出實心愛心。
   以 currentColor 上色、1em 縮放，與其他 iconfont 圖示同尺寸同色 */
.iconfont.icon-love-solid::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 29.6'%3E%3Cpath d='M23.6,0c-3.4,0-6.3,2.7-7.6,5.6C14.7,2.7,11.8,0,8.4,0C3.8,0,0,3.8,0,8.4c0,9.4,9.5,11.9,16,21.2c6.1-9.3,16-12.1,16-21.2C32,3.8,28.2,0,23.6,0z'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 29.6'%3E%3Cpath d='M23.6,0c-3.4,0-6.3,2.7-7.6,5.6C14.7,2.7,11.8,0,8.4,0C3.8,0,0,3.8,0,8.4c0,9.4,9.5,11.9,16,21.2c6.1-9.3,16-12.1,16-21.2C32,3.8,28.2,0,23.6,0z'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

/* ===== 重要通知列（配合 js/custom.js）===== */
#tokasen-notice {
  position: fixed;
  top: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1029; /* Fluid 導覽列為 1030，通知列壓在其下 */
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: min(92vw, 40rem);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  background: rgba(47, 65, 84, 0.92);
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

#tokasen-notice a {
  color: #ffd54f;
  text-decoration: underline;
}

.tokasen-notice-close {
  background: none;
  border: none;
  padding: 0 0.1rem;
  color: #fff;
  opacity: 0.7;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.tokasen-notice-close:hover {
  opacity: 1;
}

html[data-user-color-scheme='dark'] #tokasen-notice {
  background: rgba(31, 49, 68, 0.95);
}
