body {
  background: #111;
  color: #e0e0e0;
  font-family: 'Segoe UI', 'Microsoft YaHei', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
}
#bg-anim {
  position: fixed;
  z-index: 0;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 60% 20%, #39ff1440 0%, #111 80%),
              linear-gradient(120deg, #111 60%, #6f00ff22 100%);
  animation: bgmove 8s linear infinite alternate;
}
@keyframes bgmove {
  0% { filter: blur(0px) brightness(1); }
  100% { filter: blur(2px) brightness(1.1); }
}
#matrix-bg {
  position: absolute;
  z-index: 0;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  image-rendering: pixelated;
  display: block;
  background: #111;
}
.container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 12px 48px 12px;
}
.main-header {
  text-align: center;
  margin-bottom: 32px;
}
.logo-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo {
  width: 80px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 16px #39ff14cc);
}
.logo-text {
  font-size: 2.2rem;
  letter-spacing: 0.12em;
  color: #39ff14;
  text-shadow: 0 0 24px #39ff14, 0 0 32px #6f00ff99;
  margin: 0 0 8px 0;
  padding: 0;
}
h1 {
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 0 0 8px 0;
  text-shadow: 0 0 16px #39ff14, 0 0 32px #6f00ff99;
}
.green {
  color: #39ff14;
  text-shadow: 0 0 8px #39ff14, 0 0 16px #39ff14;
}
.white {
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 16px #6f00ff44;
}
.eva-glow {
  color: #6f00ff;
  text-shadow: 0 0 8px #6f00ff, 0 0 16px #39ff14;
  font-weight: bold;
  font-size: 1.1em;
}
.subtitle {
  font-size: 0.92rem;
  color: #39ff14;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-shadow: 0 0 8px #39ff14, 0 0 16px #6f00ff44;
}
.intro-section, .story-section, .pfp-section {
  background: rgba(20, 20, 20, 0.85);
  border-radius: 16px;
  box-shadow: 0 0 32px #39ff1440, 0 0 24px #6f00ff33;
  margin-bottom: 28px;
  padding: 24px 18px;
  border: 1.5px solid #39ff14;
  backdrop-filter: blur(2px);
}
.intro-section h2, .story-section h2, .pfp-section h2 {
  color: #39ff14;
  font-size: 1.5rem;
  margin-bottom: 12px;
  text-shadow: 0 0 8px #39ff14, 0 0 16px #6f00ff44;
}
.pfp-section h2 {
  font-size: 1.08rem;
  color: #39ff14;
  margin-bottom: 12px;
  text-shadow: 0 0 8px #39ff14, 0 0 16px #6f00ff44;
  font-family: 'Zpix', 'Microsoft YaHei', 'Arial', sans-serif !important;
}
.story-bg {
  color: #e0e0e0;
  font-size: 1.08rem;
  line-height: 1.8;
  white-space: pre-line;
  text-shadow: 0 0 4px #39ff1440;
}
.pfp-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.pfp-gallery img {
  width: 100%;
  border-radius: 10px;
  border: 2px solid #39ff14;
  background: #222;
  transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
  box-shadow: 0 0 16px #39ff1440, 0 0 8px #6f00ff44;
  filter: brightness(1) drop-shadow(0 0 8px #39ff14cc);
}
.pfp-gallery img:hover {
  transform: scale(1.12) rotate(-2deg);
  box-shadow: 0 0 32px #39ff14, 0 0 24px #6f00ff;
  filter: brightness(1.2) drop-shadow(0 0 16px #6f00ffcc);
  z-index: 2;
}
.pfp-gif-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}
.carousel-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #39ff14;
  background: #222;
  box-shadow: 0 0 32px #6f00ff99, 0 0 16px #39ff1440;
  opacity: 1;
  transition: opacity 0.5s;
}
.carousel-img.fade {
  opacity: 0;
}
.carousel-btn {
  background: none;
  border: 2px solid #39ff14;
  color: #39ff14;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 8px #39ff14, 0 0 8px #6f00ff44;
}
.carousel-btn:hover {
  background: #39ff14;
  color: #111;
  box-shadow: 0 0 24px #6f00ff, 0 0 16px #39ff14;
}
.pfp-section {
  margin-top: 0;
  margin-bottom: 32px;
  padding-top: 32px;
}
.pfp-search-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
#pfp-search {
  width: 260px;
  padding: 10px 18px;
  font-size: 1.1rem;
  border: 2px solid #39ff14;
  border-radius: 24px;
  background: #181818;
  color: #39ff14;
  outline: none;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 0 16px #39ff14cc;
  transition: border 0.2s, box-shadow 0.2s;
}
#pfp-search:focus {
  border: 2.5px solid #6f00ff;
  box-shadow: 0 0 32px #6f00ffcc, 0 0 16px #39ff14cc;
}
/* 素化风格全局 */
body, h1, h2, h3, h4, h5, h6, .logo-text, .subtitle, .story-bg, .intro-section p, .carousel-btn, #pfp-search, .pfp-info {
  font-family: 'Zpix', 'Microsoft YaHei', 'Arial', sans-serif !important;
  text-rendering: optimizeLegibility;
  font-smooth: never;
  -webkit-font-smoothing: none;
  image-rendering: pixelated;
}
h2, .subtitle {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.subtitle {
  font-size: 0.92rem;
}
.intro-section p, .story-bg {
  font-size: 1.08rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}
#pfp-search {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
}
.carousel-btn {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.pfp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 8px;
  perspective: 600px;
}
.pfp-flip {
  animation: pfp-flip-anim 0.6s cubic-bezier(.4,2,.6,1) forwards;
}
@keyframes pfp-flip-anim {
  0% { transform: rotateY(0deg); opacity: 1; }
  40% { transform: rotateY(90deg); opacity: 0.2; }
  60% { transform: rotateY(90deg); opacity: 0.2; }
  100% { transform: rotateY(0deg); opacity: 1; }
}
.pfp-info {
  font-size: 0.82rem;
  color: #39ff14;
  margin-top: 2px;
  letter-spacing: 0.08em;
  text-shadow: 0 0 8px #39ff14, 0 0 8px #111;
  background: rgba(20,20,20,0.7);
  border-radius: 6px;
  padding: 2px 8px;
  user-select: text;
  text-align: center;
}
#intro-anim {
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  font-family: 'Zpix', 'Microsoft YaHei', 'Arial', sans-serif !important;
}
.intro-content {
  background: rgba(20,20,20,0.95);
  border: 2.5px solid #39ff14;
  border-radius: 18px;
  box-shadow: 0 0 32px #39ff14cc, 0 0 24px #6f00ff33;
  padding: 38px 32px 32px 32px;
  min-width: 340px;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.intro-typing {
  font-size: 1.18rem;
  color: #fff;
  /* min-height: 120px; */
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-family: 'Zpix', 'Microsoft YaHei', 'Arial', sans-serif !important;
  margin-bottom: 10px;
  white-space: pre-line;
  text-shadow: 0 0 8px #39ff14, 0 0 8px #6f00ff44;
}
.intro-content h2 {
  color: #39ff14;
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-family: 'Zpix', 'Microsoft YaHei', 'Arial', sans-serif !important;
}
.intro-progress {
  width: 100%;
  margin-top: 12px;
  margin-bottom: 8px;
  position: relative;
  height: 18px;
}
.intro-bar {
  height: 12px;
  background: linear-gradient(90deg, #39ff14 0%, #6f00ff 100%);
  border-radius: 6px;
  width: 0%;
  transition: width 0.5s;
  border: 2.5px solid #39ff14;
  box-shadow: 0 0 16px #39ff14, 0 0 8px #6f00ff, 0 0 2px #fff, 0 0 0 4px #111 inset;
  position: relative;
  animation: bar-glow 2s linear infinite alternate;
}
@keyframes bar-glow {
  0% { box-shadow: 0 0 16px #39ff14, 0 0 8px #6f00ff, 0 0 2px #fff, 0 0 0 4px #111 inset; }
  100% { box-shadow: 0 0 32px #6f00ff, 0 0 24px #39ff14, 0 0 8px #fff, 0 0 0 6px #111 inset; }
}
.intro-progress-text {
  color: #39ff14;
  font-size: 1rem;
  margin-top: 4px;
  text-align: center;
  font-family: 'Zpix', 'Microsoft YaHei', 'Arial', sans-serif !important;
  letter-spacing: 0.08em;
}
.intro-skip {
  position: absolute;
  top: 12px;
  right: 18px;
  background: #181818;
  color: #39ff14;
  border: 2px solid #39ff14;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Zpix', 'Microsoft YaHei', 'Arial', sans-serif !important;
  padding: 4px 18px;
  cursor: pointer;
  box-shadow: 0 0 8px #39ff14cc;
  transition: background 0.2s, color 0.2s;
  z-index: 10;
}
.intro-skip:hover {
  background: #39ff14;
  color: #111;
}
@media (max-width: 600px) {
  .intro-content { min-width: 0; padding: 18px 4vw 18px 4vw; }
  .intro-typing { font-size: 0.98rem; }
  .intro-skip { font-size: 0.9rem; padding: 2px 10px; }
}
@media (max-width: 600px) {
  .container { padding: 8px 2px 32px 2px; }
  h1 { font-size: 1.5rem; }
  .pfp-gallery { grid-template-columns: repeat(3, 1fr); }
  .carousel-img { width: 100px; height: 100px; }
  .logo-text { font-size: 1.3rem; letter-spacing: 0.12em; }
  #pfp-search { width: 98vw; font-size: 0.95rem; }
  .pfp-section { padding-top: 12px; }
} 
.intro-gif-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
  margin-bottom: 0;
}
.intro-gif {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #39ff14;
  background: #222;
  box-shadow: 0 0 12px #39ff1440;
}
.intro-story-bg {
  color: #e0e0e0;
  font-size: 1.08rem;
  line-height: 1.8;
  white-space: pre-line;
  text-shadow: 0 0 4px #39ff1440;
  background: rgba(20,20,20,0.85);
  border-radius: 12px;
  padding: 18px 12px;
  max-height: 56vh;
  overflow-y: auto;
  margin-top: 0;
  font-family: 'Zpix', 'Microsoft YaHei', 'Arial', sans-serif !important;
  scrollbar-width: none; /* Firefox */
}
.intro-story-bg::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.intro-typing {
  margin-bottom: 30px;
}
.intro-awaken-btn {
  background: #39ff14;
  color: #111;
  border: 2px solid #39ff14;
  border-radius: 12px;
  font-size: 1.2rem;
  font-family: 'Zpix', 'Microsoft YaHei', 'Arial', sans-serif !important;
  padding: 12px 24px;
  cursor: pointer;
  margin-top: 18px;
  box-shadow: 0 0 16px #39ff14cc;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.intro-awaken-btn:hover {
  background: #111;
  color: #39ff14;
  box-shadow: 0 0 24px #39ff14, 0 0 16px #6f00ff;
} 
.main-footer {
  margin-top: 48px;
  padding: 32px 0 24px 0;
  text-align: center;
  background: none;
}
.footer-desc {
  color: #39ff14;
  font-size: 1.08rem;
  font-family: 'Zpix', 'Microsoft YaHei', 'Arial', sans-serif !important;
  margin-bottom: 18px;
  letter-spacing: 0.08em;
  text-shadow: 0 0 8px #39ff14, 0 0 8px #111;
}
.footer-desc-en {
  font-size: 0.92rem;
  color: #39ff14;
  letter-spacing: 0.04em;
  display: inline-block;
  margin-top: 2px;
}
.footer-community-btn {
  background: #39ff14;
  color: #111;
  border: 2px solid #39ff14;
  border-radius: 12px;
  font-size: 1.1rem;
  font-family: 'Zpix', 'Microsoft YaHei', 'Arial', sans-serif !important;
  padding: 10px 32px;
  cursor: pointer;
  box-shadow: 0 0 16px #39ff14cc;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-top: 8px;
}
.footer-community-btn:hover {
  background: #111;
  color: #39ff14;
  box-shadow: 0 0 24px #39ff14, 0 0 16px #6f00ff;
} 
.footer-desc-link {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}
.footer-desc-link:hover .footer-desc,
.footer-desc-link:focus .footer-desc {
  color: #fff;
  text-shadow: 0 0 16px #39ff14, 0 0 8px #6f00ff;
} 
.pfp-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  flex-wrap: nowrap;
  gap: 10px;
}
.pfp-title-row h2 {
  margin: 0;
  font-size: 1.08rem;
  color: #39ff14;
  text-shadow: 0 0 8px #39ff14, 0 0 16px #6f00ff44;
  font-family: 'Zpix', 'Microsoft YaHei', 'Arial', sans-serif !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1 1 auto;
}
.pfp-random-btn {
  flex-shrink: 0;
}
.pfp-random-btn {
  background: #111;
  color: #39ff14;
  border: 2px solid #39ff14;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Zpix', 'Microsoft YaHei', 'Arial', sans-serif !important;
  padding: 6px 18px;
  cursor: pointer;
  box-shadow: 0 0 8px #39ff14cc;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-left: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.pfp-random-btn:hover {
  background: #39ff14;
  color: #111;
  box-shadow: 0 0 16px #39ff14, 0 0 8px #6f00ff;
} 
/* 背景音乐控制按钮 */
.music-control {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99999;
  width: 54px;
  height: 54px;
  background: rgba(20,20,20,0.92);
  border: 2.5px solid #39ff14;
  border-radius: 50%;
  box-shadow: 0 0 16px #39ff14cc, 0 0 8px #6f00ff44;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  animation: music-pop 0.8s cubic-bezier(.4,2,.6,1) both;
}
.music-control:hover {
  background: #39ff14;
  box-shadow: 0 0 32px #39ff14, 0 0 24px #6f00ff;
}
.music-control .music-icon {
  font-size: 2rem;
  color: #39ff14;
  transition: color 0.2s;
}
.music-control.paused .music-icon {
  color: #888;
}
.music-control .music-wave {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 4px;
  vertical-align: middle;
}
.music-control .music-wave span {
  display: inline-block;
  width: 3px;
  height: 100%;
  margin: 0 1px;
  background: #39ff14;
  border-radius: 2px;
  animation: music-wave 1s infinite linear;
}
.music-control .music-wave span:nth-child(2) { animation-delay: 0.2s; }
.music-control .music-wave span:nth-child(3) { animation-delay: 0.4s; }
@keyframes music-wave {
  0%,100% { height: 18px; }
  50% { height: 6px; }
}
@keyframes music-pop {
  0% { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
@media (max-width: 600px) {
  .music-control { right: 10px; bottom: 10px; width: 44px; height: 44px; }
  .music-control .music-icon { font-size: 1.4rem; }
} 