.yb-hall-of-fame {
    position: relative;
    max-width: 1696px;
    margin: 0 auto;
    padding-top: 86px;
    padding-left: 106px;
    padding-bottom: 80px;
    background-color: rgb(2 6 11 / 1);
    color: #fff;
    border-radius: 16px;
    margin-top: 80px;
}

.yb-hall-of-fame ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 959px) {
    .yb-hall-of-fame {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .yb-hall-of-fame h2 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 20px;
    }
}

.yb-hall-of-fame__tabs {
    display: flex;
    gap: 20px;
}

.yb-hall-of-fame__bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 941px;
}

.yb-hall-of-fame__bg img {
    width: 100%;
}

@media (max-width: 959px) {
    .yb-hall-of-fame__bg {
        display: none;
    }
}

.yb-hall-of-fame__tabs-container {
    margin-top: 157px;
    position: relative;
    z-index: 1;
}

@media (max-width: 959px) {
    .yb-hall-of-fame__tabs-container {
        margin-top: 0;
    }
}

.yb-hall-of-fame__tab {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    border-width: 1px;
    border-style: solid;
    border-radius: 999px;
    border-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 959px) {
    .yb-hall-of-fame__tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .yb-hall-of-fame__tab {
        font-size: 14px;
        padding: 8px 16px;
        flex-shrink: 0;
    }
}

