body {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    background-color: #000;
    color: #fff;
    text-align: center;
}
header {
    position: relative;
     height: 100vh; 
    overflow: hidden;
}
@media (max-width: 768px) {
    header {
        height: 33.33vh; /* 移动设备占据 1/3 屏幕 */
    }
}
header video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

@keyframes backgroundAnimation {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}
header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ff0055;
    animation: backgroundAnimation 20s infinite alternate;
}
header h1 {
    font-size: 8em;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8); /* 添加白色外发光效果 */
    animation: textAnimation 3s infinite;
}
header h3 {
    font-size: 8em;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8); /* 添加白色外发光效果 */
    animation: textAnimation 3s infinite;
}
@keyframes textAnimation {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}
header p {
    font-size: 2em;
    margin: 20px 0 0;
}
.logo {
    margin: 20px 0;
    padding: 10px; /* 添加内边距 */
    background-color: rgba(255, 255, 255, 0.8); /* 添加半透明白色背景 */
    border-radius: 10px; /* 圆角效果 */
}
nav {
    background-color: #111;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
nav a {
    color: #fff;
    margin: 5px 10px; /* Adjusted margins for better spacing on small screens */
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s;
}
nav a:hover {
    color: #ff0055;
}
section {
    padding: 50px 20px;
}
.band-member {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
.band-member img {
    border-radius: 50%;
    margin: 0 20px;
    width: 150px;
    height: 150px;
    transition: transform 0.3s;
}
.band-member img:hover {
    transform: scale(1.1);
}
.band-member div {
    max-width: 600px;
    text-align: left; /* 对齐文本 */
}
.band-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.albums-container, .store-container {
    display: flex;
    flex-wrap: wrap; /* 允许多行布局 */
    justify-content: center; /* 在容器内居中对齐 */
}
.album, .store-item {
    width: 250px; /* 调整每个专辑的宽度 */
    margin: 20px; /* 间距调整 */
    text-align: left;
}
.album img, .store-item img {
    width: 100%; /* 图片宽度铺满 */
    height: auto;
    object-fit: cover;
    cursor: pointer;
    border-radius: 50%;
    transition: transform 0.3s;
}
.album img.rotate {
    animation: rotateAnimation 5s linear infinite;
}
@keyframes rotateAnimation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.tour-dates {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}
.tour-date {
    background-color: #111;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
}
.tour-date h3 {
    margin: 0;
    color: #ff0055;
}
.tour-date p {
    margin: 5px 0;
}
footer {
    background-color: #111;
    padding: 20px 0;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer p {
    margin: 0;
}
footer img {
    margin-top: 10px;
    width: 150px;
    height: 150px;
}
.player-container {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    z-index: 1000;
}
audio {
    display: block;
    margin: 0 10px;
}
.control-button {
    background-color: #ff0055;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}
.control-button:hover {
    background-color: #ff3366;
}
.contact-container {
    display: flex;
    justify-content: space-around;
    text-align: left;
}
#contact {
color: #f0f0f0; /* 浅色文字 */
text-align: center;
padding: 40px 20px;
font-family: 'Courier New', Courier, monospace; /* 朋克风格字体 */
}

#contact h2 {
font-size: 36px;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 20px;
color: #fff; 
}

.contact-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-bottom: 20px;
}

.contact-column {
flex: 1;
padding: 20px;
max-width: 300px; /* 设置最大宽度以避免过宽 */
background-color: #1a1a1a; /* 深灰色背景 */
margin: 10px;
border: 2px solid #fff; /* 粉红色边框 */
}

.contact-column h3 {
font-size: 24px;
margin-bottom: 10px;
color: #fff; /* 粉红色标题 */
}

.contact-column p {
font-size: 16px;
margin-bottom: 10px;
}

.qr-code {
width: 100px;
height: 100px;
border: 2px solid #fff; /* 粉红色边框 */
margin-top: 10px;
}

#contact p {
font-size: 14px;
margin-top: 20px;
}

#contact p:last-child {
font-style: italic;
color: #888; /* 灰色文字 */
}
/* 近期活动样式 */
#events {

color: #fff; /* 白色文字 */
padding: 20px;
text-align: center;
}
.event {
margin-bottom: 20px; /* 增加事件间距 */
}
.event-image-container {
width: 100%; /* 容器宽度 */
max-width: 360px; /* 最大宽度限制 */
margin: 10px auto; /* 居中显示 */
height: auto; /* 高度自适应 */
overflow: hidden; /* 避免溢出 */
}
.event img {
width: 100%; /* 图片宽度铺满容器 */
height: auto; /* 高度自适应 */
aspect-ratio: 3 / 4; /* 维持3:4的比例 */
}
.event p {
margin: 5px 0; /* 段落间距 */
}

