.work-author-tag { position:absolute; top:0; right:0; z-index:2; }
.work-author-tag span { display:inline-block; padding:2px 8px; background:rgba(255,255,255,0.95); color:#222; font-size:0.7rem; font-weight:600; border-radius:4px; letter-spacing:0.02em; line-height:1.4; }
.work-meta { position:relative; }
.detail-author { display:inline-block; padding:3px 10px; background:rgba(255,255,255,0.95); color:#222; font-size:0.78rem; font-weight:600; border-radius:4px; letter-spacing:0.02em; margin-bottom:6px; }

/* ===== 手机端修复 ===== */
@media (max-width: 720px) {
  /* 加载画面适配手机 */
  .loading-screen {
    padding: 16px;
  }
  .loader-skip {
    top: 18px;
    right: 18px;
    padding: 9px 14px;
    font-size: 0.8rem;
  }
  .loader-logo-wrap {
    width: 150px;
    height: 150px;
  }
  .loader-logo-frame {
    width: 118px;
    height: 118px;
    border-radius: 28px;
  }
  .loader-logo {
    width: 88px;
    height: 88px;
  }
  .loader-progress {
    width: min(220px, 72vw);
  }
}

.creator-upload-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: creatorBtnPulse 3s ease-in-out infinite;
}
.creator-upload-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4);
  animation: none;
}
.creator-upload-btn:active {
  transform: rotate(90deg) scale(0.95);
}
@keyframes creatorBtnPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); }
  50% { box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15); }
}
/* 手机端避免被底部导航遮挡 */
@media (max-width: 720px) {
  .creator-upload-btn {
    bottom: 80px;
    right: 18px;
    width: 50px;
    height: 50px;
  }
  .creator-upload-btn svg {
    width: 24px;
    height: 24px;
  }
}