@media (max-width: 959px) {
    .yb-hall-of-fame__tabs-content {
        margin-top: 24px;
    }

    .yb-hall-of-fame .video-slideshow-list {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .yb-hall-of-fame .video-slideshow-item {
        width: 100%;
    }

    .yb-hall-of-fame .video-slideshow-item-title {
        margin-top: 8px;
        font-size: 12px;
        line-height: 1.3;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }
}

.yb-hall-of-fame__tab.active {
    background-color: #fff;
    color: #000;
}

.yb-hall-of-fame__tabs-content {
    margin-top: 32px;
    min-height: 300px;
}

.yb-hall-of-fame__tab-pane {
    display: none;
}

.yb-hall-of-fame__tab-pane.active {
    display: block;
}

/* 确保所有 slide 的宽度由 Splide 控制 */
.yb-hall-of-fame .splide__slide {
    box-sizing: border-box;
}

.yb-hall-of-fame .video-slideshow-item {
    flex-shrink: 0;
    border-radius: 16px;
    width: 100%;
    height: auto;
}

.yb-hall-of-fame .video-slideshow-item-img-container {
    position: relative;
    display: block;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 1280 / 720;
    background-color: #000;
    width: 100%;
    max-width: 100%;
}

.yb-hall-of-fame .video-slideshow-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 视频标签使用绝对定位，确保不影响容器尺寸 */
.yb-hall-of-fame .video-slideshow-item-img-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.yb-hall-of-fame .video-slideshow-item-button-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    background-color: rgba(2, 6, 11, 0.35);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.yb-hall-of-fame .video-slideshow-item-info {
    display: flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    bottom: 9px;
    right: 9px;
    background-color: rgba(2, 6, 11, 0.35);
    font-size: 10px;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
}

.yb-hall-of-fame .video-slideshow-item-title {
    margin-top: 10px;
    color: #fff;
}

.yb-hall-of-fame .splide__tab-pane {
    position: relative;
}

.yb-hall-of-fame .splide__tab-pane:nth-of-type(3) .splide__arrows {
    display: none;
}

.yb-hall-of-fame .splide__tab-pane .splide__arrows {
    position: absolute;
    display: flex;
    right: 0;
    top: 0;
    margin-top: -70px;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.yb-hall-of-fame .splide__tab-pane .splide__arrow {
    width: 48px;
    height: 48px;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yb-hall-of-fame .splide__tab-pane .splide__arrow--prev svg {
    transform: rotate(180deg);
}

.yb-hall-of-fame .splide__tab-pane .splide__arrow svg {
    color: #fff;
    width: 16px;
}

.yb-hall-of-fame .comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
}

.yb-hall-of-fame .comment-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    overflow: hidden;
}

@media (max-width: 959px) {
    .yb-hall-of-fame .comment-avatar {
        width: 40px;
        height: 40px;
    }
}

.yb-hall-of-fame .comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yb-hall-of-fame .comment-slideshow-item {
    background-color: #fff;
    aspect-ratio: 344 / 222;
    font-size: 12px;
    padding: 12px;
    border-radius: 4px;
    overflow: auto;
    min-width: 343px;
}

.yb-hall-of-fame .comment-slideshow-item-textarea {
    width: 500px;
    aspect-ratio: 560 / 222;
}

@media (max-width: 959px) {
    .yb-hall-of-fame .comment-slideshow-list {
        display: flex !important;
        flex-direction: column;
        gap: 20px;
    }

    .yb-hall-of-fame .comment-slideshow-item {
        aspect-ratio: 320 / 131;
        font-size: 24px;
        padding: 20px;
        min-width: auto;
    }

    .yb-hall-of-fame .comment-slideshow-item-textarea {
        width: 100%;
        overflow: unset;
    }
}

.yb-hall-of-fame .comment-info {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.yb-hall-of-fame .comment-badge {
    background-color: rgb(226 229 233 / 1);
    padding-left: 4px;
    padding-right: 4px;
    color: #000;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.yb-hall-of-fame .comment-badge img,
.yb-hall-of-fame .comment-badge svg {
    width: 12px;
    height: 12px;
}

.yb-hall-of-fame .comment-badge {
    flex-shrink: 0;
}

.yb-hall-of-fame .comment-date {
    color: #676a6d;
}

.yb-hall-of-fame .comment-content {
    color: #02060b;
}

@media (max-width: 959px) {

    .yb-hall-of-fame .comment-badge img,
    .yb-hall-of-fame .comment-badge svg {
        width: 20px;
        height: 20px;
    }

    .yb-hall-of-fame .comment-content {
        width: 100%;
    }
}

.yb-hall-of-fame .comment-content a {
    color: #0060ef;
}

.yb-hall-of-fame .comment-content img {
    width: 100%;
}

.yb-hall-of-fame .comment-content p {
    margin: 0;
}

/* 模态框样式 */
.yb-hall-of-fame__modal {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 0.3);
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.yb-hall-of-fame__modal.hidden {
    display: none;
}

.yb-hall-of-fame .modal-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.yb-hall-of-fame__modal-content-container {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.yb-hall-of-fame .modal-video-item-video-container {
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.yb-hall-of-fame .modal-video-item-video-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.yb-hall-of-fame__modal-content-container .splide {
    padding: 20px;
}

.yb-hall-of-fame__modal .splide__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
    border-radius: 50%;
}

.yb-hall-of-fame__modal .splide__arrow--next {
    right: 40px;
}

.yb-hall-of-fame__modal .splide__arrow--prev {
    left: 40px;
}

.yb-hall-of-fame__modal .splide__arrow--prev svg {
    transform: rotate(180deg);
}

.yb-hall-of-fame__modal .splide__pagination {
    margin-top: 10px;
    gap: 10px;
}

.yb-hall-of-fame__modal .splide__pagination__page {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    outline: 0;
    border: 0;
    opacity: 0.5;
    padding: 0;
}

.yb-hall-of-fame__modal .splide__pagination__page.is-active {
    opacity: 1;
}

.yb-hall-of-fame__modal-close {
    position: absolute;
    top: 40px;
    right: 40px;
    cursor: pointer;
    z-index: 999999;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 0 10px #fff;
}

@media (max-width: 959px) {
    .yb-hall-of-fame__modal-close svg {
        width: 20px;
        height: 20px;
    }
}

.yb-hall-of-fame__modal-close svg {
    width: 30px;
    height: 30px;
}

.yb-hall-of-fame__modal-content-container .splide__video__wrapper {
    display: block !important;
}

/* 加载状态 */
.yb-hall-of-fame__loading {
    text-align: center;
    padding: 2rem;
    color: #fff;
    font-size: 1rem;
}

/* 空状态 */
.yb-hall-of-fame__empty {
    text-align: center;
    padding: 2rem;
    color: #fff;
    font-size: 1rem;
}

/* 占位符 */
.video-slideshow-item-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* 分页样式 */
.yb-hall-of-fame__pagination {
    margin-top: 30px;
    display: none;
}

.yb-hall-of-fame__pagination-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.yb-hall-of-fame__pagination-btn {
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    border: 1px solid #fff;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.yb-hall-of-fame__pagination-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.yb-hall-of-fame__pagination-btn:active {
    transform: scale(0.95);
}

.yb-hall-of-fame__pagination-info {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 959px) {
    .yb-hall-of-fame__pagination {
        margin-top: 20px;
    }

    .yb-hall-of-fame__pagination-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .yb-hall-of-fame__pagination-info {
        font-size: 12px;
    }
}