/* 基础样式 */

/* 通用样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Arial, sans-serif;
        }

        /* 背景容器样式 */
        body {
            min-height: 100vh;
            background-image: url('images/ZHBG1.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            
            /* 高级特性：支持现代浏览器 */
            background-blend-mode: multiply; /* 可选的颜色混合效果 */
            background-color: rgba(0,0,0,0.3); /* 叠加半透明遮罩层 */
        }

     
/* 在文档其他部分添加 */
section:not(.header) button,
footer button {
  /* 强制标准按钮尺寸 */
  font-size: inherit !important;
  padding: 0.75rem 1.5rem !important;
  line-height: normal !important;
}

body {
  /* 建立基准字体尺寸 */
  font-size: 16px !important;
}

.header {
  /* 独立字体尺寸系统 */
  font-size: 0.9rem;
  /* 阻止向下继承 */
  font-size: initial !important;
}

/* 将导航栏单位改为绝对单位 */
.header {
  padding: 8px 16px;
  /* 替代0.5rem */
}

.nav-links a {
  margin-left: 24px;
  /* 替代1.5rem */
  font-size: 14px;
  /* 替代0.9rem */
}

/* 优化后的导航栏样式 */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  /* 新增毛玻璃效果 */
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 5%;
  /* 改用百分比边距提升响应式 */
  transition: all 0.3s ease;
  /* 添加过渡动画 */
}

/* 滚动时动态效果 */
.header.scrolled {
  padding: 0.4rem 5%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
  width: 100px;
  transition: transform 0.3s;
  /* 添加logo交互 */
  cursor: pointer;
}

.logo:hover {
  transform: scale(1.05);
  /* 悬停微放大 */
}

.nav-links {
  display: flex;
  gap: 2rem;
  /* 使用gap替代margin控制间距 */
}

.nav-links a {
  position: relative;
  font-size: 0.95rem;
  color: #444;
  font-weight: 500;
  padding: 0.4rem 0;
  transition: color 0.3s;
}

/* 导航链接交互增强 */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #6c5ce7;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: #6c5ce7;
}


/* 新增移动端样式 */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 115px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 115px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    margin: 0.8rem 0;
    font-size: 1.1rem;
    padding: 0.8rem;
    border-radius: 8px;
    transition: background 0.3s;
  }

  .nav-links a:hover {
    background: rgba(108, 92, 231, 0.1);
  }

  .menu-toggle {
    display: block !important;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    z-index: 1001;
  }

  .hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: #333;
    position: relative;
    transition: transform 0.3s;
  }

  .hamburger::before,
  .hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    transition: transform 0.3s;
  }

  .hamburger::before {
    transform: translateY(-8px);
  }

  .hamburger::after {
    transform: translateY(8px);
  }

  .menu-toggle.active .hamburger {
    transform: rotate(45deg);
  }

  .menu-toggle.active .hamburger::before {
    transform: rotate(90deg) translateX(-8px);
  }

  .menu-toggle.active .hamburger::after {
    transform: rotate(90deg) translateX(8px);
  }
  .social-links{
    flex-wrap: wrap;
  }
  .module{
    text-align: center;
  }
  .module .button-container{
    justify-content: center;
  }
  .button-parent{
    text-align: center;
    padding-top: 50px;
  }
  .contact-section input, .contact-section textarea{
    margin: 10px 0;
  }
  .contact-section h2{
    margin-bottom: 30px;
  }
}

