@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@700&display=swap');

.mf_button{
  margin-top: 1rem;
  position: relative;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, #1a1a1a, #2a0a0a);
  color: #d4af37; /* 暗金色 */
  font-family: 'Noto Serif SC', serif;
  font-size: 1.2rem;
  font-weight: bold;
  border: 1px solid #5a3a1a; /* 深棕边框 */
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3), inset 0 0 0.8rem rgba(212, 175, 55, 0.1);
}

/* 静态符咒边框（无动画） */
.mf_button::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 1px solid #d4af37;
  border-radius: 4px;
  opacity: 0.3;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="50" cy="50" r="45" fill="none" stroke="%23d4af37" stroke-width="1" stroke-dasharray="3,3"/></svg>')
    center/120px no-repeat;
  pointer-events: none;
}

/* 悬停时轻微加深颜色 */
.mf_button:hover {
  background: linear-gradient(135deg, #2a1a1a, #3a1a1a);
  text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.button-text {
  position: relative;
  z-index: 1;
}