/* 默认情况下，视频在移动设备上占屏幕的1/3 */
header {
position: relative;
height: 33.33vh; /* 移动设备上占屏幕的1/3 */
overflow: hidden;
}
header canvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: contain; /* 保持比例并适应屏幕 */
z-index: -1;
}

/* 在大屏幕（电脑）上全屏显示视频 */
@media (min-width: 768px) {
header {
height: 100vh; /* 电脑端占据整个屏幕 */
}
header canvas {
object-fit: cover; /* 保持比例并填充画布 */
}
nav a {
font-size: 1em; /* Adjust font size for small screens */
margin: 5px 5px; /* Reduce margin for small screens */
}
}


/* goods部分的布局 */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 自动调整列数，最小300px */
    gap: 20px;
    justify-items: center; /* 保证所有内容水平居中 */
    padding: 20px;
}

.store-row {
    display: flex;
    justify-content: center; /* 内容居中 */
    gap: 40px; /* T恤和吧唧之间的间距 */
    margin-bottom: 40px; /* 每行之间的间距 */
}

.store-item {
    text-align: center;
    border: 2px solid #fff;
    padding: 10px;
    transition: transform 0.3s;
}

/* 去掉图片的圆角，保持直角边框 */
.store-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0; /* 去除圆角 */
}

/* 全部周边图片放大 */
.store-item.overall img {
    width: 100%; /* 图片放大，留白控制 */
    max-width: 1000px; /* 更大限制 */
    margin: 0 auto;
    border: 3px solid #ff0055; /* 添加一个颜色边框让它更突出 */
}
.store-item.overall p {
    font-size: 1.5em; /* 放大文字 */
    font-weight: bold; /* 文字加粗 */
    color: #ff0055; /* 文字颜色更亮，突出显示 */
    text-align: center;
}

/* 吧唧总体图放大 */
.store-item.overall-badge img {
    width: 100%; /* 占据容器宽度 */
    max-width: 600px; /* 最大宽度限制 */
    margin: 0 auto;
}

/* 吧唧单个图片的排版 */
.store-item.badge img {
    width: 100%; /* 使吧唧图片根据容器自适应 */
    max-width: 150px; /* 限制最大宽度，避免在小屏幕时过大 */
    height: auto;
    margin: 0 auto;
    border-radius: 50%; /* 保持吧唧图片的圆形 */
}

/* 响应式：手机端每行一个商品 */
@media (max-width: 768px) {
    .store-row {
        display: flex;
        flex-wrap: wrap; /* 在小屏幕上换行排列 */
        justify-content: center;
    }

    .store-item {
        margin-bottom: 20px; /* 增加各个项目之间的距离 */
    }

    .store-item img {
        width: 80%; /* 保证手机端显示不至于过大 */
    }
}


.store-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* 添加hover效果 */
}
/* 全局居中对齐 */
body, section, .store-row {
    margin: 0 auto;
    text-align: center; /* 确保在移动端也居中 */
}

/* 确保各模块在移动端居中 */
@media (max-width: 768px) {
    section {
        text-align: center;
        padding: 20px 0;
    }

    .store-item {
        margin: 0 auto;
        text-align: center; /* 商品居中 */
    }
}



/* Modal (弹窗) 的基础样式 */
.modal {
    display: none; /* 默认不显示 */
    position: fixed; 
    z-index: 1000; /* 置于顶层 */
    padding-top: 100px; /* 顶部距离 */
    left: 0;
    top: 0;
    width: 100%; /* 覆盖整个屏幕 */
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9); /* 黑色背景并带透明度 */
}

/* 模态框内容 - 图片 */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* 关闭按钮 */
.close {
    position: absolute;
    top: 50px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 让图片在弹出时带有动画效果 */
@keyframes zoom {
    from {transform: scale(0.5);} 
    to {transform: scale(1);}
}

.modal-content {
    animation: zoom 0.6s;
}


/* 全局联系我们的基础样式 */
#contact {
  
    color: #f0f0f0; /* 浅色文字 */
    text-align: center;
    padding: 40px 20px;
    font-family: 'Courier New', Courier, monospace;
}

#contact h2 {
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #fff; 
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

