.comment-container {
    width: 100%;
    height: 560px;
    overflow: hidden;
    position: relative;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
    touch-action: none;
}

.comment-container:active {
    cursor: grabbing;
}

.comment-list {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.comment-item {
    background-color: #121212;
    color: #fff;
    padding: 20px;
    margin-bottom: 24px;
    border-radius: 12px;
    display: flex;
    gap: 16px;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #666;
    flex-shrink: 0;
    overflow: hidden;
}

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

.comment-content {
    flex: 1;
}

.comment-rating {
    color: #ffd700;
    margin-bottom: 8px;
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 13px;
    color: #ccc;
}

.comment-text {
    font-size: 14px;
    line-height: 1.6;
}

.comment-mask {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, #000, transparent);
    pointer-events: none;
    z-index: 10;
}