/* member.css - 成员页布局与美化 */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden; /* 防止页面变长出现滚动条 */
}
#member-main, #container {
  height: 100vh;
  min-height: 0;
  overflow: hidden;
}
body {
  margin: 0;
  padding: 0;
  background: #181a1b;
  color: #fff;
  font-family: 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', Arial, sans-serif;
}
#member-container {
  display: flex;
  flex-direction: row;
  height: 100vh;
  width: 100vw;
}
#member-left {
  width: 340px;
  min-width: 260px;
  max-width: 400px;
  position: relative;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  padding: 0;
}
#member-avatar {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100vh;
  display: block;
  margin: 0;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
  background: transparent;
  position: relative;
  z-index: 1;
}
#member-info-mask {
  width: 100%;
  max-width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg,rgba(0,0,0,0.82),rgba(0,0,0,0.1) 80%);
  padding: 32px 16px 16px 16px;
  border-radius: 0 0 32px 32px;
  color: #fff;
  text-align: center;
  margin: 0;
  z-index: 3;
  pointer-events: none;
  box-sizing: border-box;
}
#member-info-mask h1 {
  margin: 0 0 8px 0;
  font-size: 2em;
}
#member-info-mask p {
  margin: 4px 0;
  font-size: 1.1em;
}
#member-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 40px 32px 32px 32px;
  overflow: hidden;
  position: relative;
  height: 100%;
  min-height: 0;
}
#right-bg {
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
#right-bg::before {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: blur(32px) brightness(1.1) saturate(1.2);
  z-index: 1;
  background-image: var(--bg-url), linear-gradient(120deg,rgba(30,32,34,0.85) 60%,rgba(60,80,120,0.25) 100%);
}
#right-bg canvas {
  display: none !important;
}
#member-right > *:not(#right-bg) {
  position: relative;
  z-index: 2;
}
#photo-gallery-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 40px;
  position: relative;
}
#photo-gallery {
  display: flex;
  flex-direction: row;
  gap: 32px;
  width: 780px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.gallery-photo {
  width: 240px;
  height: 340px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
  background: #222;
  flex-shrink: 0;
}
.gallery-nav {
  background: rgba(30,32,34,0.85);
  color: #fff;
  border: none;
  font-size: 2.2em;
  width: 48px;
  height: 64px;
  border-radius: 16px;
  margin: 0 12px;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
}
.gallery-nav:active {
  background: #444;
}
#mv-timeline {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
#mv-list-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 12px;
}
#mv-list {
  display: flex;
  flex-direction: row;
  gap: 36px;
  overflow: hidden;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: center;
  align-items: flex-start;
  width: 600px;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
#mv-list li {
  min-width: 480px;
  max-width: 600px;
  background: rgba(30,32,34,0.92);
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  padding: 28px 20px 18px 20px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#mv-list h3 {
  margin: 0 0 16px 0;
  font-size: 1.25em;
  color: #e0e0e0;
}
#mv-list iframe {
  width: 100%;
  min-height: 270px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  background: #111;
  border: none;
  display: block;
}