.cove-gateway {
    max-width: 480px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: rgba(16, 24, 64, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.cove-title {
    color: #00f3ff;
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 12px rgba(0, 243, 255, 0.4);
}

.cove-form {
    display: grid;
    gap: 1rem;
    position: relative;
}

.cove-input {
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    background: rgba(0, 0, 30, 0.7);
    color: #00f3ff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cove-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #00f3ff,
               0 0 20px rgba(0, 243, 255, 0.3);
}

.cove-submit {
    padding: 14px 24px;
    background: linear-gradient(135deg, #00f3ff 0%, #0066ff 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.cove-submit:hover {
    transform: translateY(-1.5px);
}

.cove-icon {
    margin-right: 8px;
    filter: drop-shadow(0 0 2px #fff);
}

@media (max-width: 480px) {
    .cove-gateway {
        margin: 1rem;
        padding: 1rem;
    }
    
    .cove-title {
        font-size: 1.5rem;
    }
    
    .cove-input {
        padding: 12px 16px;
        font-size: 1rem;
    }
}

.footer-copy{
  color: #fff;
  text-align: center;
}
.footer-copy::before{
  display: none;
}
/* 首页横幅 */

/* 核心样式 */
.hero-slider {
  position: relative;
  height: 80vh;
  margin-top: 70px;
  overflow: hidden;
}

.hero-slides {
  display: flex;
  height: 100%;
}

.hero-slides .hero {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  position: absolute;
}

.hero-slides .hero.active {
  opacity: 1;
  position: relative;
}

.dots {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
}

.dot {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: white;
}


/* 艺人介绍样式优化 */
.artist-profile {
  padding: 6rem 2rem;
  background: linear-gradient(45deg, #0f0f0f, #1a1a1a);
  position: relative;
  overflow: hidden;
}

.profile-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.portrait-wrapper {
  position: relative;
  border-radius: 20px;
  perspective: 1000px;
}

.artist-portrait {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: rotateY(-5deg) rotateX(3deg);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.portrait-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg,
      rgba(106, 225, 255, 0.1) 0%,
      rgba(255, 97, 201, 0.1) 100%);
  border-radius: 15px;
  pointer-events: none;
}

.visualizer {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  height: 60px;
  width: 80%;
}

.bar {
  flex: 1;
  background: #6ae1ff;
  animation: soundwave 1.6s ease-in-out infinite;
  opacity: 0.8;
}

@keyframes soundwave {

  0%,
  100% {
    height: 20%;
  }

  50% {
    height: 90%;
  }
}

.profile-content {
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 3.2rem;
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title span {
  color: #ff61c9;
  position: relative;
}

.section-title.pulse::after {
  content: "✧";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  animation: pulse 2s infinite;
}

.identity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tag {
  background: rgba(255, 255, 255, 0.1);
  color: #6ae1ff;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  border: 1px solid rgba(106, 225, 255, 0.3);
  transition: all 0.3s;
}

.tag:hover {
  background: rgba(106, 225, 255, 0.2);
  transform: translateY(-2px);
}

.artist-bio {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 30px;
}

.artist-bio::before {
  content: "♪";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255, 97, 201, 0.6);
  font-size: 1.8rem;
}

.highlight {
  color: #6ae1ff;
  font-weight: 500;
}

.genre {
  color: #ff61c9;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(255, 97, 201, 0.3);
}

.signature {
  margin-top: 2rem;
  opacity: 0.8;
  max-width: 200px;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .profile-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .artist-portrait {
    max-width: 400px;
    margin: 0 auto;
  }

  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .artist-profile {
    padding: 4rem 1rem;
  }

  .artist-bio {
    font-size: 1rem;
    padding-left: 25px;
  }
}


.artist-photo {
  width: 400px;
  border-radius: 10px;
}

.music-title.cyber {
  font-family: 'Orbitron', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-transform: uppercase;
  margin: 2rem 0;
}

.glitch-text {
  color: #6ae1ff;
  font-size: 1.8rem;
  letter-spacing: 4px;
  position: relative;
  animation: glitch 2s infinite;
}

.hanzi {
  font-family: 'Noto Sans TC', sans-serif;
  color: #ff61c9;
  font-size: 2.8rem;
  margin-top: -0.8rem;
  text-shadow:
    0 0 10px rgba(255, 97, 201, 0.5),
    0 0 20px rgba(255, 97, 201, 0.3);
}

@keyframes glitch {
  0% {
    transform: translate(0);
  }

  20% {
    transform: translate(-2px, 2px);
  }

  40% {
    transform: translate(-2px, -2px);
  }

  60% {
    transform: translate(2px, 2px);
  }

  80% {
    transform: translate(2px, -2px);
  }

  100% {
    transform: translate(0);
  }
}

/* 新增艺术风格变量 */
:root {
  --neon-pink: #ff61c9;
  --holographic-blue: #6ae1ff;
  --glow-effect: 0 0 15px rgba(255, 97, 201, 0.3);
}

/* 卡片容器 */
.song-card {
  background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* 霓虹光效边框 */
.song-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg,
      var(--neon-pink) 20%,
      var(--holographic-blue) 50%,
      var(--neon-pink) 80%);
  z-index: -1;
  border-radius: 18px;
  animation: hologram 4s linear infinite;
}

/* 全息投影动画 */
@keyframes hologram {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(360deg);
  }
}

/* 封面艺术效果 */
.album-cover {
  border-radius: 12px;
  margin-bottom: 1.5rem;
  transform: perspective(800px) rotateX(10deg);
  box-shadow: var(--glow-effect);
  transition: transform 0.4s, box-shadow 0.4s;
}

/* 封面悬浮立体效果 */
.song-card:hover .album-cover {
  transform: perspective(800px) rotateX(0deg) translateZ(20px);
  box-shadow: 0 0 30px rgba(255, 97, 201, 0.6);
}
/*GD EP 介绍专属排版样式*/
.music-description {
  max-width: 600px;          /* 控制段落宽度 */
  line-height: 1.6;          /* 增加行高提升可读性 */
  text-align: justify;       /* 两端对齐 */
  /* margin: 0 auto;            居中显示 */
  padding: 15px;
  font-family: Arial, sans-serif; /* 使用通用字体 */
  font-size: 16px;
  text-rendering: optimizeLegibility; /* 优化字体渲染 */
}
.gold {
  color: #D4AF37; /* 经典金色 */
  font-weight: 600; /* 轻微加粗 */
  text-shadow: 0 0 1px rgba(212,175,55,0.3); /* 柔和光晕 */
}

/* 悬停增强效果 */
.gold:hover {
  text-shadow: 0 0 5px rgba(212,175,55,0.5);
}
/* 文字排版增强 */
h3 {
  font-family: 'Bebas Neue', sans-serif;
  /* 推荐使用科技感字体 */
  font-size: 2.2rem;
  background: linear-gradient(45deg,
      #ff61c9 20%,
      #6ae1ff 50%,
      #ff61c9 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 15px rgba(255, 97, 201, 0.4);
  position: relative;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
  transition: all 0.4s;
}

h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
      transparent 10%,
      #6ae1ff 50%,
      transparent 90%);
  animation: neonLine 3s infinite;
}

@keyframes neonLine {
  0% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.3;
  }
}