/* 联系方式的列样式 */
.contact-column {
    flex: 1;
    padding: 20px;
    max-width: 300px; /* 保持移动端的最大宽度 */
    background-color: #1a1a1a;
    margin: 10px;
    border: 2px solid #fff;
}

.contact-column h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.contact-column p {
    font-size: 16px;
    margin-bottom: 10px;
}

.qr-code {
    width: 100px;
    height: 100px;
    border: 2px solid #fff;
    margin-top: 10px;
}

#contact p {
    font-size: 14px;
    margin-top: 20px;
}

#contact p:last-child {
    font-style: italic;
    color: #888;
}

/* PC端全宽度显示 */
@media (min-width: 768px) {
    #contact {
        width: 100%; /* 让“联系我们”部分全宽度 */
        max-width: 100vw;
        padding: 40px 0;
    }

    .contact-container {
        display: flex;
        justify-content: space-around; /* 使内容均匀分布在全宽度 */
        max-width: 1200px; /* 设置最大宽度，保证PC端不会太宽 */
        margin: 0 auto;
    }

    .contact-column {
        max-width: none; /* 取消最大宽度限制，使其自适应父容器宽度 */
        flex: 1; /* 让每个列等宽 */
        margin: 10px 20px; /* 适当调整列之间的间距 */
        padding: 30px; /* 增加内边距，让PC端布局更加大气 */
        background-color: #1a1a1a;
    }
}
/* 导航栏基础样式 */
nav {
    background-color: #111;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between; /* 增加左右间距 */
    align-items: center; /* 水平居中对齐 */
    padding: 0 20px; /* 左右内边距 */
}

nav .logo {
    font-size: 1.5em;
    color: #fff;

    font-weight: bold;
    text-transform: uppercase;
}

nav a {
    color: #fff;
    margin: 5px 15px;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s;
}

nav a:hover {
    color: #888; /* 改为灰色，避免太亮眼 */
}

.menu-toggle {
    display: none; /* 默认情况下隐藏 */
    font-size: 1.5em;
    color: #fff;
    cursor: pointer;
}

/* 调整PC端的样式 */
@media (min-width: 768px) {
    nav {
        justify-content: center;
    }

    nav a {
        display: inline; /* PC端保持水平展示 */
        margin: 0 20px; /* 增加一些间距 */
        font-size: 1.1em;
    }

    .menu-toggle {
        display: none; /* PC端隐藏汉堡菜单 */
    }
}

/* 调整移动端的样式 */
@media (max-width: 768px) {
    nav {
        justify-content: space-between;
        position: relative;
    }

    nav a {
        display: block; /* 默认隐藏链接 */
        margin: 10px 0;
        font-size: 1.2em;
    }

    nav a.active {
        display: block; /* 菜单展开时显示链接 */
        text-align: left; /* 左对齐 */
    }

    .menu-toggle {
        display: block; /* 汉堡菜单按钮在移动端显示 */
    }
}

/* 当导航菜单展开时的样式 */
nav.expanded a {
    display: block;
}


/* 优化后的回到顶部按钮样式 */
#backToTop {
    position: fixed;
    bottom: 100px; /* 调整距离底部的位置，避免被挡住 */
    right: 40px; /* 距离右侧 40px */
    z-index: 1000;
    background-color: #111; /* 使用深色背景以适配网站风格 */
    color: #ff0055; /* 将箭头颜色改为红色 */
    border: none;
    border-radius: 50%; /* 圆形按钮 */
    padding: 15px 20px;
    font-size: 32px; /* 调整字体大小以加粗箭头 */
    font-weight: bold; /* 加粗箭头 */
    cursor: pointer;
    display: none; /* 默认隐藏，滚动时显示 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 添加阴影效果 */
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s; /* 添加过渡效果 */
}

/* 鼠标悬停时的效果 */
#backToTop:hover {
    background-color: #333; /* 悬停时背景颜色略微变亮 */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* 悬停时增强阴影效果 */
    transform: scale(1.1); /* 悬停时放大 */
}

/* 移动端按钮样式调整 */
@media (max-width: 768px) {
    #backToTop {
        bottom: 80px; /* 移动端调整按钮位置 */
        right: 20px; /* 更靠右 */
        padding: 12px 16px; /* 调整大小 */
        font-size: 28px; /* 调整字体大小 */
    }
}




/* 默认情况下显示导航项 */
nav a {
    display: block;
    margin: 10px 0;
    font-size: 1.2em;
}

/* 当汉堡菜单点击时，折叠导航栏 */
nav.collapsed a {
    display: none;
}

