/* 大屏幕桌面 (2560px - 1921px) */
@media (max-width: 2560px) and (min-width: 1921px) {
    body {
        /* 移动端 fixed 定位修复*/
        transform:none;
        height: 100vh;
        width: 100vw;
    }
    .container {
        width: 95%;
        max-width: 1000px;
    }
    
    .hero-section,
    .media-section,
    .character-showcase {
        width: 100vw;
        height: 100vh;
    }
    #characterGallery {
        display: flex;
        justify-content: flex-start;
        height: 110vh;
        background-color: #212734;
    }
    
    .section-spacer {
        min-width: 1200px;
        height: 150px;
    }
    
    .main-nav__container {
        width: 95%;
        max-width: 1000px;
    }
    
    .hero-section__logo {
        width: 350px;
    }
    
    .hero-section__title {
        /* font-size 现在由 JavaScript 动态设置 */
    }
    
    .hero-section__subtitle {
        font-size: 1.3rem;
    }
    
    .section-header__title {
        font-size: 2.2rem;
    }
    .video-carousel {
        display: flex;
        align-items: center;
        width: 1700px;
        height: 870px;
        gap: 20px;
    }
    .video-carousel__container {
        width: 100%;
        height: 100%;
    }
    
    .video-carousel__item {
        min-width: 1000px;
        min-height: 600px;
        padding: 40px 30px 0 0;
    }
    
    .video-carousel__media {
        width: 100%;
        height: 100%;
    }
    .video-section__video {
        width: 100%;
        height: 100%;
    }
    
    .video-section__video iframe {
        width: 100%;
        height: 100%;
    }
    .video-btn-phone {
        display: none;
    }

    .organization-carousel {
        display: flex;
        align-items: center;
        gap: 20px;
        width: 1700px;
        height: 870px;
    }
    .organization-carousel__container {
        width: 95%;
        height: 100%;
    }
    .organization-activity-card {
        background: linear-gradient(135deg, rgb(189, 131, 255, 0.3) 0%, rgb(0, 0, 0, 1) 100%);
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 1);
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 100%;
        padding: 20px;
    }
    
    .organization-carousel__item {
        min-width: 800px;
        min-height: 700px;
    }
    
    .organization-carousel__image {
        width: 90%;
        height: 75%;
    }
    
    .organization-carousel__content {
        height: 23%;
        width: 90%;
    }
    
    .organization-carousel__content h3 {
        font-size: 2rem;
    }
    
    .organization-carousel__content p {
        font-size: 1.2rem;
    }
    .organization-btn-phone {
        display: none;
    }

    .character-showcase {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: flex-end;
        width: 95%;
        min-height: 1530px;
        padding: 15px;
        background-color: #212734;
    }
    
    .character-showcase__sidebar {
        width: 100%;
        height: 11%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        margin: 0;
        padding: 0;
    }
    .character-showcase__active {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        height: 50%;
        padding: 12px;
        margin: 0;
    }
    
    .character-showcase__item {
        max-width: 12%;
        padding: 4px;
        font-size: 0.7rem;
    }
    
    .character-showcase__item img {
        width: 45px;
        height: 45px;
    }
    
    .character-showcase__pagination {
        width: 10%;
        height: 15%;
        position: relative;
        flex-direction: row;
        right: 0;
        top: 0;
        gap: 12px;
        padding: 0;
        margin-top: 20px;
    }
    
    .character-showcase__page-btn--prev,
    .character-showcase__page-btn--next {
        transform: rotate(0deg);
    }
    
    .character-showcase__page-btn--prev:hover,
    .character-showcase__page-btn--next:hover {
        transform: scale(1.2);
    }
    
    .character-showcase__page-btn img {
        width: 15px;
    }
    
    .character-showcase__page-indicators {
        flex-direction: row;
        gap: 6px;
    }
    
    .character-showcase__page-indicator {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }
    
    .character-showcase__main {
        position: relative;
        width: 100%;
        height: 82%;
        overflow: hidden;
    }
    
    .character-showcase__info {
        position: absolute;
        left: 0;
        top: 0;
        transform: none;
        width: 50%;
        margin: 15px auto;
        text-align: center;
        padding: 15px;
    }
    
    .character-showcase__role {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .character-showcase__description {
        font-size: 0.9rem;
        width: 100%;
    }
    
    .character-showcase__tags {
        margin-bottom: 8px;
        gap: 4px;
    }
    
    .character-showcase__tag {
        font-size: 0.7rem;
        padding: 2px 6px;
    }
    
    .character-showcase__artwork {
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        min-width: auto;
    }
}