/* 风格标签设计 */
p {
  color: #b3b3b3;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 24px;
}

p::before {
  content: '🎵';
  position: absolute;
  left: 0;
  top: -2px;
}

/* 播放按钮艺术升级 */
.play-button {
  background: linear-gradient(135deg,
      var(--neon-pink) 0%,
      var(--holographic-blue) 100%);
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  box-shadow: var(--glow-effect);
}

/* 按钮光波效果 */
.play-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s;
}

.play-button:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

/* 视频容器悬浮特效 */
.video-wrapper {
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 0.4s;
}

.video-wrapper:hover {
  transform: scale(1.02) rotateZ(1deg);
}

/* 响应式调整 */
@media (max-width: 768px) {
  .song-card {
    padding: 1rem;
    margin: 0 10px;
  }

  h3 {
    font-size: 1.4rem;
  }
}

.button-container {
  display: flex;
  gap: 12px;
  /* 按钮间距 */
  margin-top: 15px;
}

.video-play-btn {
  /* 全新样式 */
  background: linear-gradient(135deg, #6B8DD6 0%, #8E37D7 100%);
  color: white;
  padding: 8px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.video-play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(110, 55, 215, 0.3);
}

.bili-video-wrapper {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.bili-video-wrapper iframe {
  width: 100%;
  height: 540px;
}

/* 联系表单 */
/* 联系表单专属容器作用域 */
.contact-section {
  /* 保持原有优化样式 */
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* 精确控制表单元素（不影响其他区域） */
.contact-section input,
.contact-section textarea {
  /* 保持输入框优化样式 */
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: border-color 0.3s;
}

/* 按钮特殊作用域 */
.contact-section .play-button {
  /* 保持按钮优化效果 */
  background: #6c5ce7;
  color: white;
  padding: 1rem 2.5 rem;
  border-radius: 50px;
  transition: transform 0.2s;
}

/* 页脚社交链接保护措施 */
.footer .social-links a {
  /* 通过父容器限定作用域 */
  /* 强制保留原始社交链接样式 */
  color: #666 !important;
  margin: 0 0.8 rem;
  font-size: 14px;
  /* 重置可能被影响的属性 */
  text-decoration: none !important;
  box-shadow: none !important;
}

/* 双重保护机制 */
.footer * {
  /* 禁止继承表单相关样式 */
  background: inherit !important;
  border: none !important;
  border-radius: 0 !important;
  transform: none !important;
}

/* 社交链接 */
.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

.social-links img {
  width: 40px;
  transition: transform 0.3s;
}

.social-links img:hover {
  transform: translateY(-3px);
}

@media screen (max-width:768px) {}