/* 调整汉堡菜单样式 */
.menu-toggle {
    display: block;
    font-size: 1.5em;
    color: #fff;
    cursor: pointer;
}

/* PC端显示汉堡菜单的调整 */
@media (min-width: 768px) {
    nav a {
        display: inline-block;
        margin: 0 20px;
        font-size: 1.1em;
    }

    .menu-toggle {
        display: none; /* 隐藏汉堡菜单 */
    }
}
/* 调整移动端导航栏的字体和间距 */
@media (max-width: 768px) {
    nav a {
        font-size: 0.9em; /* 减小字体 */
        margin: 5px 10px; /* 减小间距 */
    }
}



/* 看板娘背景 - 设置在字体下面，背景色上面 */
.kanban-background {
    position: fixed;
    bottom: 20px; /* 与页面底部保持 20px 的距离 */
    right: 0px;  /* 靠近页面右侧 */
    width: 400px; /* 默认宽度 */
    height: 600px; /* 默认高度 */
    background-image: url('LX.png'); /* 图片路径 */
    background-size: cover; /* 背景覆盖整个容器 */
    background-repeat: no-repeat; /* 防止背景重复 */
    z-index: -1; /* 确保位于背景色上，但在文本下 */
    pointer-events: none; /* 不干扰页面其他元素的点击 */
}

/* 适配超大屏幕 (大于 2560px) */

/* 适配 2560px 宽度的设备 */
@media (max-width: 2560px) {
    .kanban-background {
        width: 400px;  /* 大屏幕宽度 400px */
        height: 600px; /* 大屏幕高度 600px */
    }
}

/* 适配 1920px 宽度的设备 (1080p 分辨率) */
@media (max-width: 1920px) {
    .kanban-background {
        width: 350px;  /* 1920x1080 屏幕宽度 350px */
        height: 525px; /* 1920x1080 屏幕高度 525px */
    }
}

/* 适配 1600px 宽度的设备 */
@media (max-width: 1600px) {
    .kanban-background {
        width: 300px;  /* 1600px 宽度设备 */
        height: 450px; /* 1600px 高度设备 */
    }
}

/* 适配 1440px 宽度的设备 */
@media (max-width: 1440px) {
    .kanban-background {
        width: 250px;  /* 1440px 宽度设备 */
        height: 375px; /* 1440px 高度设备 */
    }
}

/* 适配 1366px 宽度的设备 */
@media (max-width: 1366px) {
    .kanban-background {
        width: 230px;  /* 1366px 宽度设备 */
        height: 345px; /* 1366px 高度设备 */
    }
}

/* 适配 1280px 宽度的设备 */
@media (max-width: 1280px) {
    .kanban-background {
        width: 220px;  /* 1280px 宽度设备 */
        height: 330px; /* 1280px 高度设备 */
    }
}

/* 适配 1024px 宽度的设备 */
@media (max-width: 1024px) {
    .kanban-background {
        display: none;
        width: 180px;  /* 1024px 宽度设备 */
        height: 270px; /* 1024px 高度设备 */
    }
}

/* 适配 900px 宽度的设备 */
@media (max-width: 900px) {
    .kanban-background {
        display: none;
        width: 160px;  /* 900px 宽度设备 */
        height: 240px; /* 900px 高度设备 */
    }
}

/* 适配 768px 宽度的设备 */
@media (max-width: 768px) {
    .kanban-background {
        display: none;
        width: 150px;  /* 768px 宽度设备 */
        height: 225px; /* 768px 高度设备 */
    }
}

/* 适配 640px 宽度的设备 */
@media (max-width: 640px) {
    .kanban-background {
        display: none;
        width: 120px;  /* 640px 宽度设备 */
        height: 180px; /* 640px 高度设备 */
    }
}

/* 适配 480px 宽度的设备 */
@media (max-width: 480px) {
    .kanban-background {
        display: none;
        width: 100px;  /* 480px 宽度设备 */
        height: 150px; /* 480px 高度设备 */
    }
}
#videoCanvas {
    position: absolute; /* 绝对定位，覆盖 header 区域 */
    top: 0;
    left: 0;
    width: 100%; /* 宽度铺满 */
    height: 100%; /* 高度覆盖 */
    object-fit: cover; /* 保持视频比例并填充 canvas */
    z-index: -1; /* 确保视频在其他内容之下 */
}

header {
    position: relative; /* 确保 header 作为定位父元素 */
    height: 100vh; /* 设置 header 的高度为视窗的高度 */
    overflow: hidden; /* 确保内容不会溢出 */
}
