* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #000;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
    padding-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://bee-reg-ab.imagency.cn/e/a0618ca004df6bee9bbef6e4b58df289.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.35;
    z-index: 0;
    filter: brightness(1.1);
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease;
    padding: 0 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #000;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #000;
}

.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.about-text p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-frame {
    position: relative;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.band-photo {
    width: 280px;
    height: 320px;
    border-radius: 15px;
    background-image: url('https://bee-reg-ab.imagency.cn/e/dadbac70261daa1608913eb095cbff05.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.members {
    padding: 0;
    min-height: auto;
    display: block;
}

.member-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

/* 背景层样式 */
.slider-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slider-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: brightness(1.2);
}

.slider-background.active {
    opacity: 0.8;
}

/* 半透明遮罩 */
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    pointer-events: none;
}

/* 内容层样式 */
.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 10;
}

/* 成员slide样式 - 左右布局 */
.member-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 8%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s;
}

.member-slide.active {
    opacity: 1;
    visibility: visible;
}

/* 成员立绘容器 */
.member-avatar-container {
    flex: 0 0 45%;
    max-width: 550px;
    margin-right: 6%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.member-avatar {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.member-avatar:hover {
    transform: scale(1.02);
}

/* 成员内容区域 */
.member-content {
    flex: 1;
    width: 100%;
    max-width: none;
    color: #000;
    text-align: left;
    display: flex;
    justify-content: center;
}

.member-name {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    color: #000;
}

.member-role {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #000;
}

.member-name-wuding,
.member-role-wuding {
    color: #e04444;
}

.member-name-keji,
.member-role-keji {
    color: #f6677a;
}

.member-name-cul8er,
.member-role-cul8er {
    color: #88b2cc;
}

.member-name-matsu,
.member-role-matsu {
    color: #99ed88;
}

.member-name-stella,
.member-role-stella {
    color: #fff307;
}

.member-description {
    font-size: 1.2rem;
    line-height: 2;
    padding: 2.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    width: 95%;
    max-width: none;
    box-sizing: border-box;
}

.member-description .member-name {
    margin-bottom: 0.5rem;
}

.member-description .member-role {
    margin-bottom: 1.5rem;
}

.member-description p {
    margin: 0.8rem 0;
}

.member-description p:first-of-type:not(.member-role) {
    margin-top: 0;
}

.member-description p:last-child {
    margin-bottom: 0;
}

.character-profile {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
    text-align: left;
}

.profile-title {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 18px;
    font-weight: 600;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.profile-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.profile-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 20px 0;
}

.profile-description {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile-description .info-label {
    margin-bottom: 6px;
}

.profile-description p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 20;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
    left: 15px;
}

.slider-btn-next {
    right: 15px;
}

.works {
    padding: 80px 0;
    background: white;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 15px;
}

.works-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.works-placeholder p {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.work-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.work-cover {
    width: 100%;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.work-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-card:hover .work-cover::before {
    opacity: 1;
}

.play-icon {
    font-size: 3rem;
    color: white;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: 1;
}

.work-card:hover .play-icon {
    opacity: 1;
    transform: scale(1);
}

.work-info {
    padding: 15px;
}

.work-info h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 6px;
}

.work-date {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 8px;
}

.work-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

.events {
    padding: 80px 0;
    background: #f5f5f5;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 0 15px;
}

.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.event-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.event-date-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.event-info {
    padding: 20px;
}

.event-info h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.event-info p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.event-location {
    font-size: 0.8rem;
    color: #999;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
    overflow-y: auto;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 20px 0;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.modal-body {
    display: flex;
}

.modal-image-section {
    flex: 0 0 60%;
    position: relative;
    background: #1a1a1a;
}

.modal-image-container {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.modal-image-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal-image-item.active {
    opacity: 1;
}

.modal-prev-btn,
.modal-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-prev-btn:hover,
.modal-next-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.modal-prev-btn {
    left: 15px;
}

.modal-next-btn {
    right: 15px;
}

.modal-image-indicator {
    position: absolute;
    bottom: 50px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.modal-dots-container {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.modal-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.modal-dot.active {
    background: white;
    transform: scale(1.2);
}

.modal-info-section {
    flex: 0 0 40%;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.modal-info-section h2 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
}

.modal-date,
.modal-location {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.staff-modal {
    background: rgba(0, 0, 0, 0.7);
}

.staff-modal-content {
    max-width: 700px;
}

.staff-modal-body {
    display: flex;
}

.staff-modal-photo {
    flex: 0 0 35%;
    height: 350px;
    background-size: auto auto;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
}

.staff-modal-info {
    flex: 1;
    padding: 30px;
}

.staff-modal-info h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.staff-modal-role {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.staff-modal-section {
    margin-bottom: 20px;
}

.staff-modal-section h3 {
    font-size: 1rem;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.staff-modal-section p {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
}

.modal-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-top: 15px;
}

.staff {
    padding: 80px 0;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 0 15px;
    max-width: 800px;
    margin: 0 auto;
}

.staff-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.staff-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.staff-photo {
    width: 100%;
    height: 160px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.staff-info {
    padding: 15px;
}

.staff-info h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 6px;
}

.staff-role {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 8px;
}

.staff-desc {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.6;
}

.follow {
    padding: 80px 0;
    background: #f5f5f5;
}

.follow-content {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px 15px;
}

.follow-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.follow-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.follow-icon {
    font-size: 2rem;
}

.follow-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.footer {
    background: #000;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
    gap: 20px;
}

.footer-logo .logo-text {
    color: white;
    font-size: 1.5rem;
    display: block;
}

.footer-logo p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 5px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: white;
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-container {
        padding: 10px 15px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .hero {
        padding-top: 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .about {
        padding: 60px 0;
    }

    .band-photo {
        width: 240px;
        height: 280px;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .member-slider {
        min-height: auto;
        height: auto;
        padding: 60px 0;
    }

    .slider-backgrounds,
    .slider-track {
        position: relative;
        height: auto;
    }

    .slider-background {
        position: relative;
        height: 400px;
    }

    .slider-overlay {
        position: relative;
        height: 400px;
    }

    .member-slide {
        position: relative;
        flex-direction: column;
        padding: 40px 20px;
        gap: 25px;
        min-height: auto;
        height: auto;
    }

    .member-avatar-container {
        order: -1;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .member-avatar {
        width: 200px;
        max-width: 100%;
    }

    .member-content {
        max-width: 100%;
        text-align: center;
    }

    .member-name {
        font-size: 2rem;
    }

    .member-role {
        font-size: 1.4rem;
    }

    .member-description {
        font-size: 1rem;
        padding: 1.5rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.7);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        margin-top: 1rem;
        width: 90%;
        max-width: none;
        box-sizing: border-box;
    }

    .member-description p {
        margin: 0.6rem 0;
    }

    .member-description p:first-of-type:not(.member-role) {
        margin-top: 0;
    }

    .member-description p:last-child {
        margin-bottom: 0;
    }

    .slider-btn {
        position: relative;
        top: auto;
        transform: none;
        margin: 20px auto;
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }

    .slider-btn-prev,
    .slider-btn-next {
        left: auto;
        right: auto;
        display: inline-block;
        margin: 0 10px;
    }

    .works {
        padding: 60px 0;
    }

    .member-role {
        font-size: 0.9rem;
        padding: 5px 14px;
    }

    .member-description {
        font-size: 0.85rem;
        padding: 12px 18px;
    }

    .slider-btn {
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
    }

    .slider-btn-prev {
        left: 10px;
    }

    .slider-btn-next {
        right: 10px;
    }

    .works {
        padding: 60px 0;
    }

    .works-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
        gap: 15px;
    }

    .events {
        padding: 60px 0;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 15px;
        gap: 15px;
    }

    .modal-content {
        max-width: 90%;
    }

    .modal-body {
        flex-direction: column;
    }

    .modal-image-section {
        flex: 1;
    }

    .modal-image-container {
        height: 250px;
    }

    .modal-info-section {
        flex: 1;
    }

    .staff {
        padding: 60px 0;
    }

    .staff-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .staff-modal-content {
        max-width: 90%;
    }

    .staff-modal-body {
        flex-direction: column;
    }

    .staff-modal-photo {
        height: 200px;
    }

    .follow {
        padding: 60px 0;
    }

    .follow-content {
        flex-direction: column;
        align-items: center;
    }

    .follow-link {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .band-photo {
        width: 200px;
        height: 240px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .member-slide {
        padding: 30px 15px 50px;
        gap: 20px;
    }

    .member-avatar {
        width: 150px;
        height: 190px;
    }

    .member-name {
        font-size: 1.4rem;
    }

    .member-role {
        font-size: 0.85rem;
        padding: 4px 12px;
    }

    .member-description {
        font-size: 0.8rem;
        padding: 10px 15px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .slider-btn-prev {
        left: 8px;
    }

    .slider-btn-next {
        right: 8px;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .modal-image {
        height: 160px;
    }

    .footer {
        padding: 30px 0 15px;
    }

    .footer-logo .logo-text {
        font-size: 1.3rem;
    }

    .footer-links {
        gap: 15px;
    }

    .footer-links a {
        font-size: 0.85rem;
    }
}
