body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0 0 70px 0;
  background-color: #1F0F0F;
  color: #ffffff;
}

a{
     text-decoration: none; 
}

img {
  display: block;
  max-width: 100%;
}

.site-footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 70px;
  background-color: #2e0f1c;
  border-top: 1px solid #785e67;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 100;
  backdrop-filter: blur(1px);
}
.footer-item a{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #ab8990;
  font-size: 12px;
}
.footer-item.active a {
  color: #fff;
}

.footer-item img {
  width: 20px;
  height: 20px;
}

/*漫画顶部导航*/
#section-header {
  background-color: #fedae7;
  background-image: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
.header-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 10px;
}
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 5px;
}
.logo-img {
  width: 129px;
  height: 31px;
  object-fit: contain;
}
.logo-text {
  font-size: 10px;
  color: #3c363b;
  line-height: 1.2;
}
.auth-buttons {
  display: flex;
  gap: 20px;
}
.btn-group {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-direction: column;
}
.icon-btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-text {
  font-size: 12px;
  color: #3c363b;
}




/* Toast 容器样式 */
.toast-container {
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(50, 50, 50, 0.9); /* 深黑灰色 */
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none; /* 防止遮挡点击 */
}

/* 显示时的状态 */
.toast-show {
    opacity: 1;
    transform: translate(-50%, -60%); /* 向上微动效果 */
}