.story-detail__top--image {
    position: sticky;
    top: 10px;
    display: flex;
    justify-content: center;
}

.story-detail__top--image .book-3d {
    position: relative;
    display: inline-block;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

/* Style cho ảnh */
.story-detail__top--image .book-3d img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 2px;
    position: relative;
    z-index: 2;
}

/* Hiệu ứng book 3D cho mobile */
@media (max-width: 991px) {
    .story-detail__top--image .book-3d {
        width: 70%;
        margin: 0 auto 15px;
        transform: perspective(500px) rotateY(-3deg);
    }
    
    .story-detail__top--image .book-3d img {
        border: 1px solid #2c2c2c;
        border-left: 4px solid #2c2c2c;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    }
}

/* Hiệu ứng book 3D cho desktop */
@media (min-width: 992px) {
    .story-detail__top--image .book-3d {
        transform: perspective(300px) rotateY(-3deg);
        margin: 0;
    }
    
    .story-detail__top--image .book-3d img {
        border: 1px solid #2c2c2c;
        border-left: 5px solid #2c2c2c;
        box-shadow: 3px 0 8px rgba(0, 0, 0, 0.2);
    }
}

/* Hover effect */
.story-detail__top--image .book-3d:hover {
    transform: perspective(300px) rotateY(-6deg);
}

@media (max-width: 991px) {
    .story-detail__top--image .book-3d:hover {
        transform: perspective(500px) rotateY(-6deg);
    }
    
    .story-detail__top--image {
        position: unset;
        top: unset;
    }
}

/* Phần còn lại giữ nguyên */
.story-detail__top--desc {
    max-height: 300px;
    overflow: hidden;
}

.story-detail__top--desc.show-full {
    max-height: none !important;
}

.story-detail__bottom--info {
    font-size: 0.875rem;
}

@media (max-width: 576px) {
    .story-detail__list-chapter--list__item ul {
        margin-bottom: 0;
    }
}

.story-detail .rate-story {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-more {
    position: relative;
}

.info-more a {
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.info-more a span {
    color: #2c2c37;
    margin-right: 13px;
}

.info-more a.active {
    display: flex;
}

.info-more div {
    display: none;
}

.info-more--more {
    scroll-margin-top: 100px;
    position: absolute;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 21.88%, rgba(255, 255, 255, 0.95) 45.31%, #fff 67.71%, #fff 100%);
    width: 100%;
    display: flex;
    justify-content: center;
    height: 50px;
    align-items: center;
    cursor: pointer;
}

.info-more--more.active {
    display: flex;
}